jekyll-theme-noesya 1.0.3 → 1.0.7
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 +8 -29
- data/_sass/main.sass +1 -0
- 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: 4bba107870a975179f0bf2f5e11a9e383456686424bdd2beead5b05226d348aa
|
4
|
+
data.tar.gz: e21a2ad13e13eeca5e1106a8e0c159780c83f0a20b4437ccccd5a3ff5ab95923
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bf51a77bca8c106d4c8318b3a80b19f990700011b6922860a353bce8270c4d81294ad1d754c2053777cc5c36cde0ca70c4dcee4ef52c38cbd9023afc3400fd8
|
7
|
+
data.tar.gz: d4536e37ca9b0009601431374d911aa8d2299be7624b74704ccc961f9f4ab69f1c2e5dba2fc397f058ec71f7a177cf9608a45a5f472dcea3ca23e7becd644efe
|
data/_sass/commons/icon.sass
CHANGED
@@ -1,6 +1,9 @@
|
|
1
|
+
$icons: ("link-blank": "\e900", "link": "\e901", "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
|
6
|
+
content: ''
|
4
7
|
display: inline-block
|
5
8
|
font-family: 'icons' !important
|
6
9
|
font-style: normal
|
@@ -10,32 +13,8 @@
|
|
10
13
|
speak: never
|
11
14
|
text-transform: none
|
12
15
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
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"
|
16
|
+
@each $name, $glyph in $icons
|
17
|
+
.icon--#{$name}
|
18
|
+
&::before
|
19
|
+
@include icon
|
20
|
+
content: $glyph
|
data/_sass/main.sass
CHANGED