-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (75 loc) · 1.79 KB
/
style.css
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
@font-face {
font-family: 'Gobblicons';
src:url('fonts/Gobblicons.eot');
src:url('fonts/Gobblicons.eot?#iefix') format('embedded-opentype'),
url('fonts/Gobblicons.woff') format('woff'),
url('fonts/Gobblicons.ttf') format('truetype'),
url('fonts/Gobblicons.svg#Gobblicons') format('svg');
font-weight: normal;
font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
font-family: 'Gobblicons';
content: attr(data-icon);
speak: none;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
}
/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"]:before {
*/
.icon-share:before, .icon-add-circle:before, .icon-search:before, .icon-edit:before, .icon-download:before, .icon-trash:before, .icon-file-next:before, .icon-file-add:before, .icon-file:before, .icon-add:before, .icon-right:before, .icon-left:before, .icon-down:before, .icon-close:before {
font-family: 'Gobblicons';
speak: none;
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
}
.icon-share:before {
content: "\e000";
}
.icon-add-circle:before {
content: "\e001";
}
.icon-search:before {
content: "\e002";
}
.icon-edit:before {
content: "\e003";
}
.icon-download:before {
content: "\e004";
}
.icon-trash:before {
content: "\e005";
}
.icon-file-next:before {
content: "\e006";
}
.icon-file-add:before {
content: "\e007";
}
.icon-file:before {
content: "\e008";
}
.icon-add:before {
content: "\e009";
}
.icon-right:before {
content: "\e00a";
}
.icon-left:before {
content: "\e00b";
}
.icon-down:before {
content: "\e00c";
}
.icon-close:before {
content: "\e00d";
}