semantic-ui-sass 0.19.3.1 → 1.7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -0
- data/README.md +5 -6
- data/app/assets/fonts/semantic-ui/icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/icons.otf +0 -0
- data/app/assets/fonts/semantic-ui/icons.svg +472 -367
- data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff +0 -0
- data/app/assets/images/semantic-ui/flags.png +0 -0
- data/app/assets/javascripts/semantic-ui.js +9 -5
- data/app/assets/javascripts/semantic-ui/accordion.js +169 -102
- data/app/assets/javascripts/semantic-ui/api.js +840 -0
- data/app/assets/javascripts/semantic-ui/checkbox.js +203 -46
- data/app/assets/javascripts/semantic-ui/{behavior/colorize.js → colorize.js} +4 -2
- data/app/assets/javascripts/semantic-ui/dimmer.js +110 -76
- data/app/assets/javascripts/semantic-ui/dropdown.js +897 -285
- data/app/assets/javascripts/semantic-ui/{behavior/form.js → form.js} +127 -42
- data/app/assets/javascripts/semantic-ui/modal.js +294 -219
- data/app/assets/javascripts/semantic-ui/nag.js +120 -186
- data/app/assets/javascripts/semantic-ui/popup.js +491 -223
- data/app/assets/javascripts/semantic-ui/progress.js +779 -0
- data/app/assets/javascripts/semantic-ui/rating.js +66 -22
- data/app/assets/javascripts/semantic-ui/search.js +219 -99
- data/app/assets/javascripts/semantic-ui/shape.js +72 -29
- data/app/assets/javascripts/semantic-ui/sidebar.js +678 -142
- data/app/assets/javascripts/semantic-ui/site.js +487 -0
- data/app/assets/javascripts/semantic-ui/{behavior/state.js → state.js} +116 -151
- data/app/assets/javascripts/semantic-ui/sticky.js +771 -0
- data/app/assets/javascripts/semantic-ui/tab.js +680 -603
- data/app/assets/javascripts/semantic-ui/transition.js +269 -158
- data/app/assets/javascripts/semantic-ui/video.js +113 -32
- data/app/assets/javascripts/semantic-ui/visibility.js +970 -0
- data/app/assets/javascripts/semantic-ui/visit.js +513 -0
- data/app/assets/stylesheets/semantic-ui.scss +2 -0
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +58 -14
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +464 -372
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +1385 -533
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +482 -655
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +238 -139
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +631 -280
- data/app/assets/stylesheets/semantic-ui/elements/_all.scss +3 -2
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1614 -657
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +143 -80
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1018 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +302 -145
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1653 -1365
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +160 -59
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +247 -118
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +501 -470
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +888 -0
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +189 -98
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +125 -0
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +147 -212
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +328 -190
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +261 -185
- data/app/assets/stylesheets/semantic-ui/globals/_all.scss +2 -0
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +430 -0
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +128 -0
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +190 -106
- data/app/assets/stylesheets/semantic-ui/modules/_all.scss +2 -1
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +303 -201
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +72 -63
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +711 -331
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +262 -140
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +82 -71
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +163 -119
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +435 -0
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +163 -68
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +223 -150
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +39 -40
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +413 -147
- data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +80 -0
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +49 -20
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +542 -568
- data/app/assets/stylesheets/semantic-ui/modules/_video.scss +69 -37
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +265 -0
- data/app/assets/stylesheets/semantic-ui/views/_all.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +758 -0
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +133 -92
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +200 -87
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +298 -523
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +390 -12
- data/lib/semantic/ui/sass/version.rb +2 -2
- data/tasks/converter.rb +99 -216
- metadata +22 -27
- data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/basic.icons.svg +0 -450
- data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
- data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-large.gif +0 -0
- data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
- data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
- data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-small.gif +0 -0
- data/app/assets/javascripts/semantic-ui/behavior/api.js +0 -634
- data/app/assets/javascripts/semantic-ui/chatroom.js +0 -772
- data/app/assets/stylesheets/semantic-ui/depends/_basic.icon.scss +0 -4
- data/app/assets/stylesheets/semantic-ui/depends/_icon.scss +0 -4
- data/app/assets/stylesheets/semantic-ui/depends/_loader.scss +0 -8
- data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +0 -1124
- data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +0 -280
- data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +0 -299
- data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +0 -322
- data/app/assets/stylesheets/semantic-ui/views/_list.scss +0 -700
@@ -1,8 +1,7 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
*
|
4
|
-
* http://
|
5
|
-
*
|
1
|
+
/*
|
2
|
+
* # Semantic UI
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
6
5
|
*
|
7
6
|
* Copyright 2014 Contributors
|
8
7
|
* Released under the MIT license
|
@@ -10,18 +9,7 @@
|
|
10
9
|
*
|
11
10
|
*/
|
12
11
|
|
13
|
-
|
14
|
-
* Font Awesome 3.2.1
|
15
|
-
* the iconic font designed for Bootstrap
|
16
|
-
* ------------------------------------------------------------------------------
|
17
|
-
* The full suite of pictographic icons, examples, and documentation can be
|
18
|
-
* found at http://fon.io. Stay up to date on Twitter at
|
19
|
-
* http://twitter.com/fon.
|
20
|
-
*
|
21
|
-
* License
|
22
|
-
* ------------------------------------------------------------------------------
|
23
|
-
* - The Font Awesome font is licensed under SIL OFL 1.1 -
|
24
|
-
* http://scripts.sil.org/OFL
|
12
|
+
|
25
13
|
|
26
14
|
/*******************************
|
27
15
|
Icon
|
@@ -29,24 +17,20 @@
|
|
29
17
|
|
30
18
|
@font-face {
|
31
19
|
font-family: 'Icons';
|
32
|
-
src:
|
33
|
-
src:
|
34
|
-
asset-url("semantic-ui/icons.svg#icons") format('svg'),
|
35
|
-
asset-url("semantic-ui/icons.woff") format('woff'),
|
36
|
-
asset-url("semantic-ui/icons.ttf") format('truetype');
|
20
|
+
src: font-url("semantic-ui/icons.eot");
|
21
|
+
src: font-url("semantic-ui/icons.eot?#iefix") format('embedded-opentype'), font-url("semantic-ui/icons.svg#icons") format('svg'), font-url("semantic-ui/icons.woff") format('woff'), font-url("semantic-ui/icons.ttf") format('truetype');
|
37
22
|
font-style: normal;
|
38
23
|
font-weight: normal;
|
39
24
|
font-variant: normal;
|
40
25
|
text-decoration: inherit;
|
41
26
|
text-transform: none;
|
42
27
|
}
|
43
|
-
|
44
28
|
i.icon {
|
45
29
|
display: inline-block;
|
46
|
-
opacity:
|
47
|
-
margin: 0em 0.
|
30
|
+
opacity: 1;
|
31
|
+
margin: 0em 0.25rem 0em 0em;
|
48
32
|
width: 1.23em;
|
49
|
-
height:
|
33
|
+
height: 0.9em;
|
50
34
|
font-family: 'Icons';
|
51
35
|
font-style: normal;
|
52
36
|
line-height: 1;
|
@@ -54,1784 +38,2088 @@ i.icon {
|
|
54
38
|
text-decoration: inherit;
|
55
39
|
text-align: center;
|
56
40
|
speak: none;
|
57
|
-
-
|
58
|
-
-moz-
|
59
|
-
-
|
60
|
-
|
41
|
+
font-smoothing: antialiased;
|
42
|
+
-moz-osx-font-smoothing: grayscale;
|
43
|
+
-webkit-backface-visibility: hidden;
|
44
|
+
backface-visibility: hidden;
|
61
45
|
}
|
62
|
-
|
63
|
-
|
64
|
-
content: "\f060";
|
46
|
+
i.icon:before {
|
47
|
+
background: none !important;
|
65
48
|
}
|
66
49
|
|
67
|
-
i.icon.right:before {
|
68
|
-
content: "\f061";
|
69
|
-
}
|
70
50
|
|
71
|
-
|
72
|
-
|
73
|
-
|
51
|
+
/*******************************
|
52
|
+
Types
|
53
|
+
*******************************/
|
74
54
|
|
75
|
-
i.icon.add.sign:before {
|
76
|
-
content: "\f055";
|
77
|
-
}
|
78
55
|
|
79
|
-
|
80
|
-
|
81
|
-
|
56
|
+
/*--------------
|
57
|
+
Loading
|
58
|
+
---------------*/
|
82
59
|
|
83
|
-
i.icon.
|
84
|
-
|
60
|
+
i.icon.loading {
|
61
|
+
height: 1em;
|
62
|
+
-webkit-animation: icon-loading 2s linear infinite;
|
63
|
+
animation: icon-loading 2s linear infinite;
|
85
64
|
}
|
86
|
-
|
87
|
-
|
88
|
-
|
65
|
+
@-webkit-keyframes icon-loading {
|
66
|
+
from {
|
67
|
+
-webkit-transform: rotate(0deg);
|
68
|
+
transform: rotate(0deg);
|
69
|
+
}
|
70
|
+
to {
|
71
|
+
-webkit-transform: rotate(360deg);
|
72
|
+
transform: rotate(360deg);
|
73
|
+
}
|
89
74
|
}
|
90
|
-
|
91
|
-
|
92
|
-
|
75
|
+
@keyframes icon-loading {
|
76
|
+
from {
|
77
|
+
-webkit-transform: rotate(0deg);
|
78
|
+
transform: rotate(0deg);
|
79
|
+
}
|
80
|
+
to {
|
81
|
+
-webkit-transform: rotate(360deg);
|
82
|
+
transform: rotate(360deg);
|
83
|
+
}
|
93
84
|
}
|
94
85
|
|
95
|
-
i.icon.align.justify:before {
|
96
|
-
content: "\f039";
|
97
|
-
}
|
98
86
|
|
99
|
-
|
100
|
-
|
101
|
-
|
87
|
+
/*******************************
|
88
|
+
States
|
89
|
+
*******************************/
|
102
90
|
|
103
|
-
i.icon.
|
104
|
-
|
91
|
+
i.icon.hover {
|
92
|
+
opacity: 1;
|
105
93
|
}
|
106
|
-
|
107
|
-
|
108
|
-
content: "\f0f9";
|
94
|
+
i.icon.active {
|
95
|
+
opacity: 1;
|
109
96
|
}
|
110
|
-
|
111
|
-
|
112
|
-
content: "\f13d";
|
97
|
+
i.emphasized.icon {
|
98
|
+
opacity: 1;
|
113
99
|
}
|
114
|
-
|
115
|
-
|
116
|
-
|
100
|
+
i.disabled.icon {
|
101
|
+
pointer-events: none;
|
102
|
+
opacity: 0.3 !important;
|
117
103
|
}
|
118
104
|
|
119
|
-
i.icon.angle.down:before {
|
120
|
-
content: "\f107";
|
121
|
-
}
|
122
105
|
|
123
|
-
|
124
|
-
|
125
|
-
|
106
|
+
/*******************************
|
107
|
+
Variations
|
108
|
+
*******************************/
|
126
109
|
|
127
|
-
i.icon.angle.right:before {
|
128
|
-
content: "\f105";
|
129
|
-
}
|
130
110
|
|
131
|
-
|
132
|
-
|
133
|
-
|
111
|
+
/*-------------------
|
112
|
+
Link
|
113
|
+
--------------------*/
|
134
114
|
|
135
|
-
i.icon
|
136
|
-
|
115
|
+
i.link.icon {
|
116
|
+
cursor: pointer;
|
117
|
+
opacity: 0.8;
|
118
|
+
-webkit-transition: opacity 0.2s ease;
|
119
|
+
transition: opacity 0.2s ease;
|
137
120
|
}
|
138
|
-
|
139
|
-
|
140
|
-
content: "\f187";
|
121
|
+
i.link.icon:hover {
|
122
|
+
opacity: 1 !important;
|
141
123
|
}
|
142
124
|
|
143
|
-
|
144
|
-
|
145
|
-
|
125
|
+
/*-------------------
|
126
|
+
Circular
|
127
|
+
--------------------*/
|
146
128
|
|
147
|
-
i.icon
|
148
|
-
|
129
|
+
i.circular.icon {
|
130
|
+
border-radius: 500em !important;
|
131
|
+
padding: 0.5em 0.5em !important;
|
132
|
+
box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
|
133
|
+
line-height: 1 !important;
|
134
|
+
width: 2em !important;
|
135
|
+
height: 2em !important;
|
149
136
|
}
|
150
|
-
|
151
|
-
|
152
|
-
|
137
|
+
i.circular.inverted.icon {
|
138
|
+
border: none;
|
139
|
+
box-shadow: none;
|
153
140
|
}
|
154
141
|
|
155
|
-
|
156
|
-
|
157
|
-
|
142
|
+
/*-------------------
|
143
|
+
Flipped
|
144
|
+
--------------------*/
|
158
145
|
|
159
|
-
i.icon
|
160
|
-
|
146
|
+
i.flipped.icon,
|
147
|
+
i.horizontally.flipped.icon {
|
148
|
+
-webkit-transform: scale(-1, 1);
|
149
|
+
-ms-transform: scale(-1, 1);
|
150
|
+
transform: scale(-1, 1);
|
161
151
|
}
|
162
|
-
|
163
|
-
|
164
|
-
|
152
|
+
i.vertically.flipped.icon {
|
153
|
+
-webkit-transform: scale(1, -1);
|
154
|
+
-ms-transform: scale(1, -1);
|
155
|
+
transform: scale(1, -1);
|
165
156
|
}
|
166
157
|
|
167
|
-
|
168
|
-
|
169
|
-
|
158
|
+
/*-------------------
|
159
|
+
Rotated
|
160
|
+
--------------------*/
|
170
161
|
|
171
|
-
i.icon
|
172
|
-
|
162
|
+
i.rotated.icon,
|
163
|
+
i.right.rotated.icon,
|
164
|
+
i.clockwise.rotated.icon {
|
165
|
+
-webkit-transform: rotate(90deg);
|
166
|
+
-ms-transform: rotate(90deg);
|
167
|
+
transform: rotate(90deg);
|
173
168
|
}
|
174
|
-
|
175
|
-
i.icon
|
176
|
-
|
169
|
+
i.left.rotated.icon,
|
170
|
+
i.counterclockwise.rotated.icon {
|
171
|
+
-webkit-transform: rotate(-90deg);
|
172
|
+
-ms-transform: rotate(-90deg);
|
173
|
+
transform: rotate(-90deg);
|
177
174
|
}
|
178
175
|
|
179
|
-
|
180
|
-
|
181
|
-
|
176
|
+
/*-------------------
|
177
|
+
Bordered
|
178
|
+
--------------------*/
|
182
179
|
|
183
|
-
i.icon
|
184
|
-
|
180
|
+
i.bordered.icon {
|
181
|
+
width: 2em;
|
182
|
+
height: 2em;
|
183
|
+
padding: 0.55em 0.385em !important;
|
184
|
+
box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
|
185
|
+
vertical-align: baseline;
|
185
186
|
}
|
186
|
-
|
187
|
-
|
188
|
-
|
187
|
+
i.bordered.inverted.icon {
|
188
|
+
border: none;
|
189
|
+
box-shadow: none;
|
189
190
|
}
|
190
191
|
|
191
|
-
|
192
|
-
|
193
|
-
|
192
|
+
/*-------------------
|
193
|
+
Colors
|
194
|
+
--------------------*/
|
194
195
|
|
195
|
-
i.icon
|
196
|
-
|
196
|
+
i.white.icon {
|
197
|
+
color: #ffffff !important;
|
197
198
|
}
|
198
|
-
|
199
|
-
|
200
|
-
content: "\f02a";
|
199
|
+
i.black.icon {
|
200
|
+
color: #1b1c1d !important;
|
201
201
|
}
|
202
|
-
|
203
|
-
|
204
|
-
content: "\f0fc";
|
202
|
+
i.blue.icon {
|
203
|
+
color: #3b83c0 !important;
|
205
204
|
}
|
206
|
-
|
207
|
-
|
208
|
-
content: "\f0a2";
|
205
|
+
i.green.icon {
|
206
|
+
color: #5bbd72 !important;
|
209
207
|
}
|
210
|
-
|
211
|
-
|
212
|
-
content: "\f0f3";
|
208
|
+
i.orange.icon {
|
209
|
+
color: #e07b53 !important;
|
213
210
|
}
|
214
|
-
|
215
|
-
|
216
|
-
content: "\f172";
|
211
|
+
i.pink.icon {
|
212
|
+
color: #d9499a !important;
|
217
213
|
}
|
218
|
-
|
219
|
-
|
220
|
-
content: "\f171";
|
214
|
+
i.purple.icon {
|
215
|
+
color: #564f8a !important;
|
221
216
|
}
|
222
|
-
|
223
|
-
|
224
|
-
content: "\f15a";
|
217
|
+
i.red.icon {
|
218
|
+
color: #d95c5c !important;
|
225
219
|
}
|
226
|
-
|
227
|
-
|
228
|
-
content: "\f032";
|
220
|
+
i.teal.icon {
|
221
|
+
color: #00b5ad !important;
|
229
222
|
}
|
230
|
-
|
231
|
-
|
232
|
-
content: "\f0e7";
|
223
|
+
i.yellow.icon {
|
224
|
+
color: #f2c61f !important;
|
233
225
|
}
|
234
226
|
|
235
|
-
|
236
|
-
|
237
|
-
|
227
|
+
/*-------------------
|
228
|
+
Inverted
|
229
|
+
--------------------*/
|
238
230
|
|
239
|
-
i.icon
|
240
|
-
|
231
|
+
i.inverted.icon {
|
232
|
+
color: #ffffff;
|
241
233
|
}
|
242
|
-
|
243
|
-
|
244
|
-
content: "\f02e";
|
234
|
+
i.inverted.black.icon {
|
235
|
+
color: #333333 !important;
|
245
236
|
}
|
246
|
-
|
247
|
-
|
248
|
-
content: "\f150";
|
237
|
+
i.inverted.blue.icon {
|
238
|
+
color: #54c8ff !important;
|
249
239
|
}
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
i.icon.box.arrow.right:before {
|
254
|
-
content: "\f152";
|
240
|
+
i.inverted.green.icon {
|
241
|
+
color: #2ecc40 !important;
|
255
242
|
}
|
256
|
-
|
257
|
-
|
258
|
-
content: "\f151";
|
243
|
+
i.inverted.orange.icon {
|
244
|
+
color: #ff851b !important;
|
259
245
|
}
|
260
|
-
|
261
|
-
|
262
|
-
content: "\f0b1";
|
246
|
+
i.inverted.pink.icon {
|
247
|
+
color: #ff8edf !important;
|
263
248
|
}
|
264
|
-
|
265
|
-
|
266
|
-
content: "\f022";
|
249
|
+
i.inverted.purple.icon {
|
250
|
+
color: #cdc6ff !important;
|
267
251
|
}
|
268
|
-
|
269
|
-
|
270
|
-
content: "\f188";
|
252
|
+
i.inverted.red.icon {
|
253
|
+
color: #ff695e !important;
|
271
254
|
}
|
272
|
-
|
273
|
-
|
274
|
-
|
255
|
+
i.inverted.teal.icon {
|
256
|
+
color: #6dffff !important;
|
257
|
+
}
|
258
|
+
i.inverted.yellow.icon {
|
259
|
+
color: #ffe21f !important;
|
275
260
|
}
|
276
261
|
|
277
|
-
|
278
|
-
|
262
|
+
/* Inverted Shapes */
|
263
|
+
i.inverted.bordered.icon,
|
264
|
+
i.inverted.circular.icon {
|
265
|
+
background-color: #222222 !important;
|
266
|
+
color: #FFFFFF !important;
|
279
267
|
}
|
280
|
-
|
281
|
-
i.icon
|
282
|
-
|
268
|
+
i.inverted.bordered.black.icon,
|
269
|
+
i.inverted.circular.black.icon {
|
270
|
+
background-color: #1b1c1d !important;
|
271
|
+
color: #FFFFFF !important;
|
283
272
|
}
|
284
|
-
|
285
|
-
i.
|
286
|
-
|
273
|
+
i.inverted.bordered.blue.icon,
|
274
|
+
i.inverted.circular.blue.icon {
|
275
|
+
background-color: #3b83c0 !important;
|
276
|
+
color: #FFFFFF !important;
|
287
277
|
}
|
288
|
-
|
289
|
-
i.icon
|
290
|
-
|
278
|
+
i.inverted.bordered.green.icon,
|
279
|
+
i.inverted.circular.green.icon {
|
280
|
+
background-color: #5bbd72 !important;
|
281
|
+
color: #FFFFFF !important;
|
291
282
|
}
|
292
|
-
|
293
|
-
i.
|
294
|
-
|
283
|
+
i.inverted.bordered.orange.icon,
|
284
|
+
i.inverted.circular.orange.icon {
|
285
|
+
background-color: #e07b53 !important;
|
286
|
+
color: #FFFFFF !important;
|
295
287
|
}
|
296
|
-
|
297
|
-
i.icon
|
298
|
-
|
288
|
+
i.inverted.bordered.pink.icon,
|
289
|
+
i.inverted.circular.pink.icon {
|
290
|
+
background-color: #d9499a !important;
|
291
|
+
color: #FFFFFF !important;
|
299
292
|
}
|
300
|
-
|
301
|
-
i.
|
302
|
-
|
293
|
+
i.inverted.bordered.purple.icon,
|
294
|
+
i.inverted.circular.purple.icon {
|
295
|
+
background-color: #564f8a !important;
|
296
|
+
color: #FFFFFF !important;
|
303
297
|
}
|
304
|
-
|
305
|
-
i.
|
306
|
-
|
298
|
+
i.inverted.bordered.red.icon,
|
299
|
+
i.inverted.circular.red.icon {
|
300
|
+
background-color: #d95c5c !important;
|
301
|
+
color: #FFFFFF !important;
|
307
302
|
}
|
308
|
-
|
309
|
-
i.
|
310
|
-
|
303
|
+
i.inverted.bordered.teal.icon,
|
304
|
+
i.inverted.circular.teal.icon {
|
305
|
+
background-color: #00b5ad !important;
|
306
|
+
color: #FFFFFF !important;
|
311
307
|
}
|
312
|
-
|
313
|
-
i.
|
314
|
-
|
308
|
+
i.inverted.bordered.yellow.icon,
|
309
|
+
i.inverted.circular.yellow.icon {
|
310
|
+
background-color: #f2c61f !important;
|
311
|
+
color: #FFFFFF !important;
|
315
312
|
}
|
316
313
|
|
317
|
-
|
318
|
-
|
319
|
-
|
314
|
+
/*-------------------
|
315
|
+
Sizes
|
316
|
+
--------------------*/
|
320
317
|
|
321
|
-
i.icon
|
322
|
-
|
318
|
+
i.small.icon {
|
319
|
+
font-size: 0.875em;
|
323
320
|
}
|
324
|
-
|
325
|
-
|
326
|
-
content: "\f0e6";
|
321
|
+
i.icon {
|
322
|
+
font-size: 1em;
|
327
323
|
}
|
328
|
-
|
329
|
-
|
330
|
-
|
324
|
+
i.large.icon {
|
325
|
+
font-size: 1.5em;
|
326
|
+
vertical-align: middle;
|
331
327
|
}
|
332
|
-
|
333
|
-
|
334
|
-
|
328
|
+
i.big.icon {
|
329
|
+
font-size: 2em;
|
330
|
+
vertical-align: middle;
|
335
331
|
}
|
336
|
-
|
337
|
-
|
338
|
-
|
332
|
+
i.huge.icon {
|
333
|
+
font-size: 4em;
|
334
|
+
vertical-align: middle;
|
339
335
|
}
|
340
|
-
|
341
|
-
|
342
|
-
|
336
|
+
i.massive.icon {
|
337
|
+
font-size: 8em;
|
338
|
+
vertical-align: middle;
|
343
339
|
}
|
340
|
+
/*
|
341
|
+
* # Semantic - Icon
|
342
|
+
* http://github.com/jlukic/semantic-ui/
|
343
|
+
*
|
344
|
+
*
|
345
|
+
* Copyright 2014 Contributor
|
346
|
+
* Released under the MIT license
|
347
|
+
* http://opensource.org/licenses/MIT
|
348
|
+
*
|
349
|
+
*/
|
350
|
+
/*
|
351
|
+
* Font Awesome 4.0.3
|
352
|
+
* the iconic font designed for Bootstrap
|
353
|
+
* ------------------------------------------------------------------------------
|
354
|
+
* The full suite of pictographic icons, examples, and documentation can be
|
355
|
+
* found at http://fon.io. Stay up to date on Twitter at
|
356
|
+
* http://twitter.com/fon.
|
357
|
+
*
|
358
|
+
* License
|
359
|
+
* ------------------------------------------------------------------------------
|
360
|
+
* - The Font Awesome font is licensed under SIL OFL 1.1 -
|
361
|
+
* http://scripts.sil.org/OFL
|
344
362
|
|
345
|
-
i.icon.checkmark.sign:before {
|
346
|
-
content: "\f14a";
|
347
|
-
}
|
348
363
|
|
349
|
-
i.icon.checkmark:before {
|
350
|
-
content: "\f00c";
|
351
|
-
}
|
352
364
|
|
353
|
-
|
354
|
-
content: "\f10c";
|
355
|
-
}
|
365
|
+
/*******************************
|
356
366
|
|
357
|
-
|
358
|
-
content: "\f0ab";
|
359
|
-
}
|
367
|
+
Semantic-UI integration of font-awesome :
|
360
368
|
|
361
|
-
|
362
|
-
|
363
|
-
|
369
|
+
///class names are separated
|
370
|
+
i.icon.circle => i.icon.circle
|
371
|
+
i.icon.circle-o => i.icon.circle.outline
|
364
372
|
|
365
|
-
|
366
|
-
|
367
|
-
|
373
|
+
//abbreviation are replaced by full letters:
|
374
|
+
i.icon.ellipsis-h => i.icon.ellipsis.horizontal
|
375
|
+
i.icon.ellipsis-v => i.icon.ellipsis.vertical
|
376
|
+
.alpha => .i.icon.alphabet
|
377
|
+
.asc => .i.icon.ascending
|
378
|
+
.desc => .i.icon.descending
|
379
|
+
.alt =>.alternate
|
368
380
|
|
369
|
-
|
370
|
-
content: "\f0aa";
|
371
|
-
}
|
381
|
+
ASCII order is conserved for easier maintenance.
|
372
382
|
|
373
|
-
|
374
|
-
|
375
|
-
}
|
383
|
+
Icons that only have one style 'outline', 'square' etc do not require this class
|
384
|
+
for instance `lemon icon` not `lemon outline icon` since there is only one lemon
|
376
385
|
|
377
|
-
|
378
|
-
content: "\f0ed";
|
379
|
-
}
|
386
|
+
*******************************/
|
380
387
|
|
381
|
-
i.icon.cloud.upload:before {
|
382
|
-
content: "\f0ee";
|
383
|
-
}
|
384
388
|
|
385
|
-
i.icon.cloud:before {
|
386
|
-
content: "\f0c2";
|
387
|
-
}
|
388
389
|
|
389
|
-
|
390
|
-
|
391
|
-
|
390
|
+
/*******************************
|
391
|
+
Icons
|
392
|
+
*******************************/
|
392
393
|
|
393
|
-
i.icon.code:before {
|
394
|
-
content: "\f121";
|
395
|
-
}
|
396
394
|
|
397
|
-
|
398
|
-
|
395
|
+
/* Web Content */
|
396
|
+
i.icon.search:before {
|
397
|
+
content: "\f002";
|
399
398
|
}
|
400
|
-
|
401
|
-
|
402
|
-
content: "\f117";
|
399
|
+
i.icon.mail.outline:before {
|
400
|
+
content: "\f003";
|
403
401
|
}
|
404
|
-
|
405
|
-
|
406
|
-
content: "\f0e5";
|
402
|
+
i.icon.external.link:before {
|
403
|
+
content: "\f08e";
|
407
404
|
}
|
408
|
-
|
409
|
-
|
410
|
-
content: "\f075";
|
405
|
+
i.icon.wifi:before {
|
406
|
+
content: "\f012";
|
411
407
|
}
|
412
|
-
|
413
|
-
|
414
|
-
content: "\f0c5";
|
408
|
+
i.icon.setting:before {
|
409
|
+
content: "\f013";
|
415
410
|
}
|
416
|
-
|
417
|
-
|
418
|
-
content: "\f125";
|
411
|
+
i.icon.home:before {
|
412
|
+
content: "\f015";
|
419
413
|
}
|
420
|
-
|
421
|
-
|
422
|
-
content: "\f13c";
|
414
|
+
i.icon.inbox:before {
|
415
|
+
content: "\f01c";
|
423
416
|
}
|
424
|
-
|
425
|
-
|
426
|
-
content: "\f0c4";
|
417
|
+
i.icon.browser:before {
|
418
|
+
content: "\f022";
|
427
419
|
}
|
428
|
-
|
429
|
-
|
430
|
-
content: "\f0e4";
|
420
|
+
i.icon.tag:before {
|
421
|
+
content: "\f02b";
|
431
422
|
}
|
432
|
-
|
433
|
-
|
434
|
-
content: "\f108";
|
423
|
+
i.icon.tags:before {
|
424
|
+
content: "\f02c";
|
435
425
|
}
|
436
|
-
|
437
|
-
|
438
|
-
content: "\f0f0";
|
426
|
+
i.icon.calendar:before {
|
427
|
+
content: "\f073";
|
439
428
|
}
|
440
|
-
|
441
|
-
|
442
|
-
content: "\f155";
|
429
|
+
i.icon.comment:before {
|
430
|
+
content: "\f075";
|
443
431
|
}
|
444
|
-
|
445
|
-
|
446
|
-
content: "\f103";
|
432
|
+
i.icon.comments:before {
|
433
|
+
content: "\f086";
|
447
434
|
}
|
448
|
-
|
449
|
-
|
450
|
-
content: "\f100";
|
435
|
+
i.icon.shop:before {
|
436
|
+
content: "\f07a";
|
451
437
|
}
|
452
|
-
|
453
|
-
|
454
|
-
content: "\f101";
|
438
|
+
i.icon.privacy:before {
|
439
|
+
content: "\f084";
|
455
440
|
}
|
456
|
-
|
457
|
-
|
458
|
-
content: "\f102";
|
441
|
+
i.icon.settings:before {
|
442
|
+
content: "\f085";
|
459
443
|
}
|
460
|
-
|
461
|
-
|
462
|
-
content: "\f063";
|
444
|
+
i.icon.trophy:before {
|
445
|
+
content: "\f091";
|
463
446
|
}
|
464
|
-
|
465
|
-
|
466
|
-
content: "\f019";
|
447
|
+
i.icon.payment:before {
|
448
|
+
content: "\f09d";
|
467
449
|
}
|
468
|
-
|
469
|
-
|
470
|
-
content: "\f01a";
|
450
|
+
i.icon.feed:before {
|
451
|
+
content: "\f09e";
|
471
452
|
}
|
472
|
-
|
473
|
-
|
474
|
-
content: "\f17d";
|
453
|
+
i.icon.alarm.outline:before {
|
454
|
+
content: "\f0a2";
|
475
455
|
}
|
476
|
-
|
477
|
-
|
478
|
-
content: "\f16b";
|
456
|
+
i.icon.tasks:before {
|
457
|
+
content: "\f0ae";
|
479
458
|
}
|
480
|
-
|
481
|
-
|
482
|
-
content: "\f14b";
|
459
|
+
i.icon.cloud:before {
|
460
|
+
content: "\f0c2";
|
483
461
|
}
|
484
|
-
|
485
|
-
|
486
|
-
content: "\f044";
|
462
|
+
i.icon.lab:before {
|
463
|
+
content: "\f0c3";
|
487
464
|
}
|
488
|
-
|
489
|
-
|
490
|
-
content: "\f052";
|
465
|
+
i.icon.mail:before {
|
466
|
+
content: "\f0e0";
|
491
467
|
}
|
492
|
-
|
493
|
-
|
494
|
-
content: "\f141";
|
468
|
+
i.icon.idea:before {
|
469
|
+
content: "\f0eb";
|
495
470
|
}
|
496
|
-
|
497
|
-
|
498
|
-
content: "\f142";
|
471
|
+
i.icon.dashboard:before {
|
472
|
+
content: "\f0e4";
|
499
473
|
}
|
500
|
-
|
501
|
-
|
502
|
-
content: "\f12d";
|
474
|
+
i.icon.sitemap:before {
|
475
|
+
content: "\f0e8";
|
503
476
|
}
|
504
|
-
|
505
|
-
|
506
|
-
content: "\f153";
|
477
|
+
i.icon.alarm:before {
|
478
|
+
content: "\f0f3";
|
507
479
|
}
|
508
|
-
|
509
|
-
|
510
|
-
content: "\f0ec";
|
480
|
+
i.icon.terminal:before {
|
481
|
+
content: "\f120";
|
511
482
|
}
|
512
|
-
|
513
|
-
|
514
|
-
content: "\f12a";
|
483
|
+
i.icon.code:before {
|
484
|
+
content: "\f121";
|
515
485
|
}
|
516
|
-
|
517
|
-
|
518
|
-
content: "\f116";
|
486
|
+
i.icon.protect:before {
|
487
|
+
content: "\f132";
|
519
488
|
}
|
520
|
-
|
521
|
-
|
522
|
-
content: "\f14c";
|
489
|
+
i.icon.calendar.outline:before {
|
490
|
+
content: "\f133";
|
523
491
|
}
|
524
|
-
|
525
|
-
|
526
|
-
content: "\f08e";
|
492
|
+
i.icon.ticket:before {
|
493
|
+
content: "\f145";
|
527
494
|
}
|
528
|
-
|
529
|
-
|
530
|
-
content: "\f082";
|
495
|
+
i.icon.external.link.square:before {
|
496
|
+
content: "\f14c";
|
531
497
|
}
|
532
|
-
|
533
|
-
|
534
|
-
content: "\f09a";
|
498
|
+
i.icon.map:before {
|
499
|
+
content: "\f14e";
|
535
500
|
}
|
536
|
-
|
537
|
-
|
538
|
-
content: "\f03d";
|
501
|
+
i.icon.bug:before {
|
502
|
+
content: "\f188";
|
539
503
|
}
|
540
|
-
|
541
|
-
|
542
|
-
content: "\f049";
|
504
|
+
i.icon.mail.square:before {
|
505
|
+
content: "\f199";
|
543
506
|
}
|
544
|
-
|
545
|
-
|
546
|
-
content: "\f050";
|
507
|
+
i.icon.history:before {
|
508
|
+
content: "\f1da";
|
547
509
|
}
|
548
|
-
|
549
|
-
|
550
|
-
content: "\f182";
|
510
|
+
i.icon.options:before {
|
511
|
+
content: "\f1de";
|
551
512
|
}
|
552
|
-
|
553
|
-
|
554
|
-
content: "\f0fb";
|
513
|
+
i.icon.comment.outline:before {
|
514
|
+
content: "\f0e5";
|
555
515
|
}
|
556
|
-
|
557
|
-
|
558
|
-
content: "\f016";
|
516
|
+
i.icon.comments.outline:before {
|
517
|
+
content: "\f0e6";
|
559
518
|
}
|
560
519
|
|
561
|
-
|
562
|
-
|
520
|
+
/* User Actions */
|
521
|
+
i.icon.download:before {
|
522
|
+
content: "\f019";
|
563
523
|
}
|
564
|
-
|
565
|
-
|
566
|
-
content: "\f15c";
|
524
|
+
i.icon.repeat:before {
|
525
|
+
content: "\f01e";
|
567
526
|
}
|
568
|
-
|
569
|
-
|
570
|
-
content: "\f15b";
|
527
|
+
i.icon.refresh:before {
|
528
|
+
content: "\f021";
|
571
529
|
}
|
572
|
-
|
573
|
-
|
574
|
-
content: "\f0b0";
|
530
|
+
i.icon.lock:before {
|
531
|
+
content: "\f023";
|
575
532
|
}
|
576
|
-
|
577
|
-
|
578
|
-
content: "\f134";
|
533
|
+
i.icon.bookmark:before {
|
534
|
+
content: "\f02e";
|
579
535
|
}
|
580
|
-
|
581
|
-
|
582
|
-
content: "\f06d";
|
536
|
+
i.icon.print:before {
|
537
|
+
content: "\f02f";
|
583
538
|
}
|
584
|
-
|
585
|
-
|
586
|
-
content: "\f11e";
|
539
|
+
i.icon.write:before {
|
540
|
+
content: "\f040";
|
587
541
|
}
|
588
|
-
|
589
|
-
|
590
|
-
content: "\f11d";
|
542
|
+
i.icon.theme:before {
|
543
|
+
content: "\f043";
|
591
544
|
}
|
592
|
-
|
593
|
-
|
594
|
-
content: "\f024";
|
545
|
+
i.icon.adjust:before {
|
546
|
+
content: "\f042";
|
595
547
|
}
|
596
|
-
|
597
|
-
|
598
|
-
content: "\f16e";
|
548
|
+
i.icon.edit:before {
|
549
|
+
content: "\f044";
|
599
550
|
}
|
600
|
-
|
601
|
-
|
602
|
-
content: "\f115";
|
551
|
+
i.icon.external.share:before {
|
552
|
+
content: "\f045";
|
603
553
|
}
|
604
|
-
|
605
|
-
|
606
|
-
content: "\f07c";
|
554
|
+
i.icon.ban:before {
|
555
|
+
content: "\f05e";
|
607
556
|
}
|
608
|
-
|
609
|
-
|
610
|
-
content: "\f114";
|
557
|
+
i.icon.mail.forward:before {
|
558
|
+
content: "\f064";
|
611
559
|
}
|
612
|
-
|
613
|
-
|
614
|
-
content: "\f07b";
|
560
|
+
i.icon.share:before {
|
561
|
+
content: "\f064";
|
615
562
|
}
|
616
|
-
|
617
|
-
|
618
|
-
content: "\f031";
|
563
|
+
i.icon.expand:before {
|
564
|
+
content: "\f065";
|
619
565
|
}
|
620
|
-
|
621
|
-
|
622
|
-
content: "\f0f5";
|
566
|
+
i.icon.compress:before {
|
567
|
+
content: "\f066";
|
623
568
|
}
|
624
|
-
|
625
|
-
|
626
|
-
content: "\f064";
|
569
|
+
i.icon.unhide:before {
|
570
|
+
content: "\f06e";
|
627
571
|
}
|
628
|
-
|
629
|
-
|
630
|
-
content: "\f04e";
|
572
|
+
i.icon.hide:before {
|
573
|
+
content: "\f070";
|
631
574
|
}
|
632
|
-
|
633
|
-
|
634
|
-
content: "\f180";
|
575
|
+
i.icon.random:before {
|
576
|
+
content: "\f074";
|
635
577
|
}
|
636
|
-
|
637
|
-
|
638
|
-
content: "\f119";
|
578
|
+
i.icon.retweet:before {
|
579
|
+
content: "\f079";
|
639
580
|
}
|
640
|
-
|
641
|
-
|
642
|
-
content: "\f0b2";
|
581
|
+
i.icon.sign.out:before {
|
582
|
+
content: "\f08b";
|
643
583
|
}
|
644
|
-
|
645
|
-
|
646
|
-
content: "\f11b";
|
584
|
+
i.icon.pin:before {
|
585
|
+
content: "\f08d";
|
647
586
|
}
|
648
|
-
|
649
|
-
|
650
|
-
content: "\f06b";
|
587
|
+
i.icon.sign.in:before {
|
588
|
+
content: "\f090";
|
651
589
|
}
|
652
|
-
|
653
|
-
|
654
|
-
content: "\f09b";
|
590
|
+
i.icon.upload:before {
|
591
|
+
content: "\f093";
|
655
592
|
}
|
656
|
-
|
657
|
-
|
658
|
-
content: "\f092";
|
593
|
+
i.icon.call:before {
|
594
|
+
content: "\f095";
|
659
595
|
}
|
660
|
-
|
661
|
-
|
662
|
-
content: "\f113";
|
596
|
+
i.icon.call.square:before {
|
597
|
+
content: "\f098";
|
663
598
|
}
|
664
|
-
|
665
|
-
|
666
|
-
content: "\f184";
|
599
|
+
i.icon.remove.bookmark:before {
|
600
|
+
content: "\f097";
|
667
601
|
}
|
668
|
-
|
669
|
-
|
670
|
-
content: "\f000";
|
602
|
+
i.icon.unlock:before {
|
603
|
+
content: "\f09c";
|
671
604
|
}
|
672
|
-
|
673
|
-
|
674
|
-
content: "\f0ac";
|
605
|
+
i.icon.configure:before {
|
606
|
+
content: "\f0ad";
|
675
607
|
}
|
676
|
-
|
677
|
-
|
678
|
-
content: "\f0d4";
|
608
|
+
i.icon.filter:before {
|
609
|
+
content: "\f0b0";
|
679
610
|
}
|
680
|
-
|
681
|
-
|
682
|
-
content: "\f0d5";
|
611
|
+
i.icon.wizard:before {
|
612
|
+
content: "\f0d0";
|
683
613
|
}
|
684
|
-
|
685
|
-
|
686
|
-
content: "\f0fd";
|
614
|
+
i.icon.undo:before {
|
615
|
+
content: "\f0e2";
|
687
616
|
}
|
688
|
-
|
689
|
-
|
690
|
-
content: "\f0a7";
|
617
|
+
i.icon.exchange:before {
|
618
|
+
content: "\f0ec";
|
691
619
|
}
|
692
|
-
|
693
|
-
|
694
|
-
content: "\f0a5";
|
620
|
+
i.icon.cloud.download:before {
|
621
|
+
content: "\f0ed";
|
695
622
|
}
|
696
|
-
|
697
|
-
|
698
|
-
content: "\f0a4";
|
623
|
+
i.icon.cloud.upload:before {
|
624
|
+
content: "\f0ee";
|
699
625
|
}
|
700
|
-
|
701
|
-
|
702
|
-
content: "\f0a6";
|
626
|
+
i.icon.reply:before {
|
627
|
+
content: "\f112";
|
703
628
|
}
|
704
|
-
|
705
|
-
|
706
|
-
content: "\f0a0";
|
629
|
+
i.icon.reply.all:before {
|
630
|
+
content: "\f122";
|
707
631
|
}
|
708
|
-
|
709
|
-
|
710
|
-
content: "\f025";
|
632
|
+
i.icon.erase:before {
|
633
|
+
content: "\f12d";
|
711
634
|
}
|
712
|
-
|
713
|
-
|
714
|
-
content: "\f08a";
|
635
|
+
i.icon.unlock.alternate:before {
|
636
|
+
content: "\f13e";
|
715
637
|
}
|
716
|
-
|
717
|
-
|
718
|
-
content: "\f004";
|
638
|
+
i.icon.archive:before {
|
639
|
+
content: "\f187";
|
719
640
|
}
|
720
|
-
|
721
|
-
|
722
|
-
content: "\f059";
|
641
|
+
i.icon.translate:before {
|
642
|
+
content: "\f1ab";
|
723
643
|
}
|
724
|
-
|
725
|
-
|
726
|
-
content: "\f070";
|
644
|
+
i.icon.recycle:before {
|
645
|
+
content: "\f1b8";
|
727
646
|
}
|
728
|
-
|
729
|
-
|
730
|
-
content: "\f015";
|
647
|
+
i.icon.send:before {
|
648
|
+
content: "\f1d8";
|
731
649
|
}
|
732
|
-
|
733
|
-
|
734
|
-
content: "\f0f8";
|
650
|
+
i.icon.send.outline:before {
|
651
|
+
content: "\f1d9";
|
735
652
|
}
|
736
|
-
|
737
|
-
|
738
|
-
content: "\f13b";
|
653
|
+
i.icon.share.alternate:before {
|
654
|
+
content: "\f1e0";
|
739
655
|
}
|
740
|
-
|
741
|
-
|
742
|
-
content: "\f01c";
|
656
|
+
i.icon.share.alternate.square:before {
|
657
|
+
content: "\f1e1";
|
743
658
|
}
|
744
|
-
|
745
|
-
|
746
|
-
content: "\f03b";
|
659
|
+
i.icon.wait:before {
|
660
|
+
content: "\f017";
|
747
661
|
}
|
748
|
-
|
749
|
-
|
750
|
-
content: "\f03c";
|
662
|
+
i.icon.write.square:before {
|
663
|
+
content: "\f14b";
|
751
664
|
}
|
752
|
-
|
753
|
-
|
754
|
-
content: "\f129";
|
665
|
+
i.icon.share.square:before {
|
666
|
+
content: "\f14d";
|
755
667
|
}
|
756
668
|
|
757
|
-
|
669
|
+
/* Messages */
|
670
|
+
i.icon.help.circle:before {
|
671
|
+
content: "\f059";
|
672
|
+
}
|
673
|
+
i.icon.info.circle:before {
|
758
674
|
content: "\f05a";
|
759
675
|
}
|
760
|
-
|
761
|
-
|
762
|
-
content: "\f16d";
|
676
|
+
i.icon.warning:before {
|
677
|
+
content: "\f12a";
|
763
678
|
}
|
764
|
-
|
765
|
-
|
766
|
-
content: "\f033";
|
679
|
+
i.icon.warning.circle:before {
|
680
|
+
content: "\f06a";
|
767
681
|
}
|
768
|
-
|
769
|
-
|
770
|
-
content: "\f084";
|
682
|
+
i.icon.warning.sign:before {
|
683
|
+
content: "\f071";
|
771
684
|
}
|
772
|
-
|
773
|
-
|
774
|
-
content: "\f11c";
|
685
|
+
i.icon.help:before {
|
686
|
+
content: "\f128";
|
775
687
|
}
|
776
|
-
|
777
|
-
|
778
|
-
content: "\f0c3";
|
688
|
+
i.icon.info:before {
|
689
|
+
content: "\f129";
|
779
690
|
}
|
780
|
-
|
781
|
-
|
782
|
-
content: "\f109";
|
691
|
+
i.icon.announcement:before {
|
692
|
+
content: "\f0a1";
|
783
693
|
}
|
784
694
|
|
785
|
-
|
786
|
-
|
695
|
+
/* Users */
|
696
|
+
i.icon.users:before {
|
697
|
+
content: "\f0c0";
|
787
698
|
}
|
788
|
-
|
789
|
-
|
790
|
-
content: "\f0db";
|
699
|
+
i.icon.doctor:before {
|
700
|
+
content: "\f0f0";
|
791
701
|
}
|
792
|
-
|
793
|
-
|
794
|
-
content: "\f00a";
|
702
|
+
i.icon.female:before {
|
703
|
+
content: "\f182";
|
795
704
|
}
|
796
|
-
|
797
|
-
|
798
|
-
content: "\f00b";
|
705
|
+
i.icon.male:before {
|
706
|
+
content: "\f183";
|
799
707
|
}
|
800
|
-
|
801
|
-
|
802
|
-
content: "\f06c";
|
708
|
+
i.icon.child:before {
|
709
|
+
content: "\f1ae";
|
803
710
|
}
|
804
|
-
|
805
|
-
|
806
|
-
content: "\f0e3";
|
711
|
+
i.icon.user:before {
|
712
|
+
content: "\f007";
|
807
713
|
}
|
808
|
-
|
809
|
-
|
810
|
-
content: "\f094";
|
714
|
+
i.icon.handicap:before {
|
715
|
+
content: "\f193";
|
811
716
|
}
|
812
|
-
|
813
|
-
|
814
|
-
content: "\f149";
|
717
|
+
i.icon.student:before {
|
718
|
+
content: "\f19d";
|
815
719
|
}
|
816
720
|
|
817
|
-
|
818
|
-
|
721
|
+
/* View Adjustment */
|
722
|
+
i.icon.grid.layout:before {
|
723
|
+
content: "\f00a";
|
819
724
|
}
|
820
|
-
|
821
|
-
|
822
|
-
content: "\f0eb";
|
725
|
+
i.icon.list.layout:before {
|
726
|
+
content: "\f00b";
|
823
727
|
}
|
824
|
-
|
825
|
-
|
826
|
-
content: "\f08c";
|
728
|
+
i.icon.block.layout:before {
|
729
|
+
content: "\f009";
|
827
730
|
}
|
828
|
-
|
829
|
-
|
830
|
-
content: "\f0e1";
|
731
|
+
i.icon.zoom:before {
|
732
|
+
content: "\f00e";
|
831
733
|
}
|
832
|
-
|
833
|
-
|
834
|
-
content: "\f17c";
|
734
|
+
i.icon.zoom.out:before {
|
735
|
+
content: "\f010";
|
835
736
|
}
|
836
|
-
|
837
|
-
|
838
|
-
content: "\f0cb";
|
737
|
+
i.icon.resize.vertical:before {
|
738
|
+
content: "\f07d";
|
839
739
|
}
|
840
|
-
|
841
|
-
|
842
|
-
content: "\f0ca";
|
740
|
+
i.icon.resize.horizontal:before {
|
741
|
+
content: "\f07e";
|
843
742
|
}
|
844
|
-
|
845
|
-
|
846
|
-
content: "\f03a";
|
743
|
+
i.icon.maximize:before {
|
744
|
+
content: "\f0b2";
|
847
745
|
}
|
848
|
-
|
849
|
-
|
850
|
-
content: "\f110";
|
746
|
+
i.icon.crop:before {
|
747
|
+
content: "\f125";
|
851
748
|
}
|
852
749
|
|
853
|
-
|
854
|
-
|
750
|
+
/* Literal Objects */
|
751
|
+
i.icon.cocktail:before {
|
752
|
+
content: "\f000";
|
855
753
|
}
|
856
|
-
|
857
|
-
|
858
|
-
content: "\f023";
|
754
|
+
i.icon.road:before {
|
755
|
+
content: "\f018";
|
859
756
|
}
|
860
|
-
|
861
|
-
|
862
|
-
content: "\f175";
|
757
|
+
i.icon.flag:before {
|
758
|
+
content: "\f024";
|
863
759
|
}
|
864
|
-
|
865
|
-
|
866
|
-
content: "\f177";
|
760
|
+
i.icon.book:before {
|
761
|
+
content: "\f02d";
|
867
762
|
}
|
868
|
-
|
869
|
-
|
870
|
-
content: "\f178";
|
763
|
+
i.icon.gift:before {
|
764
|
+
content: "\f06b";
|
871
765
|
}
|
872
|
-
|
873
|
-
|
874
|
-
content: "\f176";
|
766
|
+
i.icon.leaf:before {
|
767
|
+
content: "\f06c";
|
875
768
|
}
|
876
|
-
|
877
|
-
|
878
|
-
|
769
|
+
i.icon.fire:before {
|
770
|
+
content: "\f06d";
|
771
|
+
}
|
772
|
+
i.icon.plane:before {
|
773
|
+
content: "\f072";
|
879
774
|
}
|
880
|
-
|
881
775
|
i.icon.magnet:before {
|
882
776
|
content: "\f076";
|
883
777
|
}
|
884
|
-
|
885
|
-
|
886
|
-
content: "\f003";
|
778
|
+
i.icon.legal:before {
|
779
|
+
content: "\f0e3";
|
887
780
|
}
|
888
|
-
|
889
|
-
|
890
|
-
content: "\f112";
|
781
|
+
i.icon.lemon:before {
|
782
|
+
content: "\f094";
|
891
783
|
}
|
892
|
-
|
893
|
-
|
894
|
-
content: "\f0e0";
|
784
|
+
i.icon.world:before {
|
785
|
+
content: "\f0ac";
|
895
786
|
}
|
896
|
-
|
897
|
-
|
898
|
-
content: "\f183";
|
787
|
+
i.icon.travel:before {
|
788
|
+
content: "\f0b1";
|
899
789
|
}
|
900
|
-
|
901
|
-
|
902
|
-
content: "\f041";
|
790
|
+
i.icon.shipping:before {
|
791
|
+
content: "\f0d1";
|
903
792
|
}
|
904
|
-
|
905
|
-
|
906
|
-
content: "\f14e";
|
793
|
+
i.icon.money:before {
|
794
|
+
content: "\f0d6";
|
907
795
|
}
|
908
|
-
|
909
|
-
|
910
|
-
content: "\f136";
|
796
|
+
i.icon.lightning:before {
|
797
|
+
content: "\f0e7";
|
911
798
|
}
|
912
|
-
|
913
|
-
|
914
|
-
content: "\f0fa";
|
799
|
+
i.icon.rain:before {
|
800
|
+
content: "\f0e9";
|
915
801
|
}
|
916
|
-
|
917
|
-
|
918
|
-
content: "\f11a";
|
802
|
+
i.icon.treatment:before {
|
803
|
+
content: "\f0f1";
|
919
804
|
}
|
920
|
-
|
921
|
-
|
922
|
-
content: "\f146";
|
805
|
+
i.icon.suitcase:before {
|
806
|
+
content: "\f0f2";
|
923
807
|
}
|
924
|
-
|
925
|
-
|
926
|
-
content: "\f056";
|
808
|
+
i.icon.bar:before {
|
809
|
+
content: "\f0fc";
|
927
810
|
}
|
928
|
-
|
929
|
-
|
930
|
-
content: "\f068";
|
811
|
+
i.icon.flag.outline:before {
|
812
|
+
content: "\f11d";
|
931
813
|
}
|
932
|
-
|
933
|
-
|
934
|
-
content: "\f10b";
|
814
|
+
i.icon.flag.checkered:before {
|
815
|
+
content: "\f11e";
|
935
816
|
}
|
936
|
-
|
937
|
-
|
938
|
-
content: "\f0d6";
|
817
|
+
i.icon.puzzle:before {
|
818
|
+
content: "\f12e";
|
939
819
|
}
|
940
|
-
|
941
|
-
|
942
|
-
content: "\f186";
|
820
|
+
i.icon.fire.extinguisher:before {
|
821
|
+
content: "\f134";
|
943
822
|
}
|
944
|
-
|
945
|
-
|
946
|
-
content: "\f047";
|
823
|
+
i.icon.rocket:before {
|
824
|
+
content: "\f135";
|
947
825
|
}
|
948
|
-
|
949
|
-
|
950
|
-
content: "\f001";
|
826
|
+
i.icon.anchor:before {
|
827
|
+
content: "\f13d";
|
951
828
|
}
|
952
|
-
|
953
|
-
|
954
|
-
content: "\f131";
|
829
|
+
i.icon.bullseye:before {
|
830
|
+
content: "\f140";
|
955
831
|
}
|
956
|
-
|
957
|
-
|
958
|
-
content: "\f011";
|
832
|
+
i.icon.sun:before {
|
833
|
+
content: "\f185";
|
959
834
|
}
|
960
|
-
|
961
|
-
|
962
|
-
content: "\f05d";
|
835
|
+
i.icon.moon:before {
|
836
|
+
content: "\f186";
|
963
837
|
}
|
964
|
-
|
965
|
-
|
966
|
-
content: "\f058";
|
838
|
+
i.icon.fax:before {
|
839
|
+
content: "\f1ac";
|
967
840
|
}
|
968
|
-
|
969
|
-
|
970
|
-
content: "\f0ea";
|
841
|
+
i.icon.life.ring:before {
|
842
|
+
content: "\f1cd";
|
971
843
|
}
|
972
|
-
|
973
|
-
|
974
|
-
content: "\f04c";
|
844
|
+
i.icon.bomb:before {
|
845
|
+
content: "\f1e2";
|
975
846
|
}
|
976
847
|
|
977
|
-
|
978
|
-
|
848
|
+
/* Shapes */
|
849
|
+
i.icon.crosshairs:before {
|
850
|
+
content: "\f05b";
|
979
851
|
}
|
980
|
-
|
981
|
-
|
982
|
-
content: "\f040";
|
852
|
+
i.icon.asterisk:before {
|
853
|
+
content: "\f069";
|
983
854
|
}
|
984
|
-
|
985
|
-
|
986
|
-
content: "\f098";
|
855
|
+
i.icon.certificate:before {
|
856
|
+
content: "\f0a3";
|
987
857
|
}
|
988
|
-
|
989
|
-
|
990
|
-
content: "\f095";
|
858
|
+
i.icon.circle:before {
|
859
|
+
content: "\f111";
|
991
860
|
}
|
992
|
-
|
993
|
-
|
994
|
-
content: "\f03e";
|
861
|
+
i.icon.quote.left:before {
|
862
|
+
content: "\f10d";
|
995
863
|
}
|
996
|
-
|
997
|
-
|
998
|
-
content: "\f08d";
|
864
|
+
i.icon.quote.right:before {
|
865
|
+
content: "\f10e";
|
999
866
|
}
|
1000
|
-
|
1001
|
-
|
1002
|
-
content: "\f0d3";
|
867
|
+
i.icon.ellipsis.horizontal:before {
|
868
|
+
content: "\f141";
|
1003
869
|
}
|
1004
|
-
|
1005
|
-
|
1006
|
-
content: "\f0d2";
|
870
|
+
i.icon.ellipsis.vertical:before {
|
871
|
+
content: "\f142";
|
1007
872
|
}
|
1008
|
-
|
1009
|
-
|
1010
|
-
content: "\f072";
|
873
|
+
i.icon.cube:before {
|
874
|
+
content: "\f1b2";
|
1011
875
|
}
|
1012
|
-
|
1013
|
-
|
1014
|
-
content: "\f01d";
|
876
|
+
i.icon.cubes:before {
|
877
|
+
content: "\f1b3";
|
1015
878
|
}
|
1016
|
-
|
1017
|
-
|
1018
|
-
content: "\f144";
|
879
|
+
i.icon.circle.notched:before {
|
880
|
+
content: "\f1ce";
|
1019
881
|
}
|
1020
|
-
|
1021
|
-
|
1022
|
-
content: "\f04b";
|
882
|
+
i.icon.circle.thin:before {
|
883
|
+
content: "\f1db";
|
1023
884
|
}
|
1024
885
|
|
1025
|
-
|
1026
|
-
|
886
|
+
/* Item Selection */
|
887
|
+
i.icon.checkmark:before {
|
888
|
+
content: "\f00c";
|
1027
889
|
}
|
1028
|
-
|
1029
|
-
|
1030
|
-
content: "\f02f";
|
890
|
+
i.icon.remove:before {
|
891
|
+
content: "\f00d";
|
1031
892
|
}
|
1032
|
-
|
1033
|
-
|
1034
|
-
content: "\f12e";
|
893
|
+
i.icon.checkmark.box:before {
|
894
|
+
content: "\f046";
|
1035
895
|
}
|
1036
|
-
|
1037
|
-
|
1038
|
-
content: "\f029";
|
896
|
+
i.icon.move:before {
|
897
|
+
content: "\f047";
|
1039
898
|
}
|
1040
|
-
|
1041
|
-
|
1042
|
-
content: "\f128";
|
899
|
+
i.icon.add.circle:before {
|
900
|
+
content: "\f055";
|
1043
901
|
}
|
1044
|
-
|
1045
|
-
|
1046
|
-
content: "\f10d";
|
902
|
+
i.icon.minus.circle:before {
|
903
|
+
content: "\f056";
|
1047
904
|
}
|
1048
|
-
|
1049
|
-
|
1050
|
-
content: "\f10e";
|
905
|
+
i.icon.remove.circle:before {
|
906
|
+
content: "\f057";
|
1051
907
|
}
|
1052
|
-
|
1053
|
-
|
1054
|
-
content: "\f021";
|
908
|
+
i.icon.check.circle:before {
|
909
|
+
content: "\f058";
|
1055
910
|
}
|
1056
|
-
|
1057
|
-
i.icon.remove.circle:before {
|
911
|
+
i.icon.remove.circle.outline:before {
|
1058
912
|
content: "\f05c";
|
1059
913
|
}
|
1060
|
-
|
1061
|
-
|
1062
|
-
content: "\f057";
|
914
|
+
i.icon.check.circle.outline:before {
|
915
|
+
content: "\f05d";
|
1063
916
|
}
|
1064
|
-
|
1065
|
-
|
1066
|
-
content: "\f00d";
|
917
|
+
i.icon.plus:before {
|
918
|
+
content: "\f067";
|
1067
919
|
}
|
1068
|
-
|
1069
|
-
|
1070
|
-
content: "\f18b";
|
920
|
+
i.icon.minus:before {
|
921
|
+
content: "\f068";
|
1071
922
|
}
|
1072
|
-
|
1073
|
-
|
1074
|
-
content: "\f0c9";
|
923
|
+
i.icon.add.square:before {
|
924
|
+
content: "\f0fe";
|
1075
925
|
}
|
1076
|
-
|
1077
|
-
|
1078
|
-
content: "\f01e";
|
926
|
+
i.icon.radio:before {
|
927
|
+
content: "\f10c";
|
1079
928
|
}
|
1080
|
-
|
1081
|
-
|
1082
|
-
content: "\f122";
|
929
|
+
i.icon.selected.radio:before {
|
930
|
+
content: "\f192";
|
1083
931
|
}
|
1084
|
-
|
1085
|
-
|
1086
|
-
content: "\f065";
|
932
|
+
i.icon.minus.square:before {
|
933
|
+
content: "\f146";
|
1087
934
|
}
|
1088
|
-
|
1089
|
-
|
1090
|
-
content: "\f07e";
|
935
|
+
i.icon.minus.square.outline:before {
|
936
|
+
content: "\f147";
|
1091
937
|
}
|
1092
|
-
|
1093
|
-
|
1094
|
-
content: "\f066";
|
938
|
+
i.icon.check.square:before {
|
939
|
+
content: "\f14a";
|
1095
940
|
}
|
1096
|
-
|
1097
|
-
|
1098
|
-
content: "\f07d";
|
941
|
+
i.icon.plus.square.outline:before {
|
942
|
+
content: "\f196";
|
1099
943
|
}
|
1100
944
|
|
1101
|
-
|
1102
|
-
|
945
|
+
/* Media */
|
946
|
+
i.icon.film:before {
|
947
|
+
content: "\f008";
|
1103
948
|
}
|
1104
|
-
|
1105
|
-
|
1106
|
-
content: "\f018";
|
949
|
+
i.icon.sound:before {
|
950
|
+
content: "\f025";
|
1107
951
|
}
|
1108
|
-
|
1109
|
-
|
1110
|
-
content: "\f135";
|
952
|
+
i.icon.photo:before {
|
953
|
+
content: "\f030";
|
1111
954
|
}
|
1112
|
-
|
1113
|
-
|
1114
|
-
content: "\f143";
|
955
|
+
i.icon.bar.chart:before {
|
956
|
+
content: "\f080";
|
1115
957
|
}
|
1116
|
-
|
1117
|
-
|
1118
|
-
content: "\f09e";
|
958
|
+
i.icon.camera.retro:before {
|
959
|
+
content: "\f083";
|
1119
960
|
}
|
1120
961
|
|
1121
|
-
|
1122
|
-
|
962
|
+
/* Pointers */
|
963
|
+
i.icon.arrow.circle.outline.down:before {
|
964
|
+
content: "\f01a";
|
1123
965
|
}
|
1124
|
-
|
1125
|
-
|
1126
|
-
content: "\f0c7";
|
966
|
+
i.icon.arrow.circle.outline.up:before {
|
967
|
+
content: "\f01b";
|
1127
968
|
}
|
1128
|
-
|
1129
|
-
|
1130
|
-
content: "\f05b";
|
969
|
+
i.icon.chevron.left:before {
|
970
|
+
content: "\f053";
|
1131
971
|
}
|
1132
|
-
|
1133
|
-
|
1134
|
-
content: "\f002";
|
972
|
+
i.icon.chevron.right:before {
|
973
|
+
content: "\f054";
|
1135
974
|
}
|
1136
|
-
|
1137
|
-
|
1138
|
-
content: "\f013";
|
975
|
+
i.icon.arrow.left:before {
|
976
|
+
content: "\f060";
|
1139
977
|
}
|
1140
|
-
|
1141
|
-
|
1142
|
-
content: "\f085";
|
978
|
+
i.icon.arrow.right:before {
|
979
|
+
content: "\f061";
|
1143
980
|
}
|
1144
|
-
|
1145
|
-
|
1146
|
-
content: "\f14d";
|
981
|
+
i.icon.arrow.up:before {
|
982
|
+
content: "\f062";
|
1147
983
|
}
|
1148
|
-
|
1149
|
-
|
1150
|
-
content: "\f045";
|
984
|
+
i.icon.arrow.down:before {
|
985
|
+
content: "\f063";
|
1151
986
|
}
|
1152
|
-
|
1153
|
-
|
1154
|
-
content: "\f132";
|
987
|
+
i.icon.chevron.up:before {
|
988
|
+
content: "\f077";
|
1155
989
|
}
|
1156
|
-
|
1157
|
-
|
1158
|
-
content: "\f074";
|
990
|
+
i.icon.chevron.down:before {
|
991
|
+
content: "\f078";
|
1159
992
|
}
|
1160
|
-
|
1161
|
-
|
1162
|
-
content: "\f090";
|
993
|
+
i.icon.pointing.right:before {
|
994
|
+
content: "\f0a4";
|
1163
995
|
}
|
1164
|
-
|
1165
|
-
|
1166
|
-
content: "\f08b";
|
996
|
+
i.icon.pointing.left:before {
|
997
|
+
content: "\f0a5";
|
1167
998
|
}
|
1168
|
-
|
1169
|
-
|
1170
|
-
content: "\f0c8";
|
999
|
+
i.icon.pointing.up:before {
|
1000
|
+
content: "\f0a6";
|
1171
1001
|
}
|
1172
|
-
|
1173
|
-
|
1174
|
-
content: "\f012";
|
1002
|
+
i.icon.pointing.down:before {
|
1003
|
+
content: "\f0a7";
|
1175
1004
|
}
|
1176
|
-
|
1177
|
-
|
1178
|
-
content: "\f0e8";
|
1005
|
+
i.icon.arrow.circle.left:before {
|
1006
|
+
content: "\f0a8";
|
1179
1007
|
}
|
1180
|
-
|
1181
|
-
|
1182
|
-
content: "\f17e";
|
1008
|
+
i.icon.arrow.circle.right:before {
|
1009
|
+
content: "\f0a9";
|
1183
1010
|
}
|
1184
|
-
|
1185
|
-
|
1186
|
-
content: "\f118";
|
1011
|
+
i.icon.arrow.circle.up:before {
|
1012
|
+
content: "\f0aa";
|
1187
1013
|
}
|
1188
|
-
|
1189
|
-
|
1190
|
-
content: "\f0de";
|
1014
|
+
i.icon.arrow.circle.down:before {
|
1015
|
+
content: "\f0ab";
|
1191
1016
|
}
|
1192
|
-
|
1193
|
-
|
1194
|
-
content: "\f0dd";
|
1017
|
+
i.icon.caret.down:before {
|
1018
|
+
content: "\f0d7";
|
1195
1019
|
}
|
1196
|
-
|
1197
|
-
|
1198
|
-
content: "\f15e";
|
1020
|
+
i.icon.caret.up:before {
|
1021
|
+
content: "\f0d8";
|
1199
1022
|
}
|
1200
|
-
|
1201
|
-
|
1202
|
-
content: "\f15d";
|
1023
|
+
i.icon.caret.left:before {
|
1024
|
+
content: "\f0d9";
|
1203
1025
|
}
|
1204
|
-
|
1205
|
-
|
1206
|
-
content: "\f161";
|
1026
|
+
i.icon.caret.right:before {
|
1027
|
+
content: "\f0da";
|
1207
1028
|
}
|
1208
|
-
|
1209
|
-
|
1210
|
-
content: "\f160";
|
1029
|
+
i.icon.angle.double.left:before {
|
1030
|
+
content: "\f100";
|
1211
1031
|
}
|
1212
|
-
|
1213
|
-
|
1214
|
-
content: "\f163";
|
1032
|
+
i.icon.angle.double.right:before {
|
1033
|
+
content: "\f101";
|
1215
1034
|
}
|
1216
|
-
|
1217
|
-
|
1218
|
-
content: "\f162";
|
1035
|
+
i.icon.angle.double.up:before {
|
1036
|
+
content: "\f102";
|
1219
1037
|
}
|
1220
|
-
|
1221
|
-
|
1222
|
-
content: "\f0dc";
|
1038
|
+
i.icon.angle.double.down:before {
|
1039
|
+
content: "\f103";
|
1223
1040
|
}
|
1224
|
-
|
1225
|
-
|
1226
|
-
content: "\f16c";
|
1041
|
+
i.icon.angle.left:before {
|
1042
|
+
content: "\f104";
|
1227
1043
|
}
|
1228
|
-
|
1229
|
-
|
1230
|
-
content: "\f006";
|
1044
|
+
i.icon.angle.right:before {
|
1045
|
+
content: "\f105";
|
1231
1046
|
}
|
1232
|
-
|
1233
|
-
|
1234
|
-
content: "\f123";
|
1047
|
+
i.icon.angle.up:before {
|
1048
|
+
content: "\f106";
|
1235
1049
|
}
|
1236
|
-
|
1237
|
-
|
1238
|
-
i.icon.star.half:before {
|
1239
|
-
content: "\f089";
|
1050
|
+
i.icon.angle.down:before {
|
1051
|
+
content: "\f107";
|
1240
1052
|
}
|
1241
|
-
|
1242
|
-
|
1243
|
-
content: "\f005";
|
1053
|
+
i.icon.chevron.circle.left:before {
|
1054
|
+
content: "\f137";
|
1244
1055
|
}
|
1245
|
-
|
1246
|
-
|
1247
|
-
content: "\f048";
|
1056
|
+
i.icon.chevron.circle.right:before {
|
1057
|
+
content: "\f138";
|
1248
1058
|
}
|
1249
|
-
|
1250
|
-
|
1251
|
-
content: "\f051";
|
1059
|
+
i.icon.chevron.circle.up:before {
|
1060
|
+
content: "\f139";
|
1252
1061
|
}
|
1253
|
-
|
1254
|
-
|
1255
|
-
content: "\f0f1";
|
1062
|
+
i.icon.chevron.circle.down:before {
|
1063
|
+
content: "\f13a";
|
1256
1064
|
}
|
1257
|
-
|
1258
|
-
|
1259
|
-
content: "\f04d";
|
1065
|
+
i.icon.toggle.down:before {
|
1066
|
+
content: "\f150";
|
1260
1067
|
}
|
1261
|
-
|
1262
|
-
|
1263
|
-
content: "\f0cc";
|
1068
|
+
i.icon.toggle.up:before {
|
1069
|
+
content: "\f151";
|
1264
1070
|
}
|
1265
|
-
|
1266
|
-
|
1267
|
-
content: "\f12c";
|
1071
|
+
i.icon.toggle.right:before {
|
1072
|
+
content: "\f152";
|
1268
1073
|
}
|
1269
|
-
|
1270
|
-
|
1271
|
-
content: "\f0f2";
|
1074
|
+
i.icon.long.arrow.down:before {
|
1075
|
+
content: "\f175";
|
1272
1076
|
}
|
1273
|
-
|
1274
|
-
|
1275
|
-
content: "\f185";
|
1077
|
+
i.icon.long.arrow.up:before {
|
1078
|
+
content: "\f176";
|
1276
1079
|
}
|
1277
|
-
|
1278
|
-
|
1279
|
-
content: "\f12b";
|
1080
|
+
i.icon.long.arrow.left:before {
|
1081
|
+
content: "\f177";
|
1280
1082
|
}
|
1281
|
-
|
1282
|
-
|
1283
|
-
content: "\f0ce";
|
1083
|
+
i.icon.long.arrow.right:before {
|
1084
|
+
content: "\f178";
|
1284
1085
|
}
|
1285
|
-
|
1286
|
-
|
1287
|
-
content: "\f10a";
|
1086
|
+
i.icon.arrow.circle.outline.right:before {
|
1087
|
+
content: "\f18e";
|
1288
1088
|
}
|
1289
|
-
|
1290
|
-
|
1291
|
-
content: "\f02b";
|
1089
|
+
i.icon.arrow.circle.outline.left:before {
|
1090
|
+
content: "\f190";
|
1292
1091
|
}
|
1293
|
-
|
1294
|
-
|
1295
|
-
content: "\f02c";
|
1092
|
+
i.icon.toggle.left:before {
|
1093
|
+
content: "\f191";
|
1296
1094
|
}
|
1297
1095
|
|
1298
|
-
|
1299
|
-
|
1096
|
+
/* Computer */
|
1097
|
+
i.icon.power:before {
|
1098
|
+
content: "\f011";
|
1300
1099
|
}
|
1301
|
-
|
1302
|
-
|
1303
|
-
content: "\f120";
|
1100
|
+
i.icon.trash:before {
|
1101
|
+
content: "\f014";
|
1304
1102
|
}
|
1305
|
-
|
1306
|
-
|
1307
|
-
content: "\f034";
|
1103
|
+
i.icon.disk.outline:before {
|
1104
|
+
content: "\f0a0";
|
1308
1105
|
}
|
1309
|
-
|
1310
|
-
|
1311
|
-
content: "\f035";
|
1106
|
+
i.icon.desktop:before {
|
1107
|
+
content: "\f108";
|
1312
1108
|
}
|
1313
|
-
|
1314
|
-
|
1315
|
-
content: "\f088";
|
1109
|
+
i.icon.laptop:before {
|
1110
|
+
content: "\f109";
|
1316
1111
|
}
|
1317
|
-
|
1318
|
-
|
1319
|
-
content: "\f165";
|
1112
|
+
i.icon.tablet:before {
|
1113
|
+
content: "\f10a";
|
1320
1114
|
}
|
1321
|
-
|
1322
|
-
|
1323
|
-
content: "\f087";
|
1115
|
+
i.icon.mobile:before {
|
1116
|
+
content: "\f10b";
|
1324
1117
|
}
|
1325
|
-
|
1326
|
-
|
1327
|
-
content: "\f164";
|
1118
|
+
i.icon.game:before {
|
1119
|
+
content: "\f11b";
|
1328
1120
|
}
|
1329
|
-
|
1330
|
-
|
1331
|
-
content: "\f145";
|
1121
|
+
i.icon.keyboard:before {
|
1122
|
+
content: "\f11c";
|
1332
1123
|
}
|
1333
1124
|
|
1334
|
-
|
1335
|
-
|
1125
|
+
/* File System */
|
1126
|
+
i.icon.folder:before {
|
1127
|
+
content: "\f07b";
|
1336
1128
|
}
|
1337
|
-
|
1338
|
-
|
1339
|
-
content: "\f043";
|
1129
|
+
i.icon.folder.open:before {
|
1130
|
+
content: "\f07c";
|
1340
1131
|
}
|
1341
|
-
|
1342
|
-
|
1343
|
-
content: "\f014";
|
1132
|
+
i.icon.level.up:before {
|
1133
|
+
content: "\f148";
|
1344
1134
|
}
|
1345
|
-
|
1346
|
-
|
1347
|
-
content: "\f181";
|
1135
|
+
i.icon.level.down:before {
|
1136
|
+
content: "\f149";
|
1348
1137
|
}
|
1349
|
-
|
1350
|
-
|
1351
|
-
content: "\f091";
|
1138
|
+
i.icon.file:before {
|
1139
|
+
content: "\f15b";
|
1352
1140
|
}
|
1353
|
-
|
1354
|
-
|
1355
|
-
content: "\f0d1";
|
1141
|
+
i.icon.file.outline:before {
|
1142
|
+
content: "\f016";
|
1356
1143
|
}
|
1357
|
-
|
1358
|
-
|
1359
|
-
content: "\f174";
|
1144
|
+
i.icon.file.text:before {
|
1145
|
+
content: "\f15c";
|
1360
1146
|
}
|
1361
|
-
|
1362
|
-
|
1363
|
-
content: "\f173";
|
1147
|
+
i.icon.file.text.outline:before {
|
1148
|
+
content: "\f0f6";
|
1364
1149
|
}
|
1365
|
-
|
1366
|
-
|
1367
|
-
content: "\f081";
|
1150
|
+
i.icon.folder.outline:before {
|
1151
|
+
content: "\f114";
|
1368
1152
|
}
|
1369
|
-
|
1370
|
-
|
1371
|
-
content: "\f099";
|
1153
|
+
i.icon.folder.open.outline:before {
|
1154
|
+
content: "\f115";
|
1372
1155
|
}
|
1373
|
-
|
1374
|
-
|
1375
|
-
content: "\f0e9";
|
1156
|
+
i.icon.file.pdf.outline:before {
|
1157
|
+
content: "\f1c1";
|
1376
1158
|
}
|
1377
|
-
|
1378
|
-
|
1379
|
-
content: "\f0cd";
|
1159
|
+
i.icon.file.word.outline:before {
|
1160
|
+
content: "\f1c2";
|
1380
1161
|
}
|
1381
|
-
|
1382
|
-
|
1383
|
-
content: "\f0e2";
|
1162
|
+
i.icon.file.excel.outline:before {
|
1163
|
+
content: "\f1c3";
|
1384
1164
|
}
|
1385
|
-
|
1386
|
-
|
1387
|
-
content: "\f06e";
|
1165
|
+
i.icon.file.powerpoint.outline:before {
|
1166
|
+
content: "\f1c4";
|
1388
1167
|
}
|
1389
|
-
|
1390
|
-
|
1391
|
-
content: "\f127";
|
1168
|
+
i.icon.file.image.outline:before {
|
1169
|
+
content: "\f1c5";
|
1392
1170
|
}
|
1393
|
-
|
1394
|
-
|
1395
|
-
content: "\f13e";
|
1171
|
+
i.icon.file.archive.outline:before {
|
1172
|
+
content: "\f1c6";
|
1396
1173
|
}
|
1397
|
-
|
1398
|
-
|
1399
|
-
content: "\f09c";
|
1174
|
+
i.icon.file.audio.outline:before {
|
1175
|
+
content: "\f1c7";
|
1400
1176
|
}
|
1401
|
-
|
1402
|
-
|
1403
|
-
content: "\f130";
|
1177
|
+
i.icon.file.video.outline:before {
|
1178
|
+
content: "\f1c8";
|
1404
1179
|
}
|
1405
|
-
|
1406
|
-
|
1407
|
-
content: "\f062";
|
1180
|
+
i.icon.file.code.outline:before {
|
1181
|
+
content: "\f1c9";
|
1408
1182
|
}
|
1409
1183
|
|
1410
|
-
|
1411
|
-
|
1184
|
+
/* Technologies */
|
1185
|
+
i.icon.barcode:before {
|
1186
|
+
content: "\f02a";
|
1412
1187
|
}
|
1413
|
-
|
1414
|
-
|
1415
|
-
content: "\f01b";
|
1188
|
+
i.icon.qrcode:before {
|
1189
|
+
content: "\f029";
|
1416
1190
|
}
|
1417
|
-
|
1418
|
-
|
1419
|
-
content: "\f0c1";
|
1191
|
+
i.icon.fork:before {
|
1192
|
+
content: "\f126";
|
1420
1193
|
}
|
1421
|
-
|
1422
|
-
|
1423
|
-
content: "\f007";
|
1194
|
+
i.icon.html5:before {
|
1195
|
+
content: "\f13b";
|
1424
1196
|
}
|
1425
|
-
|
1426
|
-
|
1427
|
-
content: "\f0c0";
|
1197
|
+
i.icon.css3:before {
|
1198
|
+
content: "\f13c";
|
1428
1199
|
}
|
1429
|
-
|
1430
|
-
|
1431
|
-
content: "\f008";
|
1200
|
+
i.icon.rss.square:before {
|
1201
|
+
content: "\f143";
|
1432
1202
|
}
|
1433
|
-
|
1434
|
-
|
1435
|
-
content: "\f189";
|
1203
|
+
i.icon.openid:before {
|
1204
|
+
content: "\f19b";
|
1436
1205
|
}
|
1437
|
-
|
1438
|
-
|
1439
|
-
content: "\f027";
|
1206
|
+
i.icon.database:before {
|
1207
|
+
content: "\f1c0";
|
1440
1208
|
}
|
1441
1209
|
|
1442
|
-
|
1443
|
-
|
1210
|
+
/* Rating */
|
1211
|
+
i.icon.heart:before {
|
1212
|
+
content: "\f004";
|
1444
1213
|
}
|
1445
|
-
|
1446
|
-
|
1447
|
-
content: "\f028";
|
1214
|
+
i.icon.star:before {
|
1215
|
+
content: "\f005";
|
1448
1216
|
}
|
1449
|
-
|
1450
|
-
|
1451
|
-
content: "\f071";
|
1217
|
+
i.icon.empty.star:before {
|
1218
|
+
content: "\f006";
|
1452
1219
|
}
|
1453
|
-
|
1454
|
-
|
1455
|
-
content: "\f18a";
|
1220
|
+
i.icon.thumbs.outline.up:before {
|
1221
|
+
content: "\f087";
|
1456
1222
|
}
|
1457
|
-
|
1458
|
-
|
1459
|
-
content: "\f17a";
|
1223
|
+
i.icon.thumbs.outline.down:before {
|
1224
|
+
content: "\f088";
|
1460
1225
|
}
|
1461
|
-
|
1462
|
-
|
1463
|
-
content: "\f159";
|
1226
|
+
i.icon.star.half:before {
|
1227
|
+
content: "\f089";
|
1464
1228
|
}
|
1465
|
-
|
1466
|
-
|
1467
|
-
content: "\f0ad";
|
1229
|
+
i.icon.empty.heart:before {
|
1230
|
+
content: "\f08a";
|
1468
1231
|
}
|
1469
|
-
|
1470
|
-
|
1471
|
-
content: "\f169";
|
1232
|
+
i.icon.smile:before {
|
1233
|
+
content: "\f118";
|
1472
1234
|
}
|
1473
|
-
|
1474
|
-
|
1475
|
-
content: "\f168";
|
1235
|
+
i.icon.frown:before {
|
1236
|
+
content: "\f119";
|
1476
1237
|
}
|
1477
|
-
|
1478
|
-
|
1479
|
-
content: "\f157";
|
1238
|
+
i.icon.meh:before {
|
1239
|
+
content: "\f11a";
|
1480
1240
|
}
|
1481
|
-
|
1482
|
-
|
1483
|
-
content: "\f16a";
|
1241
|
+
i.icon.star.half.empty:before {
|
1242
|
+
content: "\f123";
|
1484
1243
|
}
|
1485
|
-
|
1486
|
-
|
1487
|
-
content: "\f166";
|
1244
|
+
i.icon.thumbs.up:before {
|
1245
|
+
content: "\f164";
|
1488
1246
|
}
|
1489
|
-
|
1490
|
-
|
1491
|
-
content: "\f167";
|
1247
|
+
i.icon.thumbs.down:before {
|
1248
|
+
content: "\f165";
|
1492
1249
|
}
|
1493
1250
|
|
1494
|
-
|
1495
|
-
|
1251
|
+
/* Audio */
|
1252
|
+
i.icon.music:before {
|
1253
|
+
content: "\f001";
|
1496
1254
|
}
|
1497
|
-
|
1498
|
-
|
1499
|
-
content: "\f00e";
|
1255
|
+
i.icon.video.play.outline:before {
|
1256
|
+
content: "\f01d";
|
1500
1257
|
}
|
1501
|
-
|
1502
|
-
|
1503
|
-
content: "\f010";
|
1258
|
+
i.icon.volume.off:before {
|
1259
|
+
content: "\f026";
|
1504
1260
|
}
|
1505
|
-
|
1506
|
-
|
1507
|
-
Aliases
|
1508
|
-
---------------*/
|
1509
|
-
|
1510
|
-
i.icon.check:before {
|
1511
|
-
content: "\f00c";
|
1261
|
+
i.icon.volume.down:before {
|
1262
|
+
content: "\f027";
|
1512
1263
|
}
|
1513
|
-
|
1514
|
-
|
1515
|
-
content: "\f00d";
|
1264
|
+
i.icon.volume.up:before {
|
1265
|
+
content: "\f028";
|
1516
1266
|
}
|
1517
|
-
|
1518
|
-
|
1519
|
-
content: "\f00d";
|
1267
|
+
i.icon.record:before {
|
1268
|
+
content: "\f03d";
|
1520
1269
|
}
|
1521
|
-
|
1522
|
-
|
1523
|
-
content: "\f004";
|
1270
|
+
i.icon.step.backward:before {
|
1271
|
+
content: "\f048";
|
1524
1272
|
}
|
1525
|
-
|
1526
|
-
|
1527
|
-
content: "\f067";
|
1273
|
+
i.icon.fast.backward:before {
|
1274
|
+
content: "\f049";
|
1528
1275
|
}
|
1529
|
-
|
1530
|
-
|
1531
|
-
content: "\f044";
|
1276
|
+
i.icon.backward:before {
|
1277
|
+
content: "\f04a";
|
1532
1278
|
}
|
1533
|
-
|
1534
|
-
|
1535
|
-
Spacing Fix
|
1536
|
-
---------------*/
|
1537
|
-
|
1538
|
-
/* stars are usually consecutive */
|
1539
|
-
|
1540
|
-
i.icon.star {
|
1541
|
-
width: auto;
|
1542
|
-
margin: 0em;
|
1279
|
+
i.icon.play:before {
|
1280
|
+
content: "\f04b";
|
1543
1281
|
}
|
1544
|
-
|
1545
|
-
|
1546
|
-
|
1547
|
-
i.icon.left {
|
1548
|
-
width: auto;
|
1549
|
-
margin: 0em 0.5em 0em 0em;
|
1282
|
+
i.icon.pause:before {
|
1283
|
+
content: "\f04c";
|
1550
1284
|
}
|
1551
|
-
|
1552
|
-
|
1553
|
-
|
1554
|
-
i.icon.search,
|
1555
|
-
i.icon.right {
|
1556
|
-
width: auto;
|
1557
|
-
margin: 0em 0em 0em 0.5em;
|
1285
|
+
i.icon.stop:before {
|
1286
|
+
content: "\f04d";
|
1558
1287
|
}
|
1559
|
-
|
1560
|
-
|
1561
|
-
Types
|
1562
|
-
*******************************/
|
1563
|
-
|
1564
|
-
/*--------------
|
1565
|
-
Loading
|
1566
|
-
---------------*/
|
1567
|
-
|
1568
|
-
i.icon.loading {
|
1569
|
-
-webkit-animation: icon-loading 2s linear infinite;
|
1570
|
-
-ms-animation: icon-loading 2s linear infinite;
|
1571
|
-
animation: icon-loading 2s linear infinite;
|
1288
|
+
i.icon.forward:before {
|
1289
|
+
content: "\f04e";
|
1572
1290
|
}
|
1573
|
-
|
1574
|
-
|
1575
|
-
from {
|
1576
|
-
-webkit-transform: rotate(0deg);
|
1577
|
-
-ms-transform: rotate(0deg);
|
1578
|
-
transform: rotate(0deg);
|
1579
|
-
}
|
1580
|
-
|
1581
|
-
to {
|
1582
|
-
-webkit-transform: rotate(360deg);
|
1583
|
-
-ms-transform: rotate(360deg);
|
1584
|
-
transform: rotate(360deg);
|
1585
|
-
}
|
1291
|
+
i.icon.fast.forward:before {
|
1292
|
+
content: "\f050";
|
1586
1293
|
}
|
1587
|
-
|
1588
|
-
|
1589
|
-
from {
|
1590
|
-
-webkit-transform: rotate(0deg);
|
1591
|
-
transform: rotate(0deg);
|
1592
|
-
}
|
1593
|
-
|
1594
|
-
to {
|
1595
|
-
-webkit-transform: rotate(360deg);
|
1596
|
-
transform: rotate(360deg);
|
1597
|
-
}
|
1294
|
+
i.icon.step.forward:before {
|
1295
|
+
content: "\f051";
|
1598
1296
|
}
|
1599
|
-
|
1600
|
-
|
1601
|
-
from {
|
1602
|
-
-ms-transform: rotate(0deg);
|
1603
|
-
transform: rotate(0deg);
|
1604
|
-
}
|
1605
|
-
|
1606
|
-
to {
|
1607
|
-
-ms-transform: rotate(360deg);
|
1608
|
-
transform: rotate(360deg);
|
1609
|
-
}
|
1297
|
+
i.icon.eject:before {
|
1298
|
+
content: "\f052";
|
1610
1299
|
}
|
1611
|
-
|
1612
|
-
|
1613
|
-
States
|
1614
|
-
*******************************/
|
1615
|
-
|
1616
|
-
i.icon.hover {
|
1617
|
-
opacity: 1;
|
1300
|
+
i.icon.unmute:before {
|
1301
|
+
content: "\f130";
|
1618
1302
|
}
|
1619
|
-
|
1620
|
-
|
1621
|
-
opacity: 1;
|
1303
|
+
i.icon.mute:before {
|
1304
|
+
content: "\f131";
|
1622
1305
|
}
|
1623
|
-
|
1624
|
-
|
1625
|
-
opacity: 1;
|
1306
|
+
i.icon.video.play:before {
|
1307
|
+
content: "\f144";
|
1626
1308
|
}
|
1627
1309
|
|
1628
|
-
|
1629
|
-
|
1310
|
+
/* Map & Locations */
|
1311
|
+
i.icon.marker:before {
|
1312
|
+
content: "\f041";
|
1630
1313
|
}
|
1631
|
-
|
1632
|
-
|
1633
|
-
Variations
|
1634
|
-
*******************************/
|
1635
|
-
|
1636
|
-
/*-------------------
|
1637
|
-
Link
|
1638
|
-
--------------------*/
|
1639
|
-
|
1640
|
-
i.link.icon {
|
1641
|
-
cursor: pointer;
|
1642
|
-
opacity: 0.7;
|
1643
|
-
-webkit-transition: opacity 0.3s ease-out;
|
1644
|
-
transition: opacity 0.3s ease-out;
|
1314
|
+
i.icon.coffee:before {
|
1315
|
+
content: "\f0f4";
|
1645
1316
|
}
|
1646
|
-
|
1647
|
-
|
1648
|
-
opacity: 1 !important;
|
1317
|
+
i.icon.food:before {
|
1318
|
+
content: "\f0f5";
|
1649
1319
|
}
|
1650
|
-
|
1651
|
-
|
1652
|
-
Circular
|
1653
|
-
--------------------*/
|
1654
|
-
|
1655
|
-
i.circular.icon {
|
1656
|
-
border-radius: 500em !important;
|
1657
|
-
padding: 0.5em 0.35em !important;
|
1658
|
-
-webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
|
1659
|
-
box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
|
1660
|
-
line-height: 1 !important;
|
1661
|
-
width: 2em !important;
|
1662
|
-
height: 2em !important;
|
1320
|
+
i.icon.building.outline:before {
|
1321
|
+
content: "\f0f7";
|
1663
1322
|
}
|
1664
|
-
|
1665
|
-
|
1666
|
-
border: none;
|
1667
|
-
-webkit-box-shadow: none;
|
1668
|
-
box-shadow: none;
|
1323
|
+
i.icon.hospital:before {
|
1324
|
+
content: "\f0f8";
|
1669
1325
|
}
|
1670
|
-
|
1671
|
-
|
1672
|
-
Flipped
|
1673
|
-
--------------------*/
|
1674
|
-
|
1675
|
-
i.flipped.icon,
|
1676
|
-
i.horizontally.flipped.icon {
|
1677
|
-
-webkit-transform: scale(-1, 1);
|
1678
|
-
-ms-transform: scale(-1, 1);
|
1679
|
-
transform: scale(-1, 1);
|
1326
|
+
i.icon.emergency:before {
|
1327
|
+
content: "\f0f9";
|
1680
1328
|
}
|
1681
|
-
|
1682
|
-
|
1683
|
-
-webkit-transform: scale(1, -1);
|
1684
|
-
-ms-transform: scale(1, -1);
|
1685
|
-
transform: scale(1, -1);
|
1329
|
+
i.icon.first.aid:before {
|
1330
|
+
content: "\f0fa";
|
1686
1331
|
}
|
1687
|
-
|
1688
|
-
|
1689
|
-
Rotated
|
1690
|
-
--------------------*/
|
1691
|
-
|
1692
|
-
i.rotated.icon,
|
1693
|
-
i.right.rotated.icon,
|
1694
|
-
i.clockwise.rotated.icon {
|
1695
|
-
-webkit-transform: rotate(90deg);
|
1696
|
-
-ms-transform: rotate(90deg);
|
1697
|
-
transform: rotate(90deg);
|
1332
|
+
i.icon.military:before {
|
1333
|
+
content: "\f0fb";
|
1698
1334
|
}
|
1699
|
-
|
1700
|
-
|
1701
|
-
i.counterclockwise.rotated.icon {
|
1702
|
-
-webkit-transform: rotate(-90deg);
|
1703
|
-
-ms-transform: rotate(-90deg);
|
1704
|
-
transform: rotate(-90deg);
|
1335
|
+
i.icon.h:before {
|
1336
|
+
content: "\f0fd";
|
1705
1337
|
}
|
1706
|
-
|
1707
|
-
|
1708
|
-
Square
|
1709
|
-
--------------------*/
|
1710
|
-
|
1711
|
-
i.square.icon {
|
1712
|
-
width: 2em;
|
1713
|
-
height: 2em;
|
1714
|
-
padding: 0.5em 0.35em !important;
|
1715
|
-
-webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
|
1716
|
-
box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
|
1717
|
-
vertical-align: baseline;
|
1338
|
+
i.icon.location.arrow:before {
|
1339
|
+
content: "\f124";
|
1718
1340
|
}
|
1719
|
-
|
1720
|
-
|
1721
|
-
border: none;
|
1722
|
-
-webkit-box-shadow: none;
|
1723
|
-
box-shadow: none;
|
1341
|
+
i.icon.space.shuttle:before {
|
1342
|
+
content: "\f197";
|
1724
1343
|
}
|
1725
|
-
|
1726
|
-
|
1727
|
-
Inverted
|
1728
|
-
--------------------*/
|
1729
|
-
|
1730
|
-
i.inverted.icon {
|
1731
|
-
background-color: #222222;
|
1732
|
-
color: #FFFFFF;
|
1733
|
-
-moz-osx-font-smoothing: grayscale;
|
1344
|
+
i.icon.university:before {
|
1345
|
+
content: "\f19c";
|
1734
1346
|
}
|
1735
|
-
|
1736
|
-
|
1737
|
-
Colors
|
1738
|
-
--------------------*/
|
1739
|
-
|
1740
|
-
i.blue.icon {
|
1741
|
-
color: #6ECFF5 !important;
|
1347
|
+
i.icon.building:before {
|
1348
|
+
content: "\f1ad";
|
1742
1349
|
}
|
1743
|
-
|
1744
|
-
|
1745
|
-
color: #5C6166 !important;
|
1350
|
+
i.icon.paw:before {
|
1351
|
+
content: "\f1b0";
|
1746
1352
|
}
|
1747
|
-
|
1748
|
-
|
1749
|
-
color: #A1CF64 !important;
|
1353
|
+
i.icon.spoon:before {
|
1354
|
+
content: "\f1b1";
|
1750
1355
|
}
|
1751
|
-
|
1752
|
-
|
1753
|
-
color: #D95C5C !important;
|
1356
|
+
i.icon.car:before {
|
1357
|
+
content: "\f1b9";
|
1754
1358
|
}
|
1755
|
-
|
1756
|
-
|
1757
|
-
color: #564F8A !important;
|
1359
|
+
i.icon.taxi:before {
|
1360
|
+
content: "\f1ba";
|
1758
1361
|
}
|
1759
|
-
|
1760
|
-
|
1761
|
-
color: #F05940 !important;
|
1362
|
+
i.icon.tree:before {
|
1363
|
+
content: "\f1bb";
|
1762
1364
|
}
|
1763
1365
|
|
1764
|
-
|
1765
|
-
|
1366
|
+
/* Tables */
|
1367
|
+
i.icon.table:before {
|
1368
|
+
content: "\f0ce";
|
1766
1369
|
}
|
1767
|
-
|
1768
|
-
|
1769
|
-
Inverted Colors
|
1770
|
-
--------------------*/
|
1771
|
-
|
1772
|
-
i.inverted.black.icon {
|
1773
|
-
background-color: #5C6166 !important;
|
1774
|
-
color: #FFFFFF !important;
|
1370
|
+
i.icon.columns:before {
|
1371
|
+
content: "\f0db";
|
1775
1372
|
}
|
1776
|
-
|
1777
|
-
|
1778
|
-
background-color: #6ECFF5 !important;
|
1779
|
-
color: #FFFFFF !important;
|
1373
|
+
i.icon.sort:before {
|
1374
|
+
content: "\f0dc";
|
1780
1375
|
}
|
1781
|
-
|
1782
|
-
|
1783
|
-
background-color: #A1CF64 !important;
|
1784
|
-
color: #FFFFFF !important;
|
1376
|
+
i.icon.sort.ascending:before {
|
1377
|
+
content: "\f0dd";
|
1785
1378
|
}
|
1786
|
-
|
1787
|
-
|
1788
|
-
background-color: #D95C5C !important;
|
1789
|
-
color: #FFFFFF !important;
|
1379
|
+
i.icon.sort.descending:before {
|
1380
|
+
content: "\f0de";
|
1790
1381
|
}
|
1791
|
-
|
1792
|
-
|
1793
|
-
background-color: #564F8A !important;
|
1794
|
-
color: #FFFFFF !important;
|
1382
|
+
i.icon.sort.alphabet.ascending:before {
|
1383
|
+
content: "\f15d";
|
1795
1384
|
}
|
1796
|
-
|
1797
|
-
|
1798
|
-
background-color: #F05940 !important;
|
1799
|
-
color: #FFFFFF !important;
|
1385
|
+
i.icon.sort.alphabet.descending:before {
|
1386
|
+
content: "\f15e";
|
1800
1387
|
}
|
1801
|
-
|
1802
|
-
|
1803
|
-
background-color: #00B5AD !important;
|
1804
|
-
color: #FFFFFF !important;
|
1388
|
+
i.icon.sort.content.ascending:before {
|
1389
|
+
content: "\f160";
|
1805
1390
|
}
|
1806
|
-
|
1807
|
-
|
1808
|
-
Sizes
|
1809
|
-
--------------------*/
|
1810
|
-
|
1811
|
-
i.small.icon {
|
1812
|
-
font-size: 0.875em;
|
1391
|
+
i.icon.sort.content.descending:before {
|
1392
|
+
content: "\f161";
|
1813
1393
|
}
|
1814
|
-
|
1815
|
-
|
1816
|
-
font-size: 1em;
|
1394
|
+
i.icon.sort.numeric.ascending:before {
|
1395
|
+
content: "\f162";
|
1817
1396
|
}
|
1818
|
-
|
1819
|
-
|
1820
|
-
font-size: 1.5em;
|
1821
|
-
vertical-align: middle;
|
1397
|
+
i.icon.sort.numeric.descending:before {
|
1398
|
+
content: "\f163";
|
1822
1399
|
}
|
1823
1400
|
|
1824
|
-
|
1825
|
-
|
1826
|
-
|
1401
|
+
/* Text Editor */
|
1402
|
+
i.icon.font:before {
|
1403
|
+
content: "\f031";
|
1827
1404
|
}
|
1828
|
-
|
1829
|
-
|
1830
|
-
font-size: 4em;
|
1831
|
-
vertical-align: middle;
|
1405
|
+
i.icon.bold:before {
|
1406
|
+
content: "\f032";
|
1832
1407
|
}
|
1833
|
-
|
1834
|
-
|
1835
|
-
font-size: 8em;
|
1836
|
-
vertical-align: middle;
|
1408
|
+
i.icon.italic:before {
|
1409
|
+
content: "\f033";
|
1837
1410
|
}
|
1411
|
+
i.icon.text.height:before {
|
1412
|
+
content: "\f034";
|
1413
|
+
}
|
1414
|
+
i.icon.text.width:before {
|
1415
|
+
content: "\f035";
|
1416
|
+
}
|
1417
|
+
i.icon.align.left:before {
|
1418
|
+
content: "\f036";
|
1419
|
+
}
|
1420
|
+
i.icon.align.center:before {
|
1421
|
+
content: "\f037";
|
1422
|
+
}
|
1423
|
+
i.icon.align.right:before {
|
1424
|
+
content: "\f038";
|
1425
|
+
}
|
1426
|
+
i.icon.align.justify:before {
|
1427
|
+
content: "\f039";
|
1428
|
+
}
|
1429
|
+
i.icon.list:before {
|
1430
|
+
content: "\f03a";
|
1431
|
+
}
|
1432
|
+
i.icon.outdent:before {
|
1433
|
+
content: "\f03b";
|
1434
|
+
}
|
1435
|
+
i.icon.indent:before {
|
1436
|
+
content: "\f03c";
|
1437
|
+
}
|
1438
|
+
i.icon.linkify:before {
|
1439
|
+
content: "\f0c1";
|
1440
|
+
}
|
1441
|
+
i.icon.cut:before {
|
1442
|
+
content: "\f0c4";
|
1443
|
+
}
|
1444
|
+
i.icon.copy:before {
|
1445
|
+
content: "\f0c5";
|
1446
|
+
}
|
1447
|
+
i.icon.attach:before {
|
1448
|
+
content: "\f0c6";
|
1449
|
+
}
|
1450
|
+
i.icon.save:before {
|
1451
|
+
content: "\f0c7";
|
1452
|
+
}
|
1453
|
+
i.icon.content:before {
|
1454
|
+
content: "\f0c9";
|
1455
|
+
}
|
1456
|
+
i.icon.unordered.list:before {
|
1457
|
+
content: "\f0ca";
|
1458
|
+
}
|
1459
|
+
i.icon.ordered.list:before {
|
1460
|
+
content: "\f0cb";
|
1461
|
+
}
|
1462
|
+
i.icon.strikethrough:before {
|
1463
|
+
content: "\f0cc";
|
1464
|
+
}
|
1465
|
+
i.icon.underline:before {
|
1466
|
+
content: "\f0cd";
|
1467
|
+
}
|
1468
|
+
i.icon.paste:before {
|
1469
|
+
content: "\f0ea";
|
1470
|
+
}
|
1471
|
+
i.icon.unlink:before {
|
1472
|
+
content: "\f127";
|
1473
|
+
}
|
1474
|
+
i.icon.superscript:before {
|
1475
|
+
content: "\f12b";
|
1476
|
+
}
|
1477
|
+
i.icon.subscript:before {
|
1478
|
+
content: "\f12c";
|
1479
|
+
}
|
1480
|
+
i.icon.header:before {
|
1481
|
+
content: "\f1dc";
|
1482
|
+
}
|
1483
|
+
i.icon.paragraph:before {
|
1484
|
+
content: "\f1dd";
|
1485
|
+
}
|
1486
|
+
|
1487
|
+
/* Currency */
|
1488
|
+
i.icon.euro:before {
|
1489
|
+
content: "\f153";
|
1490
|
+
}
|
1491
|
+
i.icon.pound:before {
|
1492
|
+
content: "\f154";
|
1493
|
+
}
|
1494
|
+
i.icon.dollar:before {
|
1495
|
+
content: "\f155";
|
1496
|
+
}
|
1497
|
+
i.icon.rupee:before {
|
1498
|
+
content: "\f156";
|
1499
|
+
}
|
1500
|
+
i.icon.yen:before {
|
1501
|
+
content: "\f157";
|
1502
|
+
}
|
1503
|
+
i.icon.ruble:before {
|
1504
|
+
content: "\f158";
|
1505
|
+
}
|
1506
|
+
i.icon.won:before {
|
1507
|
+
content: "\f159";
|
1508
|
+
}
|
1509
|
+
i.icon.lira:before {
|
1510
|
+
content: "\f195";
|
1511
|
+
}
|
1512
|
+
/* Networks and Websites*/
|
1513
|
+
i.icon.twitter.square:before {
|
1514
|
+
content: "\f081";
|
1515
|
+
}
|
1516
|
+
i.icon.facebook.square:before {
|
1517
|
+
content: "\f082";
|
1518
|
+
}
|
1519
|
+
i.icon.linkedin.square:before {
|
1520
|
+
content: "\f08c";
|
1521
|
+
}
|
1522
|
+
i.icon.github.square:before {
|
1523
|
+
content: "\f092";
|
1524
|
+
}
|
1525
|
+
i.icon.twitter:before {
|
1526
|
+
content: "\f099";
|
1527
|
+
}
|
1528
|
+
i.icon.facebook:before {
|
1529
|
+
content: "\f09a";
|
1530
|
+
}
|
1531
|
+
i.icon.github:before {
|
1532
|
+
content: "\f09b";
|
1533
|
+
}
|
1534
|
+
i.icon.pinterest:before {
|
1535
|
+
content: "\f0d2";
|
1536
|
+
}
|
1537
|
+
i.icon.pinterest.square:before {
|
1538
|
+
content: "\f0d3";
|
1539
|
+
}
|
1540
|
+
i.icon.google.plus.square:before {
|
1541
|
+
content: "\f0d4";
|
1542
|
+
}
|
1543
|
+
i.icon.google.plus:before {
|
1544
|
+
content: "\f0d5";
|
1545
|
+
}
|
1546
|
+
i.icon.linkedin:before {
|
1547
|
+
content: "\f0e1";
|
1548
|
+
}
|
1549
|
+
i.icon.github.alternate:before {
|
1550
|
+
content: "\f113";
|
1551
|
+
}
|
1552
|
+
i.icon.maxcdn:before {
|
1553
|
+
content: "\f136";
|
1554
|
+
}
|
1555
|
+
i.icon.bitcoin:before {
|
1556
|
+
content: "\f15a";
|
1557
|
+
}
|
1558
|
+
i.icon.youtube.square:before {
|
1559
|
+
content: "\f166";
|
1560
|
+
}
|
1561
|
+
i.icon.youtube:before {
|
1562
|
+
content: "\f167";
|
1563
|
+
}
|
1564
|
+
i.icon.xing:before {
|
1565
|
+
content: "\f168";
|
1566
|
+
}
|
1567
|
+
i.icon.xing.square:before {
|
1568
|
+
content: "\f169";
|
1569
|
+
}
|
1570
|
+
i.icon.youtube.play:before {
|
1571
|
+
content: "\f16a";
|
1572
|
+
}
|
1573
|
+
i.icon.dropbox:before {
|
1574
|
+
content: "\f16b";
|
1575
|
+
}
|
1576
|
+
i.icon.stack.overflow:before {
|
1577
|
+
content: "\f16c";
|
1578
|
+
}
|
1579
|
+
i.icon.instagram:before {
|
1580
|
+
content: "\f16d";
|
1581
|
+
}
|
1582
|
+
i.icon.flickr:before {
|
1583
|
+
content: "\f16e";
|
1584
|
+
}
|
1585
|
+
i.icon.adn:before {
|
1586
|
+
content: "\f170";
|
1587
|
+
}
|
1588
|
+
i.icon.bitbucket:before {
|
1589
|
+
content: "\f171";
|
1590
|
+
}
|
1591
|
+
i.icon.bitbucket.square:before {
|
1592
|
+
content: "\f172";
|
1593
|
+
}
|
1594
|
+
i.icon.tumblr:before {
|
1595
|
+
content: "\f173";
|
1596
|
+
}
|
1597
|
+
i.icon.tumblr.square:before {
|
1598
|
+
content: "\f174";
|
1599
|
+
}
|
1600
|
+
i.icon.apple:before {
|
1601
|
+
content: "\f179";
|
1602
|
+
}
|
1603
|
+
i.icon.windows:before {
|
1604
|
+
content: "\f17a";
|
1605
|
+
}
|
1606
|
+
i.icon.android:before {
|
1607
|
+
content: "\f17b";
|
1608
|
+
}
|
1609
|
+
i.icon.linux:before {
|
1610
|
+
content: "\f17c";
|
1611
|
+
}
|
1612
|
+
i.icon.dribbble:before {
|
1613
|
+
content: "\f17d";
|
1614
|
+
}
|
1615
|
+
i.icon.skype:before {
|
1616
|
+
content: "\f17e";
|
1617
|
+
}
|
1618
|
+
i.icon.foursquare:before {
|
1619
|
+
content: "\f180";
|
1620
|
+
}
|
1621
|
+
i.icon.trello:before {
|
1622
|
+
content: "\f181";
|
1623
|
+
}
|
1624
|
+
i.icon.gittip:before {
|
1625
|
+
content: "\f184";
|
1626
|
+
}
|
1627
|
+
i.icon.vk:before {
|
1628
|
+
content: "\f189";
|
1629
|
+
}
|
1630
|
+
i.icon.weibo:before {
|
1631
|
+
content: "\f18a";
|
1632
|
+
}
|
1633
|
+
i.icon.renren:before {
|
1634
|
+
content: "\f18b";
|
1635
|
+
}
|
1636
|
+
i.icon.pagelines:before {
|
1637
|
+
content: "\f18c";
|
1638
|
+
}
|
1639
|
+
i.icon.stack.exchange:before {
|
1640
|
+
content: "\f18d";
|
1641
|
+
}
|
1642
|
+
i.icon.vimeo:before {
|
1643
|
+
content: "\f194";
|
1644
|
+
}
|
1645
|
+
i.icon.slack:before {
|
1646
|
+
content: "\f198";
|
1647
|
+
}
|
1648
|
+
i.icon.wordpress:before {
|
1649
|
+
content: "\f19a";
|
1650
|
+
}
|
1651
|
+
i.icon.yahoo:before {
|
1652
|
+
content: "\f19e";
|
1653
|
+
}
|
1654
|
+
i.icon.google:before {
|
1655
|
+
content: "\f1a0";
|
1656
|
+
}
|
1657
|
+
i.icon.reddit:before {
|
1658
|
+
content: "\f1a1";
|
1659
|
+
}
|
1660
|
+
i.icon.reddit.square:before {
|
1661
|
+
content: "\f1a2";
|
1662
|
+
}
|
1663
|
+
i.icon.stumbleupon.circle:before {
|
1664
|
+
content: "\f1a3";
|
1665
|
+
}
|
1666
|
+
i.icon.stumbleupon:before {
|
1667
|
+
content: "\f1a4";
|
1668
|
+
}
|
1669
|
+
i.icon.delicious:before {
|
1670
|
+
content: "\f1a5";
|
1671
|
+
}
|
1672
|
+
i.icon.digg:before {
|
1673
|
+
content: "\f1a6";
|
1674
|
+
}
|
1675
|
+
i.icon.pied.piper:before {
|
1676
|
+
content: "\f1a7";
|
1677
|
+
}
|
1678
|
+
i.icon.pied.piper.alternate:before {
|
1679
|
+
content: "\f1a8";
|
1680
|
+
}
|
1681
|
+
i.icon.drupal:before {
|
1682
|
+
content: "\f1a9";
|
1683
|
+
}
|
1684
|
+
i.icon.joomla:before {
|
1685
|
+
content: "\f1aa";
|
1686
|
+
}
|
1687
|
+
i.icon.behance:before {
|
1688
|
+
content: "\f1b4";
|
1689
|
+
}
|
1690
|
+
i.icon.behance.square:before {
|
1691
|
+
content: "\f1b5";
|
1692
|
+
}
|
1693
|
+
i.icon.steam:before {
|
1694
|
+
content: "\f1b6";
|
1695
|
+
}
|
1696
|
+
i.icon.steam.square:before {
|
1697
|
+
content: "\f1b7";
|
1698
|
+
}
|
1699
|
+
i.icon.spotify:before {
|
1700
|
+
content: "\f1bc";
|
1701
|
+
}
|
1702
|
+
i.icon.deviantart:before {
|
1703
|
+
content: "\f1bd";
|
1704
|
+
}
|
1705
|
+
i.icon.soundcloud:before {
|
1706
|
+
content: "\f1be";
|
1707
|
+
}
|
1708
|
+
i.icon.vine:before {
|
1709
|
+
content: "\f1ca";
|
1710
|
+
}
|
1711
|
+
i.icon.codepen:before {
|
1712
|
+
content: "\f1cb";
|
1713
|
+
}
|
1714
|
+
i.icon.jsfiddle:before {
|
1715
|
+
content: "\f1cc";
|
1716
|
+
}
|
1717
|
+
i.icon.rebel:before {
|
1718
|
+
content: "\f1d0";
|
1719
|
+
}
|
1720
|
+
i.icon.empire:before {
|
1721
|
+
content: "\f1d1";
|
1722
|
+
}
|
1723
|
+
i.icon.git.square:before {
|
1724
|
+
content: "\f1d2";
|
1725
|
+
}
|
1726
|
+
i.icon.git:before {
|
1727
|
+
content: "\f1d3";
|
1728
|
+
}
|
1729
|
+
i.icon.hacker.news:before {
|
1730
|
+
content: "\f1d4";
|
1731
|
+
}
|
1732
|
+
i.icon.tencent.weibo:before {
|
1733
|
+
content: "\f1d5";
|
1734
|
+
}
|
1735
|
+
i.icon.qq:before {
|
1736
|
+
content: "\f1d6";
|
1737
|
+
}
|
1738
|
+
i.icon.wechat:before {
|
1739
|
+
content: "\f1d7";
|
1740
|
+
}
|
1741
|
+
|
1742
|
+
|
1743
|
+
/*******************************
|
1744
|
+
Aliases
|
1745
|
+
*******************************/
|
1746
|
+
|
1747
|
+
i.icon.like:before {
|
1748
|
+
content: "\f004";
|
1749
|
+
}
|
1750
|
+
i.icon.favorite:before {
|
1751
|
+
content: "\f005";
|
1752
|
+
}
|
1753
|
+
i.icon.video:before {
|
1754
|
+
content: "\f008";
|
1755
|
+
}
|
1756
|
+
i.icon.check:before {
|
1757
|
+
content: "\f00c";
|
1758
|
+
}
|
1759
|
+
i.icon.remove:before {
|
1760
|
+
content: "\f00d";
|
1761
|
+
}
|
1762
|
+
i.icon.close:before {
|
1763
|
+
content: "\f00d";
|
1764
|
+
}
|
1765
|
+
i.icon.cancel:before {
|
1766
|
+
content: "\f00d";
|
1767
|
+
}
|
1768
|
+
i.icon.delete:before {
|
1769
|
+
content: "\f00d";
|
1770
|
+
}
|
1771
|
+
i.icon.x:before {
|
1772
|
+
content: "\f00d";
|
1773
|
+
}
|
1774
|
+
i.icon.zoom.in:before {
|
1775
|
+
content: "\f00e";
|
1776
|
+
}
|
1777
|
+
i.icon.magnify:before {
|
1778
|
+
content: "\f00e";
|
1779
|
+
}
|
1780
|
+
i.icon.shutdown:before {
|
1781
|
+
content: "\f011";
|
1782
|
+
}
|
1783
|
+
i.icon.signal:before {
|
1784
|
+
content: "\f012";
|
1785
|
+
}
|
1786
|
+
i.icon.clock:before {
|
1787
|
+
content: "\f017";
|
1788
|
+
}
|
1789
|
+
i.icon.time:before {
|
1790
|
+
content: "\f017";
|
1791
|
+
}
|
1792
|
+
i.icon.play.circle.outline:before {
|
1793
|
+
content: "\f01d";
|
1794
|
+
}
|
1795
|
+
i.icon.clockwise:before {
|
1796
|
+
content: "\f01e";
|
1797
|
+
}
|
1798
|
+
i.icon.headphone:before {
|
1799
|
+
content: "\f025";
|
1800
|
+
}
|
1801
|
+
i.icon.volume.off:before {
|
1802
|
+
content: "\f026";
|
1803
|
+
}
|
1804
|
+
i.icon.camera:before {
|
1805
|
+
content: "\f030";
|
1806
|
+
}
|
1807
|
+
i.icon.video.camera:before {
|
1808
|
+
content: "\f03d";
|
1809
|
+
}
|
1810
|
+
i.icon.picture:before {
|
1811
|
+
content: "\f03e";
|
1812
|
+
}
|
1813
|
+
i.icon.pencil:before {
|
1814
|
+
content: "\f040";
|
1815
|
+
}
|
1816
|
+
i.icon.compose:before {
|
1817
|
+
content: "\f040";
|
1818
|
+
}
|
1819
|
+
i.icon.point:before {
|
1820
|
+
content: "\f041";
|
1821
|
+
}
|
1822
|
+
i.icon.tint:before {
|
1823
|
+
content: "\f043";
|
1824
|
+
}
|
1825
|
+
i.icon.signup:before {
|
1826
|
+
content: "\f044";
|
1827
|
+
}
|
1828
|
+
i.icon.plus.circle:before {
|
1829
|
+
content: "\f055";
|
1830
|
+
}
|
1831
|
+
i.icon.minus.circle:before {
|
1832
|
+
content: "\f056";
|
1833
|
+
}
|
1834
|
+
i.icon.dont:before {
|
1835
|
+
content: "\f05e";
|
1836
|
+
}
|
1837
|
+
i.icon.minimize:before {
|
1838
|
+
content: "\f066";
|
1839
|
+
}
|
1840
|
+
i.icon.add:before {
|
1841
|
+
content: "\f067";
|
1842
|
+
}
|
1843
|
+
i.icon.eye:before {
|
1844
|
+
content: "\f06e";
|
1845
|
+
}
|
1846
|
+
i.icon.attention:before {
|
1847
|
+
content: "\f06a";
|
1848
|
+
}
|
1849
|
+
i.icon.cart:before {
|
1850
|
+
content: "\f07a";
|
1851
|
+
}
|
1852
|
+
i.icon.plane:before {
|
1853
|
+
content: "\f072";
|
1854
|
+
}
|
1855
|
+
i.icon.shuffle:before {
|
1856
|
+
content: "\f074";
|
1857
|
+
}
|
1858
|
+
i.icon.talk:before {
|
1859
|
+
content: "\f075";
|
1860
|
+
}
|
1861
|
+
i.icon.chat:before {
|
1862
|
+
content: "\f075";
|
1863
|
+
}
|
1864
|
+
i.icon.shopping.cart:before {
|
1865
|
+
content: "\f07a";
|
1866
|
+
}
|
1867
|
+
i.icon.bar.graph:before {
|
1868
|
+
content: "\f080";
|
1869
|
+
}
|
1870
|
+
i.icon.key:before {
|
1871
|
+
content: "\f084";
|
1872
|
+
}
|
1873
|
+
i.icon.privacy:before {
|
1874
|
+
content: "\f084";
|
1875
|
+
}
|
1876
|
+
i.icon.cogs:before {
|
1877
|
+
content: "\f085";
|
1878
|
+
}
|
1879
|
+
i.icon.discussions:before {
|
1880
|
+
content: "\f086";
|
1881
|
+
}
|
1882
|
+
i.icon.like.outline:before {
|
1883
|
+
content: "\f087";
|
1884
|
+
}
|
1885
|
+
i.icon.dislike.outline:before {
|
1886
|
+
content: "\f088";
|
1887
|
+
}
|
1888
|
+
i.icon.heart.outline:before {
|
1889
|
+
content: "\f08a";
|
1890
|
+
}
|
1891
|
+
i.icon.log.out:before {
|
1892
|
+
content: "\f08b";
|
1893
|
+
}
|
1894
|
+
i.icon.thumb.tack:before {
|
1895
|
+
content: "\f08d";
|
1896
|
+
}
|
1897
|
+
i.icon.winner:before {
|
1898
|
+
content: "\f091";
|
1899
|
+
}
|
1900
|
+
i.icon.bookmark.outline:before {
|
1901
|
+
content: "\f097";
|
1902
|
+
}
|
1903
|
+
i.icon.phone.square:before {
|
1904
|
+
content: "\f098";
|
1905
|
+
}
|
1906
|
+
i.icon.phone.square:before {
|
1907
|
+
content: "\f098";
|
1908
|
+
}
|
1909
|
+
i.icon.credit.card:before {
|
1910
|
+
content: "\f09d";
|
1911
|
+
}
|
1912
|
+
i.icon.rss:before {
|
1913
|
+
content: "\f09e";
|
1914
|
+
}
|
1915
|
+
i.icon.hdd.outline:before {
|
1916
|
+
content: "\f0a0";
|
1917
|
+
}
|
1918
|
+
i.icon.bullhorn:before {
|
1919
|
+
content: "\f0a1";
|
1920
|
+
}
|
1921
|
+
i.icon.bell:before {
|
1922
|
+
content: "\f0f3";
|
1923
|
+
}
|
1924
|
+
i.icon.hand.outline.right:before {
|
1925
|
+
content: "\f0a4";
|
1926
|
+
}
|
1927
|
+
i.icon.hand.outline.left:before {
|
1928
|
+
content: "\f0a5";
|
1929
|
+
}
|
1930
|
+
i.icon.hand.outline.up:before {
|
1931
|
+
content: "\f0a6";
|
1932
|
+
}
|
1933
|
+
i.icon.hand.outline.down:before {
|
1934
|
+
content: "\f0a7";
|
1935
|
+
}
|
1936
|
+
i.icon.globe:before {
|
1937
|
+
content: "\f0ac";
|
1938
|
+
}
|
1939
|
+
i.icon.wrench:before {
|
1940
|
+
content: "\f0ad";
|
1941
|
+
}
|
1942
|
+
i.icon.briefcase:before {
|
1943
|
+
content: "\f0b1";
|
1944
|
+
}
|
1945
|
+
i.icon.group:before {
|
1946
|
+
content: "\f0c0";
|
1947
|
+
}
|
1948
|
+
i.icon.flask:before {
|
1949
|
+
content: "\f0c3";
|
1950
|
+
}
|
1951
|
+
i.icon.sidebar:before {
|
1952
|
+
content: "\f0c9";
|
1953
|
+
}
|
1954
|
+
i.icon.bars:before {
|
1955
|
+
content: "\f0c9";
|
1956
|
+
}
|
1957
|
+
i.icon.list.ul:before {
|
1958
|
+
content: "\f0ca";
|
1959
|
+
}
|
1960
|
+
i.icon.list.ol:before {
|
1961
|
+
content: "\f0cb";
|
1962
|
+
}
|
1963
|
+
i.icon.numbered.list:before {
|
1964
|
+
content: "\f0cb";
|
1965
|
+
}
|
1966
|
+
i.icon.magic:before {
|
1967
|
+
content: "\f0d0";
|
1968
|
+
}
|
1969
|
+
i.icon.truck:before {
|
1970
|
+
content: "\f0d1";
|
1971
|
+
}
|
1972
|
+
i.icon.currency:before {
|
1973
|
+
content: "\f0d6";
|
1974
|
+
}
|
1975
|
+
i.icon.triangle.down:before {
|
1976
|
+
content: "\f0d7";
|
1977
|
+
}
|
1978
|
+
i.icon.dropdown:before {
|
1979
|
+
content: "\f0d7";
|
1980
|
+
}
|
1981
|
+
i.icon.triangle.up:before {
|
1982
|
+
content: "\f0d8";
|
1983
|
+
}
|
1984
|
+
i.icon.triangle.left:before {
|
1985
|
+
content: "\f0d9";
|
1986
|
+
}
|
1987
|
+
i.icon.triangle.right:before {
|
1988
|
+
content: "\f0da";
|
1989
|
+
}
|
1990
|
+
i.icon.envelope:before {
|
1991
|
+
content: "\f0e0";
|
1992
|
+
}
|
1993
|
+
i.icon.conversation:before {
|
1994
|
+
content: "\f0e6";
|
1995
|
+
}
|
1996
|
+
i.icon.lightning:before {
|
1997
|
+
content: "\f0e7";
|
1998
|
+
}
|
1999
|
+
i.icon.umbrella:before {
|
2000
|
+
content: "\f0e9";
|
2001
|
+
}
|
2002
|
+
i.icon.lightbulb:before {
|
2003
|
+
content: "\f0eb";
|
2004
|
+
}
|
2005
|
+
i.icon.suitcase:before {
|
2006
|
+
content: "\f0f2";
|
2007
|
+
}
|
2008
|
+
i.icon.bell.outline:before {
|
2009
|
+
content: "\f0a2";
|
2010
|
+
}
|
2011
|
+
i.icon.ambulance:before {
|
2012
|
+
content: "\f0f9";
|
2013
|
+
}
|
2014
|
+
i.icon.medkit:before {
|
2015
|
+
content: "\f0fa";
|
2016
|
+
}
|
2017
|
+
i.icon.fighter.jet:before {
|
2018
|
+
content: "\f0fb";
|
2019
|
+
}
|
2020
|
+
i.icon.beer:before {
|
2021
|
+
content: "\f0fc";
|
2022
|
+
}
|
2023
|
+
i.icon.plus.square:before {
|
2024
|
+
content: "\f0fe";
|
2025
|
+
}
|
2026
|
+
i.icon.computer:before {
|
2027
|
+
content: "\f108";
|
2028
|
+
}
|
2029
|
+
i.icon.circle.outline:before {
|
2030
|
+
content: "\f10c";
|
2031
|
+
}
|
2032
|
+
i.icon.spinner:before {
|
2033
|
+
content: "\f110";
|
2034
|
+
}
|
2035
|
+
i.icon.gamepad:before {
|
2036
|
+
content: "\f11b";
|
2037
|
+
}
|
2038
|
+
i.icon.star.half.full:before {
|
2039
|
+
content: "\f123";
|
2040
|
+
}
|
2041
|
+
i.icon.question:before {
|
2042
|
+
content: "\f128";
|
2043
|
+
}
|
2044
|
+
i.icon.attention:before {
|
2045
|
+
content: "\f12a";
|
2046
|
+
}
|
2047
|
+
i.icon.eraser:before {
|
2048
|
+
content: "\f12d";
|
2049
|
+
}
|
2050
|
+
i.icon.microphone:before {
|
2051
|
+
content: "\f130";
|
2052
|
+
}
|
2053
|
+
i.icon.microphone.slash:before {
|
2054
|
+
content: "\f131";
|
2055
|
+
}
|
2056
|
+
i.icon.shield:before {
|
2057
|
+
content: "\f132";
|
2058
|
+
}
|
2059
|
+
i.icon.target:before {
|
2060
|
+
content: "\f140";
|
2061
|
+
}
|
2062
|
+
i.icon.play.circle:before {
|
2063
|
+
content: "\f144";
|
2064
|
+
}
|
2065
|
+
i.icon.pencil.square:before {
|
2066
|
+
content: "\f14b";
|
2067
|
+
}
|
2068
|
+
i.icon.compass:before {
|
2069
|
+
content: "\f14e";
|
2070
|
+
}
|
2071
|
+
i.icon.eur:before {
|
2072
|
+
content: "\f153";
|
2073
|
+
}
|
2074
|
+
i.icon.gbp:before {
|
2075
|
+
content: "\f154";
|
2076
|
+
}
|
2077
|
+
i.icon.usd:before {
|
2078
|
+
content: "\f155";
|
2079
|
+
}
|
2080
|
+
i.icon.inr:before {
|
2081
|
+
content: "\f156";
|
2082
|
+
}
|
2083
|
+
i.icon.cny:before,
|
2084
|
+
i.icon.rmb:before,
|
2085
|
+
i.icon.jpy:before {
|
2086
|
+
content: "\f157";
|
2087
|
+
}
|
2088
|
+
i.icon.rouble:before,
|
2089
|
+
i.icon.rub:before {
|
2090
|
+
content: "\f158";
|
2091
|
+
}
|
2092
|
+
i.icon.won:before,
|
2093
|
+
i.icon.krw:before {
|
2094
|
+
content: "\f159";
|
2095
|
+
}
|
2096
|
+
i.icon.btc:before {
|
2097
|
+
content: "\f15a";
|
2098
|
+
}
|
2099
|
+
i.icon.try:before {
|
2100
|
+
content: "\f195";
|
2101
|
+
}
|
2102
|
+
i.icon.zip:before {
|
2103
|
+
content: "\f187";
|
2104
|
+
}
|
2105
|
+
i.icon.dot.circle.outline:before {
|
2106
|
+
content: "\f192";
|
2107
|
+
}
|
2108
|
+
i.icon.sliders:before {
|
2109
|
+
content: "\f1de";
|
2110
|
+
}
|
2111
|
+
i.icon.graduation:before {
|
2112
|
+
content: "\f19d";
|
2113
|
+
}
|
2114
|
+
i.icon.\33d:before {
|
2115
|
+
content: "\f1b2";
|
2116
|
+
}
|
2117
|
+
i.icon.weixin:before {
|
2118
|
+
content: "\f1d7";
|
2119
|
+
}
|
2120
|
+
|
2121
|
+
|
2122
|
+
/*******************************
|
2123
|
+
Site Overrides
|
2124
|
+
*******************************/
|
2125
|
+
|