semantic-ui-sass 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +51 -0
  6. data/Rakefile +5 -0
  7. data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
  8. data/app/assets/fonts/semantic-ui/basic.icons.svg +450 -0
  9. data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
  10. data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
  11. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  12. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  13. data/app/assets/fonts/semantic-ui/icons.svg +399 -0
  14. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  15. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  16. data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
  17. data/app/assets/images/semantic-ui/loader-large.gif +0 -0
  18. data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
  19. data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
  20. data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
  21. data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
  22. data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
  23. data/app/assets/images/semantic-ui/loader-small.gif +0 -0
  24. data/app/assets/javascripts/semantic-ui.js +20 -0
  25. data/app/assets/javascripts/semantic-ui/accordion.js +419 -0
  26. data/app/assets/javascripts/semantic-ui/behavior/api.js +638 -0
  27. data/app/assets/javascripts/semantic-ui/behavior/colorize.js +270 -0
  28. data/app/assets/javascripts/semantic-ui/behavior/form.js +702 -0
  29. data/app/assets/javascripts/semantic-ui/behavior/state.js +725 -0
  30. data/app/assets/javascripts/semantic-ui/chatroom.js +769 -0
  31. data/app/assets/javascripts/semantic-ui/checkbox.js +344 -0
  32. data/app/assets/javascripts/semantic-ui/dimmer.js +564 -0
  33. data/app/assets/javascripts/semantic-ui/dropdown.js +724 -0
  34. data/app/assets/javascripts/semantic-ui/modal.js +553 -0
  35. data/app/assets/javascripts/semantic-ui/nag.js +545 -0
  36. data/app/assets/javascripts/semantic-ui/popup.js +727 -0
  37. data/app/assets/javascripts/semantic-ui/rating.js +403 -0
  38. data/app/assets/javascripts/semantic-ui/search.js +772 -0
  39. data/app/assets/javascripts/semantic-ui/shape.js +778 -0
  40. data/app/assets/javascripts/semantic-ui/sidebar.js +490 -0
  41. data/app/assets/javascripts/semantic-ui/tab.js +689 -0
  42. data/app/assets/javascripts/semantic-ui/transition.js +654 -0
  43. data/app/assets/javascripts/semantic-ui/video.js +457 -0
  44. data/app/assets/stylesheets/semantic-ui.scss +4 -0
  45. data/app/assets/stylesheets/semantic-ui/collections/_all.scss +6 -0
  46. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +77 -0
  47. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +569 -0
  48. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +643 -0
  49. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +1767 -0
  50. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +347 -0
  51. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +524 -0
  52. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +12 -0
  53. data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +479 -0
  54. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1187 -0
  55. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +199 -0
  56. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +342 -0
  57. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +772 -0
  58. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +181 -0
  59. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +338 -0
  60. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +827 -0
  61. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +185 -0
  62. data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +352 -0
  63. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +464 -0
  64. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +293 -0
  65. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +199 -0
  66. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +16 -0
  67. data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +281 -0
  68. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +481 -0
  69. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +236 -0
  70. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +548 -0
  71. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +217 -0
  72. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +173 -0
  73. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +255 -0
  74. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +179 -0
  75. data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +365 -0
  76. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +273 -0
  77. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +113 -0
  78. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +150 -0
  79. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +63 -0
  80. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1096 -0
  81. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +98 -0
  82. data/app/assets/stylesheets/semantic-ui/views/_all.scss +5 -0
  83. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +221 -0
  84. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +152 -0
  85. data/app/assets/stylesheets/semantic-ui/views/_item.scss +651 -0
  86. data/app/assets/stylesheets/semantic-ui/views/_list.scss +555 -0
  87. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +27 -0
  88. data/lib/semantic/ui/sass.rb +10 -0
  89. data/lib/semantic/ui/sass/engine.rb +13 -0
  90. data/lib/semantic/ui/sass/version.rb +8 -0
  91. data/semantic-ui-sass.gemspec +24 -0
  92. data/tasks/converter.rb +237 -0
  93. metadata +177 -0
@@ -0,0 +1,772 @@
1
+ /*
2
+ * # Semantic - Icon
3
+ * http://github.com/jlukic/semantic-ui/
4
+ *
5
+ *
6
+ * Copyright 2013 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+ /*!
13
+ * Font Awesome 3.2.1
14
+ * the iconic font designed for Bootstrap
15
+ * ------------------------------------------------------------------------------
16
+ * The full suite of pictographic icons, examples, and documentation can be
17
+ * found at http://fon.io. Stay up to date on Twitter at
18
+ * http://twitter.com/fon.
19
+ *
20
+ * License
21
+ * ------------------------------------------------------------------------------
22
+ * - The Font Awesome font is licensed under SIL OFL 1.1 -
23
+ * http://scripts.sil.org/OFL
24
+
25
+ /*******************************
26
+ Icon
27
+ *******************************/
28
+
29
+ @font-face {
30
+ font-family: 'Icons';
31
+ src: font-url("semantic-ui/icons.eot");
32
+ src:
33
+ font-url("semantic-ui/icons.eot?#iefix") format('embedded-opentype'),
34
+ font-url("semantic-ui/icons.woff") format('woff'),
35
+ font-url("semantic-ui/icons.ttf") format('truetype'),
36
+ font-url("semantic-ui/icons.svg#icons") format('svg')
37
+ ;
38
+
39
+ font-style: normal;
40
+ font-weight: normal;
41
+ font-variant: normal;
42
+ text-decoration: inherit;
43
+ text-transform: none;
44
+ }
45
+
46
+ i.icon {
47
+ display: inline-block;
48
+ opacity: 0.75;
49
+
50
+ margin: 0em 0.25em 0em 0em;
51
+
52
+ width: 1.23em;
53
+ height: 1em;
54
+
55
+ font-family: 'Icons';
56
+ font-style: normal;
57
+ line-height: 1;
58
+ font-weight: normal;
59
+ text-decoration: inherit;
60
+ text-align: center;
61
+
62
+ speak: none;
63
+
64
+ -webkit-box-sizing: border-box;
65
+ -moz-box-sizing: border-box;
66
+ -ms-box-sizing: border-box;
67
+ box-sizing: border-box;
68
+
69
+ -webkit-font-smoothing: antialiased;
70
+ -moz-font-smoothing: antialiased;
71
+ font-smoothing: antialiased;
72
+ }
73
+
74
+ i.icon.add.sign.box:before { content: "\f0fe"; }
75
+ i.icon.add.sign:before { content: "\f055"; }
76
+ i.icon.add:before { content: "\f067"; }
77
+ i.icon.adjust:before { content: "\f042"; }
78
+ i.icon.adn:before { content: "\f170"; }
79
+ i.icon.align.center:before { content: "\f037"; }
80
+ i.icon.align.justify:before { content: "\f039"; }
81
+ i.icon.align.left:before { content: "\f036"; }
82
+ i.icon.align.right:before { content: "\f038"; }
83
+ i.icon.ambulance:before { content: "\f0f9"; }
84
+ i.icon.anchor:before { content: "\f13d"; }
85
+ i.icon.android:before { content: "\f17b"; }
86
+ i.icon.angle.down:before { content: "\f107"; }
87
+ i.icon.angle.left:before { content: "\f104"; }
88
+ i.icon.angle.right:before { content: "\f105"; }
89
+ i.icon.angle.up:before { content: "\f106"; }
90
+ i.icon.apple:before { content: "\f179"; }
91
+ i.icon.archive:before { content: "\f187"; }
92
+ i.icon.arrow.down:before { content: "\f078"; }
93
+ i.icon.arrow.left:before { content: "\f053"; }
94
+ i.icon.arrow.right:before { content: "\f054"; }
95
+ i.icon.arrow.sign.down:before { content: "\f13a"; }
96
+ i.icon.arrow.sign.left:before { content: "\f137"; }
97
+ i.icon.arrow.sign.right:before { content: "\f138"; }
98
+ i.icon.arrow.sign.up:before { content: "\f139"; }
99
+ i.icon.arrow.up:before { content: "\f077"; }
100
+ i.icon.asterisk:before { content: "\f069"; }
101
+ i.icon.attachment:before { content: "\f0c6"; }
102
+ i.icon.attention:before { content: "\f06a"; }
103
+ i.icon.backward:before { content: "\f04a"; }
104
+ i.icon.ban.circle:before { content: "\f05e"; }
105
+ i.icon.bar.chart:before { content: "\f080"; }
106
+ i.icon.barcode:before { content: "\f02a"; }
107
+ i.icon.beer:before { content: "\f0fc"; }
108
+ i.icon.bell.outline:before { content: "\f0a2"; }
109
+ i.icon.bell:before { content: "\f0f3"; }
110
+ i.icon.bitbucket.sign:before { content: "\f172"; }
111
+ i.icon.bitbucket:before { content: "\f171"; }
112
+ i.icon.bitcoin:before { content: "\f15a"; }
113
+ i.icon.bold:before { content: "\f032"; }
114
+ i.icon.bolt:before { content: "\f0e7"; }
115
+ i.icon.book:before { content: "\f02d"; }
116
+ i.icon.bookmark.empty:before { content: "\f097"; }
117
+ i.icon.bookmark:before { content: "\f02e"; }
118
+ i.icon.box.arrow.down:before { content: "\f150"; }
119
+ i.icon.box.arrow.right:before { content: "\f152"; }
120
+ i.icon.box.arrow.up:before { content: "\f151"; }
121
+ i.icon.briefcase:before { content: "\f0b1"; }
122
+ i.icon.browser:before { content: "\f022"; }
123
+ i.icon.bug:before { content: "\f188"; }
124
+ i.icon.building:before { content: "\f0f7"; }
125
+ i.icon.bullhorn:before { content: "\f0a1"; }
126
+ i.icon.bullseye:before { content: "\f140"; }
127
+ i.icon.calendar.empty:before { content: "\f133"; }
128
+ i.icon.calendar:before { content: "\f073"; }
129
+ i.icon.camera.retro:before { content: "\f083"; }
130
+ i.icon.camera:before { content: "\f030"; }
131
+ i.icon.triangle.down:before { content: "\f0d7"; }
132
+ i.icon.triangle.left:before { content: "\f0d9"; }
133
+ i.icon.triangle.right:before { content: "\f0da"; }
134
+ i.icon.triangle.up:before { content: "\f0d8"; }
135
+ i.icon.cart:before { content: "\f07a"; }
136
+ i.icon.certificate:before { content: "\f0a3"; }
137
+ i.icon.chat.outline:before { content: "\f0e6"; }
138
+ i.icon.chat:before { content: "\f086"; }
139
+ i.icon.checkbox.empty:before { content: "\f096"; }
140
+ i.icon.checkbox.minus:before { content: "\f147"; }
141
+ i.icon.checked.checkbox:before { content: "\f046"; }
142
+ i.icon.checkmark.sign:before { content: "\f14a"; }
143
+ i.icon.checkmark:before { content: "\f00c"; }
144
+ i.icon.circle.blank:before { content: "\f10c"; }
145
+ i.icon.circle.down:before { content: "\f0ab"; }
146
+ i.icon.circle.left:before { content: "\f0a8"; }
147
+ i.icon.circle.right:before { content: "\f0a9"; }
148
+ i.icon.circle.up:before { content: "\f0aa"; }
149
+ i.icon.circle:before { content: "\f111"; }
150
+ i.icon.cloud.download:before { content: "\f0ed"; }
151
+ i.icon.cloud.upload:before { content: "\f0ee"; }
152
+ i.icon.cloud:before { content: "\f0c2"; }
153
+ i.icon.code.fork:before { content: "\f126"; }
154
+ i.icon.code:before { content: "\f121"; }
155
+ i.icon.coffee:before { content: "\f0f4"; }
156
+ i.icon.collapse:before { content: "\f117"; }
157
+ i.icon.comment.outline:before { content: "\f0e5"; }
158
+ i.icon.comment:before { content: "\f075"; }
159
+ i.icon.copy:before { content: "\f0c5"; }
160
+ i.icon.crop:before { content: "\f125"; }
161
+ i.icon.css3:before { content: "\f13c"; }
162
+ i.icon.cut:before { content: "\f0c4"; }
163
+ i.icon.dashboard:before { content: "\f0e4"; }
164
+ i.icon.desktop:before { content: "\f108"; }
165
+ i.icon.doctor:before { content: "\f0f0"; }
166
+ i.icon.dollar:before { content: "\f155"; }
167
+ i.icon.double.angle.down:before { content: "\f103"; }
168
+ i.icon.double.angle.left:before { content: "\f100"; }
169
+ i.icon.double.angle.right:before { content: "\f101"; }
170
+ i.icon.double.angle.up:before { content: "\f102"; }
171
+ i.icon.down:before { content: "\f063"; }
172
+ i.icon.download.disk:before { content: "\f019"; }
173
+ i.icon.download:before { content: "\f01a"; }
174
+ i.icon.dribbble:before { content: "\f17d"; }
175
+ i.icon.dropbox:before { content: "\f16b"; }
176
+ i.icon.edit.sign:before { content: "\f14b"; }
177
+ i.icon.edit:before { content: "\f044"; }
178
+ i.icon.eject:before { content: "\f052"; }
179
+ i.icon.ellipsis.horizontal:before { content: "\f141"; }
180
+ i.icon.ellipsis.vertical:before { content: "\f142"; }
181
+ i.icon.eraser:before { content: "\f12d"; }
182
+ i.icon.euro:before { content: "\f153"; }
183
+ i.icon.exchange:before { content: "\f0ec"; }
184
+ i.icon.exclamation:before { content: "\f12a"; }
185
+ i.icon.expand:before { content: "\f116"; }
186
+ i.icon.external.url.sign:before { content: "\f14c"; }
187
+ i.icon.external.url:before { content: "\f08e"; }
188
+ i.icon.facebook.sign:before { content: "\f082"; }
189
+ i.icon.facebook:before { content: "\f09a"; }
190
+ i.icon.facetime.video:before { content: "\f03d"; }
191
+ i.icon.fast.backward:before { content: "\f049"; }
192
+ i.icon.fast.forward:before { content: "\f050"; }
193
+ i.icon.female:before { content: "\f182"; }
194
+ i.icon.fighter.jet:before { content: "\f0fb"; }
195
+ i.icon.file.outline:before { content: "\f016"; }
196
+ i.icon.file.text.outline:before { content: "\f0f6"; }
197
+ i.icon.file.text:before { content: "\f15c"; }
198
+ i.icon.file:before { content: "\f15b"; }
199
+ i.icon.filter:before { content: "\f0b0"; }
200
+ i.icon.fire.extinguisher:before { content: "\f134"; }
201
+ i.icon.fire:before { content: "\f06d"; }
202
+ i.icon.flag.checkered:before { content: "\f11e"; }
203
+ i.icon.flag.empty:before { content: "\f11d"; }
204
+ i.icon.flag:before { content: "\f024"; }
205
+ i.icon.flickr:before { content: "\f16e"; }
206
+ i.icon.folder.open.outline:before { content: "\f115"; }
207
+ i.icon.folder.open:before { content: "\f07c"; }
208
+ i.icon.folder.outline:before { content: "\f114"; }
209
+ i.icon.folder:before { content: "\f07b"; }
210
+ i.icon.font:before { content: "\f031"; }
211
+ i.icon.food:before { content: "\f0f5"; }
212
+ i.icon.forward.mail:before { content: "\f064"; }
213
+ i.icon.forward:before { content: "\f04e"; }
214
+ i.icon.foursquare:before { content: "\f180"; }
215
+ i.icon.frown:before { content: "\f119"; }
216
+ i.icon.fullscreen:before { content: "\f0b2"; }
217
+ i.icon.gamepad:before { content: "\f11b"; }
218
+ i.icon.gift:before { content: "\f06b"; }
219
+ i.icon.github.alternate:before { content: "\f09b"; }
220
+ i.icon.github.sign:before { content: "\f092"; }
221
+ i.icon.github:before { content: "\f113"; }
222
+ i.icon.gittip:before { content: "\f184"; }
223
+ i.icon.glass:before { content: "\f000"; }
224
+ i.icon.globe:before { content: "\f0ac"; }
225
+ i.icon.google.plus.sign:before { content: "\f0d4"; }
226
+ i.icon.google.plus:before { content: "\f0d5"; }
227
+ i.icon.h.sign:before { content: "\f0fd"; }
228
+ i.icon.hand.down:before { content: "\f0a7"; }
229
+ i.icon.hand.left:before { content: "\f0a5"; }
230
+ i.icon.hand.right:before { content: "\f0a4"; }
231
+ i.icon.hand.up:before { content: "\f0a6"; }
232
+ i.icon.hdd:before { content: "\f0a0"; }
233
+ i.icon.headphones:before { content: "\f025"; }
234
+ i.icon.heart.empty:before { content: "\f08a"; }
235
+ i.icon.heart:before { content: "\f004"; }
236
+ i.icon.help:before { content: "\f059"; }
237
+ i.icon.hide:before { content: "\f070"; }
238
+ i.icon.home:before { content: "\f015"; }
239
+ i.icon.hospital:before { content: "\f0f8"; }
240
+ i.icon.html5:before { content: "\f13b"; }
241
+ i.icon.inbox:before { content: "\f01c"; }
242
+ i.icon.indent.left:before { content: "\f03b"; }
243
+ i.icon.indent.right:before { content: "\f03c"; }
244
+ i.icon.info.letter:before { content: "\f129"; }
245
+ i.icon.info:before { content: "\f05a"; }
246
+ i.icon.instagram:before { content: "\f16d"; }
247
+ i.icon.italic:before { content: "\f033"; }
248
+ i.icon.key:before { content: "\f084"; }
249
+ i.icon.keyboard:before { content: "\f11c"; }
250
+ i.icon.lab:before { content: "\f0c3"; }
251
+ i.icon.laptop:before { content: "\f109"; }
252
+ i.icon.layout.block:before { content: "\f009"; }
253
+ i.icon.layout.column:before { content: "\f0db"; }
254
+ i.icon.layout.grid:before { content: "\f00a"; }
255
+ i.icon.layout.list:before { content: "\f00b"; }
256
+ i.icon.leaf:before { content: "\f06c"; }
257
+ i.icon.left:before { content: "\f060"; }
258
+ i.icon.legal:before { content: "\f0e3"; }
259
+ i.icon.lemon:before { content: "\f094"; }
260
+ i.icon.level.down:before { content: "\f149"; }
261
+ i.icon.level.up:before { content: "\f148"; }
262
+ i.icon.lightbulb:before { content: "\f0eb"; }
263
+ i.icon.linkedin.sign:before { content: "\f08c"; }
264
+ i.icon.linkedin:before { content: "\f0e1"; }
265
+ i.icon.linux:before { content: "\f17c"; }
266
+ i.icon.list.ordered:before { content: "\f0cb"; }
267
+ i.icon.list.unordered:before { content: "\f0ca"; }
268
+ i.icon.list:before { content: "\f03a"; }
269
+ i.icon.loading:before { content: "\f110"; }
270
+ i.icon.location:before { content: "\f124"; }
271
+ i.icon.lock:before { content: "\f023"; }
272
+ i.icon.long.arrow.down:before { content: "\f175"; }
273
+ i.icon.long.arrow.left:before { content: "\f177"; }
274
+ i.icon.long.arrow.right:before { content: "\f178"; }
275
+ i.icon.long.arrow.up:before { content: "\f176"; }
276
+ i.icon.magic:before { content: "\f0d0"; }
277
+ i.icon.magnet:before { content: "\f076"; }
278
+ i.icon.mail.outline:before { content: "\f003"; }
279
+ i.icon.mail.reply:before { content: "\f112"; }
280
+ i.icon.mail:before { content: "\f0e0"; }
281
+ i.icon.male:before { content: "\f183"; }
282
+ i.icon.map.marker:before { content: "\f041"; }
283
+ i.icon.map:before { content: "\f14e"; }
284
+ i.icon.maxcdn:before { content: "\f136"; }
285
+ i.icon.medkit:before { content: "\f0fa"; }
286
+ i.icon.meh:before { content: "\f11a"; }
287
+ i.icon.minus.sign.alternate:before { content: "\f146"; }
288
+ i.icon.minus.sign:before { content: "\f056"; }
289
+ i.icon.minus:before { content: "\f068"; }
290
+ i.icon.mobile:before { content: "\f10b"; }
291
+ i.icon.money:before { content: "\f0d6"; }
292
+ i.icon.moon:before { content: "\f186"; }
293
+ i.icon.move:before { content: "\f047"; }
294
+ i.icon.music:before { content: "\f001"; }
295
+ i.icon.mute:before { content: "\f131"; }
296
+ i.icon.off:before { content: "\f011"; }
297
+ i.icon.ok.circle:before { content: "\f05d"; }
298
+ i.icon.ok.sign:before { content: "\f058"; }
299
+ i.icon.paste:before { content: "\f0ea"; }
300
+ i.icon.pause:before { content: "\f04c"; }
301
+ i.icon.payment:before { content: "\f09d"; }
302
+ i.icon.pencil:before { content: "\f040"; }
303
+ i.icon.phone.sign:before { content: "\f098"; }
304
+ i.icon.phone:before { content: "\f095"; }
305
+ i.icon.photo:before { content: "\f03e"; }
306
+ i.icon.pin:before { content: "\f08d"; }
307
+ i.icon.pinterest.sign:before { content: "\f0d3"; }
308
+ i.icon.pinterest:before { content: "\f0d2"; }
309
+ i.icon.plane:before { content: "\f072"; }
310
+ i.icon.play.circle:before { content: "\f01d"; }
311
+ i.icon.play.sign:before { content: "\f144"; }
312
+ i.icon.play:before { content: "\f04b"; }
313
+ i.icon.pound:before { content: "\f154"; }
314
+ i.icon.print:before { content: "\f02f"; }
315
+ i.icon.puzzle.piece:before { content: "\f12e"; }
316
+ i.icon.qr.code:before { content: "\f029"; }
317
+ i.icon.question:before { content: "\f128"; }
318
+ i.icon.quote.left:before { content: "\f10d"; }
319
+ i.icon.quote.right:before { content: "\f10e"; }
320
+ i.icon.refresh:before { content: "\f021"; }
321
+ i.icon.remove.circle:before { content: "\f05c"; }
322
+ i.icon.remove.sign:before { content: "\f057"; }
323
+ i.icon.remove:before { content: "\f00d"; }
324
+ i.icon.renren:before { content: "\f18b"; }
325
+ i.icon.reorder:before { content: "\f0c9"; }
326
+ i.icon.repeat:before { content: "\f01e"; }
327
+ i.icon.reply.all.mail:before { content: "\f122"; }
328
+ i.icon.resize.full:before { content: "\f065"; }
329
+ i.icon.resize.horizontal:before { content: "\f07e"; }
330
+ i.icon.resize.small:before { content: "\f066"; }
331
+ i.icon.resize.vertical:before { content: "\f07d"; }
332
+ i.icon.retweet:before { content: "\f079"; }
333
+ i.icon.right:before { content: "\f061"; }
334
+ i.icon.road:before { content: "\f018"; }
335
+ i.icon.rocket:before { content: "\f135"; }
336
+ i.icon.rss.sign:before { content: "\f143"; }
337
+ i.icon.rss:before { content: "\f09e"; }
338
+ i.icon.rupee:before { content: "\f156"; }
339
+ i.icon.save:before { content: "\f0c7"; }
340
+ i.icon.screenshot:before { content: "\f05b"; }
341
+ i.icon.search:before { content: "\f002"; }
342
+ i.icon.setting:before { content: "\f013"; }
343
+ i.icon.settings:before { content: "\f085"; }
344
+ i.icon.share.sign:before { content: "\f14d"; }
345
+ i.icon.share:before { content: "\f045"; }
346
+ i.icon.shield:before { content: "\f132"; }
347
+ i.icon.shuffle:before { content: "\f074"; }
348
+ i.icon.sign.in:before { content: "\f090"; }
349
+ i.icon.sign.out:before { content: "\f08b"; }
350
+ i.icon.sign:before { content: "\f0c8"; }
351
+ i.icon.signal:before { content: "\f012"; }
352
+ i.icon.sitemap:before { content: "\f0e8"; }
353
+ i.icon.skype:before { content: "\f17e"; }
354
+ i.icon.smile:before { content: "\f118"; }
355
+ i.icon.sort.alphabet.descending:before { content: "\f15e"; }
356
+ i.icon.sort.alphabet:before { content: "\f15d"; }
357
+ i.icon.sort.ascending:before { content: "\f0de"; }
358
+ i.icon.sort.attributes.descending:before { content: "\f161"; }
359
+ i.icon.sort.attributes:before { content: "\f160"; }
360
+ i.icon.sort.descending:before { content: "\f0dd"; }
361
+ i.icon.sort.order.descending:before { content: "\f163"; }
362
+ i.icon.sort.order:before { content: "\f162"; }
363
+ i.icon.sort:before { content: "\f0dc"; }
364
+ i.icon.stackexchange:before { content: "\f16c"; }
365
+ i.icon.star.empty:before { content: "\f006"; }
366
+ i.icon.star.half.empty:before { content: "\f123"; }
367
+ i.icon.star.half.full:before,
368
+ i.icon.star.half:before { content: "\f089"; }
369
+ i.icon.star:before { content: "\f005"; }
370
+ i.icon.step.backward:before { content: "\f048"; }
371
+ i.icon.step.forward:before { content: "\f051"; }
372
+ i.icon.stethoscope:before { content: "\f0f1"; }
373
+ i.icon.stop:before { content: "\f04d"; }
374
+ i.icon.strikethrough:before { content: "\f0cc"; }
375
+ i.icon.subscript:before { content: "\f12c"; }
376
+ i.icon.suitcase:before { content: "\f0f2"; }
377
+ i.icon.sun:before { content: "\f185"; }
378
+ i.icon.superscript:before { content: "\f12b"; }
379
+ i.icon.table:before { content: "\f0ce"; }
380
+ i.icon.tablet:before { content: "\f10a"; }
381
+ i.icon.tag:before { content: "\f02b"; }
382
+ i.icon.tags:before { content: "\f02c"; }
383
+ i.icon.tasks:before { content: "\f0ae"; }
384
+ i.icon.terminal:before { content: "\f120"; }
385
+ i.icon.text.height:before { content: "\f034"; }
386
+ i.icon.text.width:before { content: "\f035"; }
387
+ i.icon.thumbs.down.outline:before { content: "\f088"; }
388
+ i.icon.thumbs.down:before { content: "\f165"; }
389
+ i.icon.thumbs.up.outline:before { content: "\f087"; }
390
+ i.icon.thumbs.up:before { content: "\f164"; }
391
+ i.icon.ticket:before { content: "\f145"; }
392
+ i.icon.time:before { content: "\f017"; }
393
+ i.icon.tint:before { content: "\f043"; }
394
+ i.icon.trash:before { content: "\f014"; }
395
+ i.icon.trello:before { content: "\f181"; }
396
+ i.icon.trophy:before { content: "\f091"; }
397
+ i.icon.truck:before { content: "\f0d1"; }
398
+ i.icon.tumblr.sign:before { content: "\f174"; }
399
+ i.icon.tumblr:before { content: "\f173"; }
400
+ i.icon.twitter.sign:before { content: "\f081"; }
401
+ i.icon.twitter:before { content: "\f099"; }
402
+ i.icon.umbrella:before { content: "\f0e9"; }
403
+ i.icon.underline:before { content: "\f0cd"; }
404
+ i.icon.undo:before { content: "\f0e2"; }
405
+ i.icon.unhide:before { content: "\f06e"; }
406
+ i.icon.unlink:before { content: "\f127"; }
407
+ i.icon.unlock.alternate:before { content: "\f13e"; }
408
+ i.icon.unlock:before { content: "\f09c"; }
409
+ i.icon.unmute:before { content: "\f130"; }
410
+ i.icon.up:before { content: "\f062"; }
411
+ i.icon.upload.disk:before { content: "\f093"; }
412
+ i.icon.upload:before { content: "\f01b"; }
413
+ i.icon.url:before { content: "\f0c1"; }
414
+ i.icon.user:before { content: "\f007"; }
415
+ i.icon.users:before { content: "\f0c0"; }
416
+ i.icon.video:before { content: "\f008"; }
417
+ i.icon.vk:before { content: "\f189"; }
418
+ i.icon.volume.down:before { content: "\f027"; }
419
+ i.icon.volume.off:before { content: "\f026"; }
420
+ i.icon.volume.up:before { content: "\f028"; }
421
+ i.icon.warning:before { content: "\f071"; }
422
+ i.icon.weibo:before { content: "\f18a"; }
423
+ i.icon.windows:before { content: "\f17a"; }
424
+ i.icon.won:before { content: "\f159"; }
425
+ i.icon.wrench:before { content: "\f0ad"; }
426
+ i.icon.xing.sign:before { content: "\f169"; }
427
+ i.icon.xing:before { content: "\f168"; }
428
+ i.icon.yen:before { content: "\f157"; }
429
+ i.icon.youtube.play:before { content: "\f16a"; }
430
+ i.icon.youtube.sign:before { content: "\f166"; }
431
+ i.icon.youtube:before { content: "\f167"; }
432
+ i.icon.yuan:before { content: "\f158"; }
433
+ i.icon.zoom.in:before { content: "\f00e"; }
434
+ i.icon.zoom.out:before { content: "\f010"; }
435
+
436
+
437
+ /*--------------
438
+ Aliases
439
+ ---------------*/
440
+
441
+ i.icon.check:before { content: "\f00c"; }
442
+ i.icon.close:before { content: "\f00d"; }
443
+ i.icon.delete:before { content: "\f00d"; }
444
+ i.icon.like:before { content: "\f004"; }
445
+ i.icon.plus:before { content: "\f067"; }
446
+ i.icon.signup:before { content: "\f044"; }
447
+
448
+
449
+ /*--------------
450
+ Spacing Fix
451
+ ---------------*/
452
+
453
+ /* stars are usually consecutive */
454
+ i.icon.star {
455
+ width: auto;
456
+ margin: 0em;
457
+ }
458
+
459
+ /* left side icons */
460
+ i.icon.left,
461
+ i.icon.left,
462
+ i.icon.left {
463
+ width: auto;
464
+ margin: 0em 0.5em 0em 0em;
465
+ }
466
+
467
+ /* right side icons */
468
+ i.icon.search,
469
+ i.icon.up,
470
+ i.icon.down,
471
+ i.icon.right {
472
+ width: auto;
473
+ margin: 0em 0em 0em 0.5em;
474
+ }
475
+
476
+
477
+ /*******************************
478
+ Types
479
+ *******************************/
480
+
481
+ /*--------------
482
+ Loading
483
+ ---------------*/
484
+
485
+ i.icon.loading {
486
+ -webkit-animation: icon-loading 2s linear infinite;
487
+ -moz-animation: icon-loading 2s linear infinite;
488
+ -ms-animation: icon-loading 2s linear infinite;
489
+ -o-animation: icon-loading 2s linear infinite;
490
+ animation: icon-loading 2s linear infinite;
491
+ }
492
+ @keyframes icon-loading {
493
+ from {
494
+ -webkit-transform: rotate(0deg);
495
+ -moz-transform: rotate(0deg);
496
+ -o-transform: rotate(0deg);
497
+ -ms-transform: rotate(0deg);
498
+ transform: rotate(0deg);
499
+ }
500
+ to {
501
+ -webkit-transform: rotate(360deg);
502
+ -moz-transform: rotate(360deg);
503
+ -o-transform: rotate(360deg);
504
+ -ms-transform: rotate(360deg);
505
+ transform: rotate(360deg);
506
+ }
507
+ }
508
+ @-moz-keyframes icon-loading {
509
+ from {
510
+ -moz-transform: rotate(0deg);
511
+ transform: rotate(0deg);
512
+ }
513
+ to {
514
+ -moz-transform: rotate(360deg);
515
+ transform: rotate(360deg);
516
+ }
517
+ }
518
+ @-webkit-keyframes icon-loading {
519
+ from {
520
+ -webkit-transform: rotate(0deg);
521
+ transform: rotate(0deg);
522
+ }
523
+ to {
524
+ -webkit-transform: rotate(360deg);
525
+ transform: rotate(360deg);
526
+ }
527
+ }
528
+ @-ms-keyframes icon-loading {
529
+ from {
530
+ -ms-transform: rotate(0deg);
531
+ transform: rotate(0deg);
532
+ }
533
+ to {
534
+ -ms-transform: rotate(360deg);
535
+ transform: rotate(360deg);
536
+ }
537
+ }
538
+ @-o-keyframes icon-loading {
539
+ from {
540
+ -o-transform: rotate(0deg);
541
+ transform: rotate(0deg);
542
+ }
543
+ to {
544
+ -o-transform: rotate(360deg);
545
+ transform: rotate(360deg);
546
+ }
547
+ }
548
+
549
+
550
+
551
+ /*******************************
552
+ States
553
+ *******************************/
554
+
555
+ i.icon.hover {
556
+ opacity: 1;
557
+ }
558
+
559
+ i.icon.active {
560
+ opacity: 1;
561
+ }
562
+
563
+ i.emphasized.icon {
564
+ opacity: 1;
565
+ }
566
+
567
+ i.icon.disabled {
568
+ opacity: 0.3;
569
+ }
570
+
571
+
572
+ /*******************************
573
+ Variations
574
+ *******************************/
575
+
576
+
577
+ /*-------------------
578
+ Link
579
+ --------------------*/
580
+
581
+ i.link.icon {
582
+ cursor: pointer;
583
+ opacity: 0.7;
584
+ -webkit-transition: opacity 0.3s ease-out;
585
+ -moz-transition: opacity 0.3s ease-out;
586
+ -o-transition: opacity 0.3s ease-out;
587
+ -ms-transition: opacity 0.3s ease-out;
588
+ transition: opacity 0.3s ease-out;
589
+ }
590
+ i.link.icon:hover {
591
+ opacity: 1 !important;
592
+ }
593
+
594
+ /*-------------------
595
+ Circular
596
+ --------------------*/
597
+
598
+ i.circular.icon {
599
+ -webkit-border-radius: 500px;
600
+ -moz-border-radius: 500px;
601
+ border-radius: 500px;
602
+
603
+ padding: 0.5em 0.35em !important;
604
+
605
+ -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
606
+ -moz-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
607
+ box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
608
+
609
+ line-height: 1 !important;
610
+ width: 2em !important;
611
+ height: 2em !important;
612
+ }
613
+ i.circular.inverted.icon {
614
+ border: none;
615
+ -webkit-box-shadow: none;
616
+ -moz-box-shadow: none;
617
+ box-shadow: none;
618
+ }
619
+
620
+ /*-------------------
621
+ Flipped
622
+ --------------------*/
623
+
624
+ i.vertically.flipped.icon {
625
+ -webkit-transform: scale(1, -1);
626
+ -moz-transform: scale(1, -1);
627
+ -o-transform: scale(1, -1);
628
+ -ms-transform: scale(1, -1);
629
+ transform: scale(1, -1);
630
+ }
631
+ i.horizontally.flipped.icon {
632
+ -webkit-transform: scale(-1, 1);
633
+ -moz-transform: scale(-1, 1);
634
+ -o-transform: scale(-1, 1);
635
+ -ms-transform: scale(-1, 1);
636
+ transform: scale(-1, 1);
637
+ }
638
+
639
+ /*-------------------
640
+ Rotated
641
+ --------------------*/
642
+
643
+ i.left.rotated.icon {
644
+ -webkit-transform: rotate(-90deg);
645
+ -moz-transform: rotate(-90deg);
646
+ -o-transform: rotate(-90deg);
647
+ -ms-transform: rotate(-90deg);
648
+ transform: rotate(-90deg);
649
+ }
650
+ i.right.rotated.icon {
651
+ -webkit-transform: rotate(90deg);
652
+ -moz-transform: rotate(90deg);
653
+ -o-transform: rotate(90deg);
654
+ -ms-transform: rotate(90deg);
655
+ transform: rotate(90deg);
656
+ }
657
+
658
+
659
+ /*-------------------
660
+ Square
661
+ --------------------*/
662
+
663
+ i.square.icon {
664
+ width: 2em;
665
+ height: 2em;
666
+ padding: 0.5em 0.35em !important;
667
+
668
+ -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
669
+ -moz-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
670
+ box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
671
+
672
+ vertical-align: baseline;
673
+ }
674
+ i.square.icon:before {
675
+ vertical-align: middle;
676
+ }
677
+ i.square.inverted.icon {
678
+ border: none;
679
+ -webkit-box-shadow: none;
680
+ -moz-box-shadow: none;
681
+ box-shadow: none;
682
+ }
683
+
684
+
685
+ /*-------------------
686
+ Inverted
687
+ --------------------*/
688
+
689
+ i.inverted.icon {
690
+ background-color: #222222;
691
+ color: #FFFFFF;
692
+ }
693
+
694
+ /*-------------------
695
+ Colors
696
+ --------------------*/
697
+
698
+ i.blue.icon {
699
+ color: #6ECFF5 !important;
700
+ }
701
+ i.black.icon {
702
+ color: #5C6166 !important;
703
+ }
704
+ i.green.icon {
705
+ color: #A1CF64 !important;
706
+ }
707
+ i.red.icon {
708
+ color: #D95C5C !important;
709
+ }
710
+ i.purple.icon {
711
+ color: #564F8A !important;
712
+ }
713
+ i.teal.icon {
714
+ color: #00B5AD !important;
715
+ }
716
+
717
+ /*-------------------
718
+ Inverted Colors
719
+ --------------------*/
720
+
721
+ i.inverted.black.icon {
722
+ background-color: #5C6166 !important;
723
+ color: #FFFFFF !important;
724
+ }
725
+ i.inverted.blue.icon {
726
+ background-color: #6ECFF5 !important;
727
+ color: #FFFFFF !important;
728
+ }
729
+ i.inverted.green.icon {
730
+ background-color: #A1CF64 !important;
731
+ color: #FFFFFF !important;
732
+ }
733
+ i.inverted.red.icon {
734
+ background-color: #D95C5C !important;
735
+ color: #FFFFFF !important;
736
+ }
737
+ i.inverted.purple.icon {
738
+ background-color: #564F8A !important;
739
+ color: #FFFFFF !important;
740
+ }
741
+ i.inverted.teal.icon {
742
+ background-color: #00B5AD !important;
743
+ color: #FFFFFF !important;
744
+ }
745
+
746
+
747
+ /*-------------------
748
+ Sizes
749
+ --------------------*/
750
+
751
+ i.small.icon {
752
+ font-size: 0.875em;
753
+ }
754
+ i.icon {
755
+ font-size: 1em;
756
+ }
757
+ i.large.icon {
758
+ font-size: 1.5em;
759
+ vertical-align: middle;
760
+ }
761
+ i.big.icon {
762
+ font-size: 2em;
763
+ vertical-align: middle;
764
+ }
765
+ i.huge.icon {
766
+ font-size: 4em;
767
+ vertical-align: middle;
768
+ }
769
+ i.massive.icon {
770
+ font-size: 8em;
771
+ vertical-align: middle;
772
+ }