1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| @font-face {
| font-family: 'slate';
| src:font-url('slate.eot?-syv14m');
| src:font-url('slate.eot?#iefix-syv14m') format('embedded-opentype'),
| font-url('slate.woff2?-syv14m') format('woff2'),
| font-url('slate.woff?-syv14m') format('woff'),
| font-url('slate.ttf?-syv14m') format('truetype'),
| font-url('slate.svg?-syv14m#slate') format('svg');
| font-weight: normal;
| font-style: normal;
| }
|
| %icon {
| font-family: 'slate';
| speak: none;
| font-style: normal;
| font-weight: normal;
| font-variant: normal;
| text-transform: none;
| line-height: 1;
| }
|
| %icon-exclamation-sign {
| @extend %icon;
| content: "\e600";
| }
| %icon-info-sign {
| @extend %icon;
| content: "\e602";
| }
| %icon-ok-sign {
| @extend %icon;
| content: "\e606";
| }
| %icon-search {
| @extend %icon;
| content: "\e607";
| }
|
|