blob: 448491fae42bdb362eed613a7bd60632368d231b (
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# FontAwesome Main
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fa {
font: normal normal normal 14px/1 "FontAwesome";
font-size: inherit;
speak: none;
display: inline-block;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# FontAwesome Icons
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fa-bug:before {
content: "\f188";
}
.fa-key:before {
content: "\f084";
}
.fa-link:before {
content: "\f0c1";
}
.fa-bold:before {
content: "\f032";
}
.fa-code:before {
content: "\f121";
}
.fa-user:before {
content: "\f007";
}
.fa-book:before {
content: "\f02d";
}
.fa-italic:before {
content: "\f033";
}
.fa-header:before {
content: "\f1dc";
}
.fa-search:before {
content: "\f002";
}
.fa-trash-o:before {
content: "\f014";
}
.fa-sign-in:before {
content: "\f090";
}
.fa-clock-o:before {
content: "\f017";
}
.fa-list-ul:before {
content: "\f0ca";
}
.fa-list-ol:before {
content: "\f0cb";
}
.fa-database:before {
content: "\f1c0";
}
.fa-language:before {
content: "\f1ab";
}
.fa-sign-out:before {
content: "\f08b";
}
.fa-dashboard:before {
content: "\f0e4";
}
.fa-picture-o:before {
content: "\f03e";
}
.fa-envelope-o:before {
content: "\f003";
}
.fa-arrow-left:before {
content: "\f060";
}
.fa-quote-right:before {
content: "\f10e";
}
.fa-user-secret:before {
content: "\f21b";
}
.fa-file-text-o:before {
content: "\f0f6";
}
.fa-newspaper-o:before {
content: "\f1ea";
}
.fa-arrow-right:before {
content: "\f061";
}
.fa-external-link:before {
content: "\f08e";
}
.fa-github-square:before {
content: "\f092";
}
.fa-pencil-square-o:before {
content: "\f044";
}
.fa-exclamation-triangle:before {
content: "\f071";
}
|