semantic-ui-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +26 -0
  6. data/Rakefile +1 -0
  7. data/lib/generators/semantic/install/install_generator.rb +38 -0
  8. data/lib/generators/semantic/install/templates/semantic-ui.js +21 -0
  9. data/lib/generators/semantic/install/templates/semantic-ui/collections.less +6 -0
  10. data/lib/generators/semantic/install/templates/semantic-ui/elements.less +11 -0
  11. data/lib/generators/semantic/install/templates/semantic-ui/modules.less +18 -0
  12. data/lib/generators/semantic/install/templates/semantic-ui/views.less +6 -0
  13. data/lib/semantic/ui/rails.rb +10 -0
  14. data/lib/semantic/ui/rails/engine.rb +8 -0
  15. data/lib/semantic/ui/rails/version.rb +7 -0
  16. data/semantic-ui-rails.gemspec +23 -0
  17. data/vendor/assets/fonts/icons.eot +0 -0
  18. data/vendor/assets/fonts/icons.svg +450 -0
  19. data/vendor/assets/fonts/icons.ttf +0 -0
  20. data/vendor/assets/fonts/icons.woff +0 -0
  21. data/vendor/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
  22. data/vendor/assets/images/semantic-ui/loader-large.gif +0 -0
  23. data/vendor/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
  24. data/vendor/assets/images/semantic-ui/loader-medium.gif +0 -0
  25. data/vendor/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
  26. data/vendor/assets/images/semantic-ui/loader-mini.gif +0 -0
  27. data/vendor/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
  28. data/vendor/assets/images/semantic-ui/loader-small.gif +0 -0
  29. data/vendor/assets/javascripts/semantic-ui/accordion.js +411 -0
  30. data/vendor/assets/javascripts/semantic-ui/behavior/api.js +666 -0
  31. data/vendor/assets/javascripts/semantic-ui/behavior/colorize.js +271 -0
  32. data/vendor/assets/javascripts/semantic-ui/behavior/form.js +657 -0
  33. data/vendor/assets/javascripts/semantic-ui/behavior/state.js +752 -0
  34. data/vendor/assets/javascripts/semantic-ui/carousel.js +327 -0
  35. data/vendor/assets/javascripts/semantic-ui/chatroom.js +766 -0
  36. data/vendor/assets/javascripts/semantic-ui/checkbox.js +348 -0
  37. data/vendor/assets/javascripts/semantic-ui/dimmer.js +525 -0
  38. data/vendor/assets/javascripts/semantic-ui/dropdown.js +697 -0
  39. data/vendor/assets/javascripts/semantic-ui/modal.js +478 -0
  40. data/vendor/assets/javascripts/semantic-ui/nag.js +542 -0
  41. data/vendor/assets/javascripts/semantic-ui/popup.js +721 -0
  42. data/vendor/assets/javascripts/semantic-ui/rating.js +358 -0
  43. data/vendor/assets/javascripts/semantic-ui/search.js +770 -0
  44. data/vendor/assets/javascripts/semantic-ui/shape.js +776 -0
  45. data/vendor/assets/javascripts/semantic-ui/sidebar.js +489 -0
  46. data/vendor/assets/javascripts/semantic-ui/tab.js +674 -0
  47. data/vendor/assets/javascripts/semantic-ui/transition.js +645 -0
  48. data/vendor/assets/javascripts/semantic-ui/video.js +459 -0
  49. data/vendor/assets/stylesheets/semantic-ui/collections/breadcrumb.less +79 -0
  50. data/vendor/assets/stylesheets/semantic-ui/collections/form.less +536 -0
  51. data/vendor/assets/stylesheets/semantic-ui/collections/grid.less +655 -0
  52. data/vendor/assets/stylesheets/semantic-ui/collections/menu.less +1736 -0
  53. data/vendor/assets/stylesheets/semantic-ui/collections/message.less +337 -0
  54. data/vendor/assets/stylesheets/semantic-ui/collections/table.less +526 -0
  55. data/vendor/assets/stylesheets/semantic-ui/elements/button.less +1294 -0
  56. data/vendor/assets/stylesheets/semantic-ui/elements/divider.less +200 -0
  57. data/vendor/assets/stylesheets/semantic-ui/elements/header.less +325 -0
  58. data/vendor/assets/stylesheets/semantic-ui/elements/icon.less +449 -0
  59. data/vendor/assets/stylesheets/semantic-ui/elements/image.less +170 -0
  60. data/vendor/assets/stylesheets/semantic-ui/elements/input.less +287 -0
  61. data/vendor/assets/stylesheets/semantic-ui/elements/label.less +805 -0
  62. data/vendor/assets/stylesheets/semantic-ui/elements/loader.less +178 -0
  63. data/vendor/assets/stylesheets/semantic-ui/elements/progress.less +353 -0
  64. data/vendor/assets/stylesheets/semantic-ui/elements/segment.less +465 -0
  65. data/vendor/assets/stylesheets/semantic-ui/elements/step.less +294 -0
  66. data/vendor/assets/stylesheets/semantic-ui/modules/accordion.less +135 -0
  67. data/vendor/assets/stylesheets/semantic-ui/modules/carousel.less +71 -0
  68. data/vendor/assets/stylesheets/semantic-ui/modules/chatroom.less +271 -0
  69. data/vendor/assets/stylesheets/semantic-ui/modules/checkbox.less +378 -0
  70. data/vendor/assets/stylesheets/semantic-ui/modules/dimmer.less +230 -0
  71. data/vendor/assets/stylesheets/semantic-ui/modules/dropdown.less +506 -0
  72. data/vendor/assets/stylesheets/semantic-ui/modules/extra.transition.less +1197 -0
  73. data/vendor/assets/stylesheets/semantic-ui/modules/modal.less +154 -0
  74. data/vendor/assets/stylesheets/semantic-ui/modules/nag.less +175 -0
  75. data/vendor/assets/stylesheets/semantic-ui/modules/popup.less +238 -0
  76. data/vendor/assets/stylesheets/semantic-ui/modules/rating.less +151 -0
  77. data/vendor/assets/stylesheets/semantic-ui/modules/reveal.less +367 -0
  78. data/vendor/assets/stylesheets/semantic-ui/modules/search.less +275 -0
  79. data/vendor/assets/stylesheets/semantic-ui/modules/shape.less +115 -0
  80. data/vendor/assets/stylesheets/semantic-ui/modules/sidebar.less +147 -0
  81. data/vendor/assets/stylesheets/semantic-ui/modules/tab.less +59 -0
  82. data/vendor/assets/stylesheets/semantic-ui/modules/transition.less +839 -0
  83. data/vendor/assets/stylesheets/semantic-ui/modules/video.less +99 -0
  84. data/vendor/assets/stylesheets/semantic-ui/views/comment.less +221 -0
  85. data/vendor/assets/stylesheets/semantic-ui/views/feed.less +151 -0
  86. data/vendor/assets/stylesheets/semantic-ui/views/item.less +641 -0
  87. data/vendor/assets/stylesheets/semantic-ui/views/list.less +491 -0
  88. data/vendor/assets/stylesheets/semantic-ui/views/sitemap.less +47 -0
  89. data/vendor/assets/stylesheets/semantic-ui/views/statistic.less +34 -0
  90. metadata +161 -0
@@ -0,0 +1,449 @@
1
+ /*
2
+ * # Semantic Icons - Flat
3
+ * http://github.com/quirkyinc/semantic
4
+ *
5
+ *
6
+ * Copyright 2013 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ * Released: May 17 2013
11
+ */
12
+
13
+
14
+ /*******************************
15
+ Icon
16
+ *******************************/
17
+
18
+ @font-face {
19
+ font-family: 'Icons';
20
+ src: url(../fonts/icons.eot);
21
+ src:
22
+ url(../fonts/icons.eot?#iefix) format('embedded-opentype'),
23
+ url(../fonts/icons.woff) format('woff'),
24
+ url(../fonts/icons.ttf) format('truetype'),
25
+ url(../fonts/icons.svg#icons) format('svg')
26
+ ;
27
+
28
+ font-style: normal;
29
+ font-weight: normal;
30
+ font-variant: normal;
31
+ text-decoration: inherit;
32
+ text-transform: none;
33
+ }
34
+
35
+ i.icon {
36
+ display: inline-block;
37
+ opacity: 0.75;
38
+
39
+ margin: 0em 0.25em 0em 0em;
40
+
41
+ width: 1.23em;
42
+ height: 1em;
43
+
44
+ font-family: 'Icons';
45
+ font-style: normal;
46
+ line-height: 1;
47
+ font-weight: normal;
48
+ text-decoration: inherit;
49
+ text-align: center;
50
+
51
+ speak: none;
52
+
53
+ -webkit-box-sizing: border-box;
54
+ -moz-box-sizing: border-box;
55
+ -ms-box-sizing: border-box;
56
+ box-sizing: border-box;
57
+
58
+ -webkit-font-smoothing: antialiased;
59
+ -moz-font-smoothing: antialiased;
60
+ font-smoothing: antialiased;
61
+ }
62
+
63
+ /* icons available */
64
+ i.icon.circle.attention:before { content: '\2757'; } /* '❗' */
65
+ i.icon.circle.help:before { content: '\e704'; } /* '' */
66
+ i.icon.circle.info:before { content: '\e705'; } /* '' */
67
+ i.icon.add:before { content: '\2795'; } /* '➕' */
68
+
69
+ i.icon.chart:before { content: '📈'; } /* '\1f4c8' */
70
+ i.icon.chart.bar:before { content: '📊'; } /* '\1f4ca' */
71
+ i.icon.chart.pie:before { content: '\e7a2'; } /* '' */
72
+
73
+ i.icon.resize.full:before { content: '\e744'; } /* '' */
74
+ i.icon.resize.horizontal:before { content: '\2b0d'; } /* '⬍' */
75
+ i.icon.resize.small:before { content: '\e746'; } /* '' */
76
+ i.icon.resize.vertical:before { content: '\2b0c'; } /* '⬌' */
77
+
78
+ i.icon.down:before { content: '\2193'; } /* '↓' */
79
+ i.icon.down.triangle:before { content: '\25be'; } /* '▾' */
80
+ i.icon.down.arrow:before { content: '\e75c'; } /* '' */
81
+
82
+ i.icon.left:before { content: '\2190'; } /* '←' */
83
+ i.icon.left.triangle:before { content: '\25c2'; } /* '◂' */
84
+ i.icon.left.arrow:before { content: '\e75d'; } /* '' */
85
+
86
+ i.icon.right:before { content: '\2192'; } /* '→' */
87
+ i.icon.right.triangle:before { content: '\25b8'; } /* '▸' */
88
+ i.icon.right.arrow:before { content: '\e75e'; } /* '' */
89
+
90
+ i.icon.up:before { content: '\2191'; } /* '↑' */
91
+ i.icon.up.triangle:before { content: '\25b4'; } /* '▴' */
92
+ i.icon.up.arrow:before { content: '\e75f'; } /* '' */
93
+
94
+ i.icon.folder:before { content: '\e810'; } /* '' */
95
+ i.icon.open.folder:before { content: '📂'; } /* '\1f4c2' */
96
+
97
+ i.icon.globe:before { content: '𝌍'; } /* '\1d30d' */
98
+ i.icon.desk.globe:before { content: '🌐'; } /* '\1f310' */
99
+
100
+ i.icon.star:before { content: '\e801'; } /* '' */
101
+ i.icon.star.empty:before { content: '\e800'; } /* '' */
102
+ i.icon.star.half:before { content: '\e701'; } /* '' */
103
+
104
+ i.icon.lock:before { content: '🔒'; } /* '\1f512' */
105
+ i.icon.unlock:before { content: '🔓'; } /* '\1f513' */
106
+
107
+ i.icon.layout.grid:before { content: '\e80c'; } /* '' */
108
+ i.icon.layout.block:before { content: '\e708'; } /* '' */
109
+ i.icon.layout.list:before { content: '\e80b'; } /* '' */
110
+
111
+ i.icon.heart.empty:before { content: '\2661'; } /* '♡' */
112
+ i.icon.heart:before { content: '\2665'; } /* '♥' */
113
+
114
+
115
+ i.icon.asterisk:before { content: '\2731'; } /* '✱' */
116
+ i.icon.attachment:before { content: '📎'; } /* '\1f4ce' */
117
+ i.icon.attention:before { content: '\26a0'; } /* '⚠' */
118
+ i.icon.trophy:before { content: '🏉'; } /* '\1f3c9' */
119
+ i.icon.barcode:before { content: '\e792'; } /* '' */
120
+ i.icon.cart:before { content: '\e813'; } /* '' */
121
+ i.icon.block:before { content: '🚫'; } /* '\1f6ab' */
122
+ i.icon.book:before { content: '📖'; } /* '\1f4d6' */
123
+ i.icon.bookmark:before { content: '🔖'; } /* '\1f516' */
124
+ i.icon.calendar:before { content: '📅'; } /* '\1f4c5' */
125
+ i.icon.cancel:before { content: '\2716'; } /* '✖' */
126
+ i.icon.close:before { content: '\e80d'; } /* '' */
127
+ i.icon.color:before { content: '\e794'; } /* '' */
128
+ i.icon.chat:before { content: '\e720'; } /* '' */
129
+ i.icon.check:before { content: '\2611'; } /* '☑' */
130
+ i.icon.time:before { content: '🕔'; } /* '\1f554' */
131
+ i.icon.cloud:before { content: '\2601'; } /* '☁' */
132
+ i.icon.code:before { content: '\e714'; } /* '' */
133
+ i.icon.email:before { content: '\40'; } /* '@' */
134
+ i.icon.settings:before { content: '\26ef'; } /* '⛯' */
135
+ i.icon.setting:before { content: '\2699'; } /* '⚙' */
136
+ i.icon.comment:before { content: '\e802'; } /* '' */
137
+ i.icon.clockwise.counter:before { content: '\27f2'; } /* '⟲' */
138
+ i.icon.clockwise:before { content: '\27f3'; } /* '⟳' */
139
+ i.icon.cube:before { content: '\e807'; } /* '' */
140
+ i.icon.direction:before { content: '\27a2'; } /* '➢' */
141
+ i.icon.doc:before { content: '📄'; } /* '\1f4c4' */
142
+ i.icon.docs:before { content: '\e736'; } /* '' */
143
+ i.icon.dollar:before { content: '💵'; } /* '\1f4b5' */
144
+ i.icon.paint:before { content: '\e7b5'; } /* '' */
145
+ i.icon.edit:before { content: '\270d'; } /* '✍' */
146
+ i.icon.eject:before { content: '\2ecf'; } /* '⻏' */
147
+ i.icon.export:before { content: '\e715'; } /* '' */
148
+ i.icon.hide:before { content: '\e80f'; } /* '' */
149
+ i.icon.unhide:before { content: '\e70b'; } /* '' */
150
+ i.icon.facebook:before { content: '\f301'; } /* '' */
151
+ i.icon.fast-forward:before { content: '\e804'; } /* '' */
152
+ i.icon.fire:before { content: '🔥'; } /* '\1f525' */
153
+ i.icon.flag:before { content: '\2691'; } /* '⚑' */
154
+ i.icon.lightning:before { content: '\26a1'; } /* '⚡' */
155
+ i.icon.lab:before { content: '\68'; } /* 'h' */
156
+ i.icon.flight:before { content: '\2708'; } /* '✈' */
157
+ i.icon.forward:before { content: '\27a6'; } /* '➦' */
158
+ i.icon.gift:before { content: '🎁'; } /* '\1f381' */
159
+ i.icon.github:before { content: '\f308'; } /* '' */
160
+ i.icon.globe:before { content: '\e817'; } /* '' */
161
+ i.icon.headphones:before { content: '🎧'; } /* '\1f3a7' */
162
+ i.icon.question:before { content: '\2753'; } /* '❓' */
163
+ i.icon.home:before { content: '\2302'; } /* '⌂' */
164
+ i.icon.i:before { content: '\2139'; } /* 'ℹ' */
165
+ i.icon.idea:before { content: '💡'; } /* '\1f4a1' */
166
+ i.icon.open:before { content: '🔗'; } /* '\1f517' */
167
+ i.icon.content:before { content: '\e782'; } /* '' */
168
+ i.icon.location:before { content: '\e724'; } /* '' */
169
+ i.icon.mail:before { content: '\2709'; } /* '✉' */
170
+ i.icon.mic:before { content: '🎤'; } /* '\1f3a4' */
171
+ i.icon.minus:before { content: '\2d'; } /* '-' */
172
+ i.icon.money:before { content: '💰'; } /* '\1f4b0' */
173
+ i.icon.off:before { content: '\e78e'; } /* '' */
174
+ i.icon.pause:before { content: '\e808'; } /* '' */
175
+ i.icon.photos:before { content: '\e812'; } /* '' */
176
+ i.icon.photo:before { content: '🌄'; } /* '\1f304' */
177
+ i.icon.pin:before { content: '📌'; } /* '\1f4cc' */
178
+ i.icon.play:before { content: '\e809'; } /* '' */
179
+ i.icon.plus:before { content: '\2b'; } /* '+' */
180
+ i.icon.print:before { content: '\e716'; } /* '' */
181
+ i.icon.rss:before { content: '\e73a'; } /* '' */
182
+ i.icon.search:before { content: '🔍'; } /* '\1f50d' */
183
+ i.icon.shuffle:before { content: '\e803'; } /* '' */
184
+ i.icon.tag:before { content: '\e80a'; } /* '' */
185
+ i.icon.tags:before { content: '\e70d'; } /* '' */
186
+ i.icon.terminal:before { content: '\e7ac'; } /* '' */
187
+ i.icon.thumbs.down:before { content: '👎'; } /* '\1f44e' */
188
+ i.icon.thumbs.up:before { content: '👍'; } /* '\1f44d' */
189
+ i.icon.to-end:before { content: '\e806'; } /* '' */
190
+ i.icon.to-start:before { content: '\e805'; } /* '' */
191
+ i.icon.top.list:before { content: '🏆'; } /* '\1f3c6' */
192
+ i.icon.trash:before { content: '\e729'; } /* '' */
193
+ i.icon.twitter:before { content: '\f303'; } /* '' */
194
+ i.icon.upload:before { content: '\e711'; } /* '' */
195
+ i.icon.user.add:before { content: '\e700'; } /* '' */
196
+ i.icon.user:before { content: '👤'; } /* '\1f464' */
197
+ i.icon.community:before { content: '\e814'; } /* '' */
198
+ i.icon.users:before { content: '👥'; } /* '\1f465' */
199
+ i.icon.id:before { content: '\e722'; } /* '' */
200
+ i.icon.url:before { content: '🔗'; } /* '\1f517' */
201
+ i.icon.zoom.in:before { content: '\e750'; } /* '' */
202
+ i.icon.zoom.out:before { content: '\e751'; } /* '' */
203
+
204
+ /*--------------
205
+ Spacing Fix
206
+ ---------------*/
207
+
208
+ /* dropdown arrows are to the right */
209
+ i.dropdown.icon {
210
+ margin: 0em 0em 0em 0.5em;
211
+ }
212
+
213
+ /* stars are usually consecutive */
214
+ i.icon.star {
215
+ width: auto;
216
+ margin: 0em;
217
+ }
218
+
219
+ /* left side icons */
220
+ i.icon.left,
221
+ i.icon.left,
222
+ i.icon.left {
223
+ width: auto;
224
+ margin: 0em 0.5em 0em 0em;
225
+ }
226
+
227
+ /* right side icons */
228
+ i.icon.search,
229
+ i.icon.up,
230
+ i.icon.down,
231
+ i.icon.right {
232
+ width: auto;
233
+ margin: 0em 0em 0em 0.5em;
234
+ }
235
+
236
+ /*--------------
237
+ Aliases
238
+ ---------------*/
239
+
240
+ /* aliases for convenience */
241
+ i.icon.delete:before { content: '\e80d'; } /* '' */
242
+ i.icon.dropdown:before { content: '\25be'; } /* '▾' */
243
+
244
+ i.icon.help:before { content: '\e704'; } /* '' */
245
+ i.icon.info:before { content: '\e705'; } /* '' */
246
+ i.icon.error:before { content: '\e80d'; } /* '' */
247
+
248
+ i.icon.dislike:before { content: '\2661'; } /* '♡' */
249
+ i.icon.like:before { content: '\2665'; } /* '♥' */
250
+
251
+ i.icon.eye:before { content: '\e80f'; } /* '' */
252
+ i.icon.eye.hidden:before { content: '\e70b'; } /* '' */
253
+ i.icon.date:before { content: '📅'; } /* '\1f4c5' */
254
+
255
+
256
+ /*******************************
257
+ States
258
+ *******************************/
259
+
260
+ i.icon.hover {
261
+ opacity: 1;
262
+ }
263
+
264
+ i.icon.active {
265
+ opacity: 1;
266
+ }
267
+
268
+ i.emphasized.icon {
269
+ opacity: 1;
270
+ }
271
+
272
+ i.icon.disabled {
273
+ opacity: 0.3;
274
+ }
275
+
276
+
277
+ /*******************************
278
+ Variations
279
+ *******************************/
280
+
281
+ /*-------------------
282
+ Link
283
+ --------------------*/
284
+
285
+ i.link.icon {
286
+ cursor: pointer;
287
+ opacity: 0.7;
288
+ -webkit-transition: opacity 0.3s ease-out;
289
+ -moz-transition: opacity 0.3s ease-out;
290
+ -o-transition: opacity 0.3s ease-out;
291
+ -ms-transition: opacity 0.3s ease-out;
292
+ transition: opacity 0.3s ease-out;
293
+ }
294
+ .link.icon:hover {
295
+ opacity: 1 !important;
296
+ }
297
+
298
+ /*-------------------
299
+ Circular
300
+ --------------------*/
301
+
302
+ i.circular.icon {
303
+ -webkit-border-radius: 500px;
304
+ -moz-border-radius: 500px;
305
+ border-radius: 500px;
306
+
307
+ padding: 0.5em 0.35em !important;
308
+
309
+ -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
310
+ -moz-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
311
+ box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
312
+
313
+ line-height: 1 !important;
314
+ width: 2em !important;
315
+ height: 2em !important;
316
+ }
317
+ i.circular.icon:before {
318
+ vertical-align: middle;
319
+ }
320
+ i.circular.inverted.icon {
321
+ border: none;
322
+ -webkit-box-shadow: none;
323
+ -moz-box-shadow: none;
324
+ box-shadow: none;
325
+ }
326
+
327
+
328
+ /*-------------------
329
+ Square
330
+ --------------------*/
331
+
332
+ i.square.icon {
333
+ width: 2em;
334
+ height: 2em;
335
+ padding: 0.5em 0.35em !important;
336
+
337
+ -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
338
+ -moz-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
339
+ box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
340
+
341
+ vertical-align: baseline;
342
+ }
343
+ i.square.icon:before {
344
+ vertical-align: middle;
345
+ }
346
+ i.square.inverted.icon {
347
+ border: none;
348
+ -webkit-box-shadow: none;
349
+ -moz-box-shadow: none;
350
+ box-shadow: none;
351
+ }
352
+
353
+
354
+ /*-------------------
355
+ Inverted
356
+ --------------------*/
357
+
358
+ i.inverted.icon {
359
+ background-color: #222222;
360
+ color: #FFFFFF;
361
+ }
362
+
363
+ /*-------------------
364
+ Colors
365
+ --------------------*/
366
+
367
+ i.blue.icon {
368
+ color: #6ECFF5 !important;
369
+ }
370
+ i.black.icon {
371
+ color: #5C6166 !important;
372
+ }
373
+ i.green.icon {
374
+ color: #A1CF64 !important;
375
+ }
376
+ i.red.icon {
377
+ color: #D95C5C !important;
378
+ }
379
+ i.purple.icon {
380
+ color: #564F8A !important;
381
+ }
382
+ i.teal.icon {
383
+ color: #00B5AD !important;
384
+ }
385
+
386
+ /*-------------------
387
+ Inverted Colors
388
+ --------------------*/
389
+
390
+ i.inverted.black.icon {
391
+ background-color: #5C6166 !important;
392
+ color: #FFFFFF !important;
393
+ }
394
+ i.inverted.blue.icon {
395
+ background-color: #6ECFF5 !important;
396
+ color: #FFFFFF !important;
397
+ }
398
+ i.inverted.green.icon {
399
+ background-color: #A1CF64 !important;
400
+ color: #FFFFFF !important;
401
+ }
402
+ i.inverted.red.icon {
403
+ background-color: #D95C5C !important;
404
+ color: #FFFFFF !important;
405
+ }
406
+ i.inverted.purple.icon {
407
+ background-color: #564F8A !important;
408
+ color: #FFFFFF !important;
409
+ }
410
+ i.inverted.teal.icon {
411
+ background-color: #00B5AD !important;
412
+ color: #FFFFFF !important;
413
+ }
414
+
415
+
416
+ /*-------------------
417
+ Sizes
418
+ --------------------*/
419
+
420
+ i.small.icon {
421
+ font-size: 0.875em;
422
+ }
423
+ i.icon {
424
+ font-size: 1em;
425
+ }
426
+ i.large.icon {
427
+ font-size: 2em;
428
+ margin-right: 0.5em;
429
+ vertical-align: middle;
430
+ }
431
+ i.huge.icon {
432
+ font-size: 4em;
433
+ margin-right: 0.75em;
434
+ vertical-align: middle;
435
+ }
436
+ i.massive.icon {
437
+ font-size: 8em;
438
+ margin-right: 1em;
439
+ vertical-align: middle;
440
+ }
441
+
442
+ /*--------------
443
+ Sketchy Sizing
444
+ ---------------*/
445
+
446
+ i.sketchy.circular.icon,
447
+ i.sketchy.square.icon {
448
+ padding: 0.35em !important;
449
+ }
@@ -0,0 +1,170 @@
1
+ /*
2
+ * # Semantic Image
3
+ * http://github.com/quirkyinc/semantic
4
+ *
5
+ *
6
+ * Copyright 2013 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ * Released: April 17 2013
11
+ */
12
+
13
+
14
+ /*******************************
15
+ Image
16
+ *******************************/
17
+
18
+ .ui.image {
19
+ position: relative;
20
+ display: inline-block;
21
+ vertical-align: middle;
22
+ max-width: 100%;
23
+ background-color: rgba(0, 0, 0, 0.05);
24
+ }
25
+ img.ui.image {
26
+ display: block;
27
+ background: none;
28
+ }
29
+ .ui.image img {
30
+ display: block;
31
+ max-width: 100%;
32
+ height: auto;
33
+ }
34
+
35
+ /*******************************
36
+ States
37
+ *******************************/
38
+
39
+
40
+ .ui.disabled.image {
41
+ cursor: default;
42
+ opacity: 0.3;
43
+ }
44
+
45
+
46
+ /*******************************
47
+ Variations
48
+ *******************************/
49
+
50
+ /*--------------
51
+ Rounded
52
+ ---------------*/
53
+
54
+ .ui.rounded.images .image,
55
+ .ui.rounded.images img,
56
+ .ui.rounded.image img,
57
+ .ui.rounded.image {
58
+ -webkit-border-radius: 0.3125em;
59
+ -moz-border-radius: 0.3125em;
60
+ border-radius: 0.3125em;
61
+ }
62
+
63
+ /*--------------
64
+ Circular
65
+ ---------------*/
66
+
67
+ .ui.circular.images .image,
68
+ .ui.circular.images img,
69
+ .ui.circular.image img,
70
+ .ui.circular.image {
71
+ -webkit-border-radius: 500rem;
72
+ -moz-border-radius: 500rem;
73
+ border-radius: 500rem;
74
+ }
75
+
76
+ /*--------------
77
+ Avatar
78
+ ---------------*/
79
+
80
+
81
+ .ui.avatar.images .image,
82
+ .ui.avatar.images img,
83
+ .ui.avatar.image img,
84
+ .ui.avatar.image {
85
+ margin-right: 0.5em;
86
+
87
+ display: inline-block;
88
+ width: 2em;
89
+ height: 2em;
90
+
91
+ -webkit-border-radius: 500rem;
92
+ -moz-border-radius: 500rem;
93
+ border-radius: 500rem;
94
+ }
95
+
96
+
97
+
98
+ /*-------------------
99
+ Floated
100
+ --------------------*/
101
+
102
+ .ui.floated.image,
103
+ .ui.floated.images {
104
+ float: left;
105
+ margin-right: 1em;
106
+ margin-bottom: 1em;
107
+ }
108
+ .ui.right.floated.images,
109
+ .ui.right.floated.image {
110
+ float: right;
111
+ margin-bottom: 1em;
112
+ margin-left: 1em;
113
+ }
114
+
115
+
116
+ /*--------------
117
+ Sizes
118
+ ---------------*/
119
+
120
+ .ui.tiny.images .image,
121
+ .ui.tiny.images img,
122
+ .ui.tiny.image {
123
+ width: 20px;
124
+ font-size: 0.7rem;
125
+ }
126
+ .ui.mini.images .image,
127
+ .ui.mini.images img,
128
+ .ui.mini.image {
129
+ width: 35px;
130
+ font-size: 0.8rem;
131
+ }
132
+ .ui.small.images .image,
133
+ .ui.small.images img,
134
+ .ui.small.image {
135
+ width: 80px;
136
+ font-size: 0.9rem;
137
+ }
138
+ .ui.medium.images .image,
139
+ .ui.medium.images img,
140
+ .ui.medium.image {
141
+ width: 300px;
142
+ font-size: 1rem;
143
+ }
144
+ .ui.large.images .image,
145
+ .ui.large.images img,
146
+ .ui.large.image {
147
+ width: 450px;
148
+ font-size: 1.1rem;
149
+ }
150
+ .ui.huge.images .image,
151
+ .ui.huge.images img,
152
+ .ui.huge.image {
153
+ width: 600px;
154
+ font-size: 1.2rem;
155
+ }
156
+
157
+ /*******************************
158
+ Groups
159
+ *******************************/
160
+
161
+ .ui.images {
162
+ font-size: 0em;
163
+ margin: 0em -0.25rem 0rem;
164
+ }
165
+
166
+ .ui.images .image,
167
+ .ui.images img {
168
+ display: inline-block;
169
+ margin: 0em 0.25em 0.5em;
170
+ }