-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicons.scss
83 lines (80 loc) · 1.95 KB
/
icons.scss
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
$icons: (
"logo": "\e900",
"sign": "\e901",
"logo-sign": "\e902",
"arrow-up": "\2bc5",
"arrow-down": "\2bc6",
"arrow-left": "\2bc7",
"arrow-right": "\2bc8",
"zoom-in": "\e904",
"zoom-out": "\e905",
"search": "\1f50e",
"heart": "\1f499",
"star": "\2b50",
"cloud": "\2601",
"printer": "\1f5a8",
"laptop": "\e914",
"screen": "\e90e",
"phone": "\e90f",
"tablet-landscape": "\e913",
"tablet": "\e912",
"phone-portrait": "\e910",
"phone-landscape": "\e911",
"vcard": "\e915",
"home": "\1f3e0",
"facebook": "\e920",
"instagram": "\e921",
"linkedin": "\e922",
"twitter": "\e923",
"github": "\e924",
"whatsapp": "\e925",
"telegram": "\e926",
"imdb": "\e927",
"user": "\1f464",
"users": "\1f465",
"folder": "\1f4c1",
"tag": "\1f516",
"marker": "\1f4cd",
"bookmark": "\1f4d1",
"paperclip": "\1f4ce",
"envelope": "\1f4e7",
"clock": "\1f551",
"file": "\e930",
"file-text": "\e931",
"file-picture": "\e932",
"file-music": "\e933",
"file-play": "\e934",
"file-video": "\e935",
"file-zip": "\e936",
"file-pdf": "\e937",
"file-word": "\e938",
"file-excel": "\e939",
);
@each $name, $glyph in $icons {
.icon-pittica-#{$name}:before {
font-family: "pittica";
content: $glyph;
}
}
@font-face {
font-family: "pittica";
src: url("~@pittica/icons/fonts/pittica.eot");
src: url("~@pittica/icons/fonts/pittica.eot#iefix") format("embedded-opentype"),
url("~@pittica/icons/fonts/pittica.ttf") format("truetype"),
url("~@pittica/icons/fonts/pittica.woff") format("woff"),
url("~@pittica/icons/fonts/pittica.svg#pittica") format("svg");
font-weight: normal;
font-style: normal;
font-display: swap;
}
[class^="icon-pittica-"],
[class*=" icon-pittica-"] {
font-family: "pittica" !important;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}