@ghs-hazard-pictograms/css 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -1
- package/sprite.css +21 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ghs-hazard-pictograms/css",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "CSS background-image sprite for GHS hazard and ADR/UN transport pictograms — class-based display, no JavaScript required",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adr",
|
|
@@ -34,6 +34,10 @@
|
|
|
34
34
|
"url": "https://github.com/karlnorling/ghs-hazard-pictograms/issues"
|
|
35
35
|
},
|
|
36
36
|
"license": "MIT",
|
|
37
|
+
"author": {
|
|
38
|
+
"name": "Karl Norling",
|
|
39
|
+
"url": "https://github.com/karlnorling"
|
|
40
|
+
},
|
|
37
41
|
"repository": {
|
|
38
42
|
"type": "git",
|
|
39
43
|
"url": "https://github.com/karlnorling/ghs-hazard-pictograms",
|
package/sprite.css
CHANGED
|
@@ -72,6 +72,27 @@
|
|
|
72
72
|
background-size: contain;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
+
.ghs-adr-4-3 {
|
|
76
|
+
background-image: url('../assets/assets/transport_pictograms/classes_3_and_4__flammable_liquids_and_solids/ADR_4.3.svg');
|
|
77
|
+
background-position: center;
|
|
78
|
+
background-repeat: no-repeat;
|
|
79
|
+
background-size: contain;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.ghs-adr-4-2 {
|
|
83
|
+
background-image: url('../assets/assets/transport_pictograms/classes_3_and_4__flammable_liquids_and_solids/ADR_4.2.svg');
|
|
84
|
+
background-position: center;
|
|
85
|
+
background-repeat: no-repeat;
|
|
86
|
+
background-size: contain;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.ghs-adr-4-1 {
|
|
90
|
+
background-image: url('../assets/assets/transport_pictograms/classes_3_and_4__flammable_liquids_and_solids/ADR_4.1.svg');
|
|
91
|
+
background-position: center;
|
|
92
|
+
background-repeat: no-repeat;
|
|
93
|
+
background-size: contain;
|
|
94
|
+
}
|
|
95
|
+
|
|
75
96
|
.ghs-adr-3 {
|
|
76
97
|
background-image: url('../assets/assets/transport_pictograms/classes_3_and_4__flammable_liquids_and_solids/ADR_3.svg');
|
|
77
98
|
background-position: center;
|