jekyll-theme-noesya 1.0.4 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_sass/commons/icon.sass +7 -27
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70358ce650e075bb0c4afe695d5b4ce0aa644cd3c9a678bebd9e33897a0d9f95
|
4
|
+
data.tar.gz: 41b58e2f8069384d13ed07c507e4aa280c46210ea2dcdb1d5e28d57152602372
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ef5c804912f86abbc094f25a7740881894985f9b3be16fd4bd2a7031396810f4396a69da62799771e7001d505ba8b7417f856384d4854b1f660bb88efcc3e71
|
7
|
+
data.tar.gz: be464d32a3d140773ef28a73aef9f1114625cba0d0af8796e50bec547837fc94b68ce1d4cf45779a6bb6e1264bf12302c9da07c695c0ba7346151a831b3d8605
|
data/_sass/commons/icon.sass
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
$theme-colors: ("link-blank": "\e900", "link": "\e901", "download": "\e902", "download": "\e902", "document": "\e903", "ecologique-thin": "\e905", "economique-thin": "\e907", "ethique-thin": "\e908", "juridique-thin": "\e906", "strategique-thin": "\e904", "ecologique": "\e909", "economique": "\e90a", "ethique": "\e90b", "juridique": "\e90c", "strategique": "\e90d")
|
2
|
+
|
1
3
|
@mixin icon
|
2
4
|
-moz-osx-font-smoothing: grayscale
|
3
5
|
-webkit-font-smoothing: antialiased
|
@@ -10,32 +12,10 @@
|
|
10
12
|
speak: never
|
11
13
|
text-transform: none
|
12
14
|
|
15
|
+
@each $icon in $icons
|
16
|
+
.icon--#{$icon}
|
17
|
+
&::before
|
18
|
+
content: #{$icon}
|
19
|
+
|
13
20
|
.icon::before
|
14
21
|
@include icon
|
15
|
-
|
16
|
-
.icon-link-blank::before
|
17
|
-
content: "\e900"
|
18
|
-
|
19
|
-
.icon-link::before
|
20
|
-
content: "\e901"
|
21
|
-
|
22
|
-
.icon-download::before
|
23
|
-
content: "\e902"
|
24
|
-
|
25
|
-
.icon-document::before
|
26
|
-
content: "\e903"
|
27
|
-
|
28
|
-
.icon-strategique::before
|
29
|
-
content: "\e904"
|
30
|
-
|
31
|
-
.icon-ecologique::before
|
32
|
-
content: "\e905"
|
33
|
-
|
34
|
-
.icon-juridique::before
|
35
|
-
content: "\e906"
|
36
|
-
|
37
|
-
.icon-economique::before
|
38
|
-
content: "\e907"
|
39
|
-
|
40
|
-
.icon-ethique::before
|
41
|
-
content: "\e908"
|