This repository has been archived by the owner on Aug 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
106 lines (97 loc) · 1.8 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
@font-face {
font-family: 'icomoon';
src:url('fonts/icomoon.eot');
src:url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),
url('fonts/icomoon.woff') format('woff'),
url('fonts/icomoon.ttf') format('truetype'),
url('fonts/icomoon.svg#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
.icon {
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
position: relative;
display: block;
background-repeat: no-repeat;
-webkit-font-smoothing: antialiased;
height: 16px;
width: 16px;
font: 0 W;
}
.supports-fontface .icon:before {
font-family: 'icomoon';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
font-size: 16px;
speak: none;
}
/* PNG fallbacks*/
.icon-menu {
background-image: url("images/menu.png");
}
.supports-fontface .icon-menu {
background-image: none;
}
.icon-menu:before {
content: "\61";
}
.icon-cog {
background-image: url("images/cog.png");
}
.supports-fontface .icon-cog {
background-image: none;
}
.icon-cog:before {
content: "\62";
}
.icon-close {
background-image: url("images/close.png");
}
.supports-fontface .icon-close {
background: none;
}
.icon-close:before {
content: "\63";
}
.icon-expand {
background-image: url("images/expand.png");
}
.supports-fontface .icon-expand {
background-image: none;
}
.icon-expand:before {
content: "\64";
}
.icon-contract {
background-image: url("images/contract.png");
}
.supports-fontface .icon-contract {
background-image: none;
}
.icon-contract:before {
content: "\65";
}
.icon-user {
background-image: url("images/user.png");
}
.supports-fontface .icon-user {
background-image: none;
}
.icon-user:before {
content: "\66";
}
/* Text fallbacks*/
.fallback-txt {
font: 0 W;
background-image: none;
}
.fallback-txt:before {
font-size: 16px;
}