blob: 03efae6e9f54c5836519ec78327b725bbd79fd0d (
plain)
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
106
107
108
109
110
|
// ==============================
// Iconfont
// ==============================
@font-face {
font-family: 'iconfont'; /* project id 96542 */
src: url('../fonts/iconfont/iconfont.eot');
src: url('../fonts/iconfont/iconfont.eot#iefix') format('embedded-opentype'), // not '?#iefix', because webpack will add '?hash=[hash]'
url('../fonts/iconfont/iconfont.woff') format('woff'),
url('../fonts/iconfont/iconfont.ttf') format('truetype'),
url('../fonts/iconfont/iconfont.svg#iconfont') format('svg');
// Uncomment these code and comment upper code if you want to use alicdn
// src: url('//at.alicdn.com/t/font_96542_ixz9jngnf1sb57b9.eot');
// src: url('//at.alicdn.com/t/font_96542_ixz9jngnf1sb57b9.eot?#iefix') format('embedded-opentype'),
// url('//at.alicdn.com/t/font_96542_ixz9jngnf1sb57b9.woff') format('woff'),
// url('//at.alicdn.com/t/font_96542_ixz9jngnf1sb57b9.ttf') format('truetype'),
// url('//at.alicdn.com/t/font_96542_ixz9jngnf1sb57b9.svg#iconfont') format('svg');
}
.iconfont {
font-family: "iconfont" !important;
font-style: normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.2px;
-moz-osx-font-smoothing: grayscale;
cursor: pointer;
}
.icon-instagram:before {
font-size: .95em;
content: "\e611";
position: relative;
top: -1px;
}
.icon-douban:before {
content: "\e610";
}
.icon-tumblr:before {
content: "\e69f";
font-size: .85em;
position: relative;
top: -4px;
}
.icon-linkedin:before {
content: "\e60d";
position: relative;
top: -4px;
}
.icon-twitter:before {
content: "\e600";
}
.icon-weibo:before {
content: "\e602";
}
.icon-stack-overflow:before {
content: "\e603";
font-size: .85em;
position: relative;
top: -4px;
}
.icon-email:before {
content: "\e605";
position: relative;
top: -2px;
}
.icon-facebook:before {
content: "\e601";
font-size: .95em;
position: relative;
top: -2px;
}
.icon-github:before {
content: "\e606";
position: relative;
top: -3px;
}
.icon-rss:before {
content: "\e604";
}
.icon-google:before {
content: "\e609";
}
.icon-zhihu:before {
content: "\e607";
font-size: .9em;
position: relative;
top: -2px;
}
.icon-pocket:before {
content: "\e856";
}
/* Generic Icon */
.icon-heart:before {
content: "\e608";
}
.icon-right:before {
content: "\e60a";
}
.icon-left:before {
content: "\e60b";
}
.icon-up:before {
content: "\e60c";
}
.icon-close:before {
content: "\e60f";
}
|