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,827 @@
1
+ /*
2
+ * # Semantic - Label
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
+ Label
14
+ *******************************/
15
+
16
+ .ui.label {
17
+ display: inline-block;
18
+ vertical-align: middle;
19
+
20
+ margin: -0.25em 0.25em 0em;
21
+
22
+ background-color: #E8E8E8;
23
+ border-color: #E8E8E8;
24
+
25
+ padding: 0.5em 0.8em;
26
+ color: rgba(0, 0, 0, 0.65);
27
+
28
+ text-transform: uppercase;
29
+ font-weight: normal;
30
+
31
+ -webkit-border-radius: 0.325em;
32
+ -moz-border-radius: 0.325em;
33
+ border-radius: 0.325em;
34
+
35
+ -webkit-box-sizing: border-box;
36
+ -moz-box-sizing: border-box;
37
+ -ms-box-sizing: border-box;
38
+ box-sizing: border-box;
39
+
40
+ -webkit-transition:
41
+ background 0.1s linear
42
+ ;
43
+ -moz-transition:
44
+ background 0.1s linear
45
+ ;
46
+ -o-transition:
47
+ background 0.1s linear
48
+ ;
49
+ -ms-transition:
50
+ background 0.1s linear
51
+ ;
52
+ transition:
53
+ background 0.1s linear
54
+ ;
55
+ }
56
+
57
+ .ui.label:first-child {
58
+ margin-left: 0em;
59
+ }
60
+ .ui.label:last-child {
61
+ margin-right: 0em;
62
+ }
63
+
64
+
65
+ /* Link */
66
+ a.ui.label {
67
+ cursor: pointer;
68
+ }
69
+
70
+ /* Detail */
71
+ .ui.label .detail {
72
+ display: inline-block;
73
+ margin-left: 0.5em;
74
+ font-weight: bold;
75
+ opacity: 0.8;
76
+ }
77
+
78
+ /* Icon */
79
+ .ui.label .icon {
80
+ width: auto;
81
+ }
82
+
83
+ /* Removable label */
84
+ .ui.label .delete.icon {
85
+ cursor: pointer;
86
+ margin: 0em 0em 0em 0.5em;
87
+ opacity: 0.7;
88
+
89
+ -webkit-transition:
90
+ background 0.1s linear
91
+ ;
92
+ -moz-transition:
93
+ background 0.1s linear
94
+ ;
95
+ -o-transition:
96
+ background 0.1s linear
97
+ ;
98
+ -ms-transition:
99
+ background 0.1s linear
100
+ ;
101
+ transition:
102
+ background 0.1s linear
103
+ ;
104
+ }
105
+ .ui.label .delete.icon:hover {
106
+ opacity: 0.99;
107
+ }
108
+
109
+ /*******************************
110
+ Types
111
+ *******************************/
112
+
113
+ .ui.image.label {
114
+ width: auto !important;
115
+ margin-top: 0em;
116
+ margin-bottom: 0em;
117
+
118
+ padding-top: 0.4em;
119
+ padding-bottom: 0.4em;
120
+
121
+ line-height: 1.5em;
122
+ vertical-align: baseline;
123
+ text-transform: none;
124
+
125
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
126
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
127
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
128
+ }
129
+ .ui.image.label img {
130
+ display: inline-block;
131
+ height: 2.25em;
132
+ margin: -0.4em 0.8em -0.4em -0.8em;
133
+ vertical-align: top;
134
+
135
+ -moz-border-radius: 0.325em 0em 0em 0.325em;
136
+ -webkit-border-radius: 0.325em 0em 0em 0.325em;
137
+ border-radius: 0.325em 0em 0em 0.325em;
138
+ }
139
+
140
+ /*******************************
141
+ States
142
+ *******************************/
143
+
144
+ /*-------------------
145
+ Disabled
146
+ --------------------*/
147
+
148
+ .ui.label.disabled {
149
+ opacity: 0.5;
150
+ }
151
+
152
+
153
+ /*-------------------
154
+ Hover
155
+ --------------------*/
156
+
157
+ a.ui.labels .label:hover,
158
+ a.ui.label:hover {
159
+ background-color: #E0E0E0;
160
+ border-color: #E0E0E0;
161
+ color: rgba(0, 0, 0, 0.7);
162
+ }
163
+ .ui.labels a.label:hover:before,
164
+ a.ui.label:hover:before {
165
+ background-color: #E0E0E0;
166
+ color: rgba(0, 0, 0, 0.7);
167
+ }
168
+
169
+ /*-------------------
170
+ Visible
171
+ --------------------*/
172
+
173
+ .ui.labels.visible .label,
174
+ .ui.label.visible {
175
+ display: inline-block !important;
176
+ }
177
+
178
+ /*-------------------
179
+ Hidden
180
+ --------------------*/
181
+
182
+ .ui.labels.hidden .label,
183
+ .ui.label.hidden {
184
+ display: none !important;
185
+ }
186
+
187
+
188
+
189
+ /*******************************
190
+ Variations
191
+ *******************************/
192
+
193
+
194
+ /*-------------------
195
+ Tag
196
+ --------------------*/
197
+
198
+ .ui.tag.labels .label,
199
+ .ui.tag.label {
200
+ margin-left: 1em;
201
+ position: relative;
202
+ padding: 0.33em 1.3em 0.33em 1.4em;
203
+
204
+ -webkit-border-radius: 0px 3px 3px 0px;
205
+ -moz-border-radius: 0px 3px 3px 0px;
206
+ border-radius: 0px 3px 3px 0px;
207
+ }
208
+ .ui.tag.labels .label:before,
209
+ .ui.tag.label:before {
210
+ position: absolute;
211
+ top: 0.3em;
212
+ left: 0.3em;
213
+ content: '';
214
+
215
+ margin-left: -1em;
216
+ background-image: none;
217
+
218
+ width: 1.5em;
219
+ height: 1.5em;
220
+
221
+ -webkit-transform: rotate(45deg);
222
+ -moz-transform: rotate(45deg);
223
+ transform: rotate(45deg);
224
+
225
+ -webkit-transition:
226
+ background 0.1s linear
227
+ ;
228
+ -moz-transition:
229
+ background 0.1s linear
230
+ ;
231
+ -o-transition:
232
+ background 0.1s linear
233
+ ;
234
+ -ms-transition:
235
+ background 0.1s linear
236
+ ;
237
+ transition:
238
+ background 0.1s linear
239
+ ;
240
+ }
241
+
242
+
243
+ .ui.tag.labels .label:after,
244
+ .ui.tag.label:after {
245
+ position: absolute;
246
+ content: '';
247
+ top: 50%;
248
+ left: -0.25em;
249
+
250
+ margin-top: -0.3em;
251
+ background-color: #FFFFFF;
252
+ width: 0.55em;
253
+ height: 0.55em;
254
+
255
+ -webkit-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
256
+ -moz-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
257
+ box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
258
+
259
+ -moz-border-radius: 100px 100px 100px 100px;
260
+ -webkit-border-radius: 100px 100px 100px 100px;
261
+ border-radius: 100px 100px 100px 100px;
262
+ }
263
+ /*-------------------
264
+ Ribbon
265
+ --------------------*/
266
+
267
+ .ui.ribbon.label {
268
+ position: relative;
269
+ left: -1.8rem;
270
+ padding-left: 2rem;
271
+ -webkit-border-radius: 0px 4px 4px 0px;
272
+ -moz-border-radius: 0px 4px 4px 0px;
273
+ border-radius: 0px 4px 4px 0px;
274
+ }
275
+
276
+ .ui.ribbon.label:after {
277
+ position: absolute;
278
+ content: "";
279
+
280
+ top: 100%;
281
+ left: 0%;
282
+
283
+ border-top: 0em solid transparent;
284
+ border-right-width: 1em;
285
+ border-right-color: inherit;
286
+ border-right-style: solid;
287
+ border-bottom: 1em solid transparent;
288
+ border-left: 0em solid transparent;
289
+
290
+ width: 0em;
291
+ height: 0em;
292
+ }
293
+
294
+ /*-------------------
295
+ Attached
296
+ --------------------*/
297
+
298
+ .ui.top.attached.label,
299
+ .ui.attached.label {
300
+ width: 100%;
301
+ position: absolute;
302
+ margin: 0em;
303
+ top: 0em;
304
+ left: 0em;
305
+ -webkit-border-radius: 4px 4px 0em 0em;
306
+ -moz-border-radius: 4px 4px 0em 0em;
307
+ border-radius: 4px 4px 0em 0em;
308
+ }
309
+ .ui.bottom.attached.label {
310
+ top: auto;
311
+ bottom: 0em;
312
+
313
+ -webkit-border-radius: 0em 0em 4px 4px;
314
+ -moz-border-radius: 0em 0em 4px 4px;
315
+ border-radius: 0em 0em 4px 4px;
316
+ }
317
+
318
+ .ui.top.left.attached.label {
319
+ width: auto;
320
+ margin-top: 0em !important;
321
+
322
+ -webkit-border-radius: 4px 0em 4px 0em;
323
+ -moz-border-radius: 4px 0em 4px 0em;
324
+ border-radius: 4px 0em 4px 0em;
325
+ }
326
+
327
+ .ui.top.right.attached.label {
328
+ width: auto;
329
+ left: auto;
330
+ right: 0em;
331
+
332
+ -webkit-border-radius: 0em 4px 0em 4px;
333
+ -moz-border-radius: 0em 4px 0em 4px;
334
+ border-radius: 0em 4px 0em 4px;
335
+ }
336
+ .ui.bottom.left.attached.label {
337
+ width: auto;
338
+ top: auto;
339
+ bottom: 0em;
340
+
341
+ -webkit-border-radius: 4px 0em 0em 4px;
342
+ -moz-border-radius: 4px 0em 0em 4px;
343
+ border-radius: 4px 0em 0em 4px;
344
+ }
345
+ .ui.bottom.right.attached.label {
346
+ top: auto;
347
+ bottom: 0em;
348
+ left: auto;
349
+ right: 0em;
350
+ width: auto;
351
+ -webkit-border-radius: 4px 0em 4px 0em;
352
+ -moz-border-radius: 4px 0em 4px 0em;
353
+ border-radius: 4px 0em 4px 0em;
354
+ }
355
+
356
+ /*-------------------
357
+ Corner Label
358
+ --------------------*/
359
+
360
+ .ui.corner.label {
361
+ background-color: transparent;
362
+ position: absolute;
363
+ top: 0em;
364
+ right: 0em;
365
+ z-index: 10;
366
+ margin: 0em;
367
+
368
+ font-size: 0.8125em;
369
+ width: 2rem;
370
+ height: 2rem;
371
+ padding: 0em;
372
+
373
+ text-align: center;
374
+
375
+ -webkit-transition: color 0.2s ease;
376
+ -moz-transition: color 0.2s ease;
377
+ -o-transition: color 0.2s ease;
378
+ -ms-transition: color 0.2s ease;
379
+ transition: color 0.2s ease;
380
+ }
381
+ .ui.corner.label:after {
382
+ position: absolute;
383
+ content: "";
384
+ right: 0em;
385
+ top: 0em;
386
+ z-index: -1;
387
+
388
+ width: 0em;
389
+ height: 0em;
390
+
391
+ border-top: 0em solid transparent;
392
+ border-right: 3em solid transparent;
393
+ border-bottom: 3em solid transparent;
394
+ border-left: 0em solid transparent;
395
+
396
+ border-right-color: inherit;
397
+
398
+ -webkit-transition: border-color 0.2s ease;
399
+ -moz-transition: border-color 0.2s ease;
400
+ -o-transition: border-color 0.2s ease;
401
+ -ms-transition: border-color 0.2s ease;
402
+ transition: border-color 0.2s ease;
403
+ }
404
+
405
+ .ui.corner.label .icon {
406
+ margin: 0.4em 0em 0em 0.7em;
407
+ }
408
+ .ui.corner.label .text {
409
+ display: inline-block;
410
+ font-weight: bold;
411
+ margin: 0.5em 0em 0em 0.6em;
412
+ width: 2.5em;
413
+
414
+ font-size: 0.82em;
415
+ text-align: center;
416
+
417
+ -webkit-transform: rotate(45deg);
418
+ -moz-transform: rotate(45deg);
419
+ -o-transform: rotate(45deg);
420
+ -ms-transform: rotate(45deg);
421
+ transform: rotate(45deg);
422
+ }
423
+
424
+ /* Left Corner */
425
+ .ui.left.corner.label,
426
+ .ui.left.corner.label:after {
427
+ right: auto;
428
+ left: 0em;
429
+ }
430
+ .ui.left.corner.label:after {
431
+ border-top: 3em solid transparent;
432
+ border-right: 3em solid transparent;
433
+ border-bottom: 0em solid transparent;
434
+ border-left: 0em solid transparent;
435
+
436
+ border-top-color: inherit;
437
+ }
438
+ .ui.left.corner.label .icon {
439
+ margin: 0.4em 0em 0em -0.7em;
440
+ }
441
+ .ui.left.corner.label .text {
442
+ margin: 0.5em 0em 0em -0.6em;
443
+ -webkit-transform: rotate(-45deg);
444
+ -moz-transform: rotate(-45deg);
445
+ -o-transform: rotate(-45deg);
446
+ -ms-transform: rotate(-45deg);
447
+ transform: rotate(-45deg);
448
+ }
449
+
450
+
451
+ /* Hover */
452
+ .ui.corner.label:hover {
453
+ background-color: transparent;
454
+ }
455
+
456
+
457
+ /*-------------------
458
+ Fluid
459
+ --------------------*/
460
+
461
+ .ui.label.fluid,
462
+ .ui.fluid.labels > .label {
463
+ width: 100%;
464
+ -webkit-box-sizing: border-box;
465
+ -moz-box-sizing: border-box;
466
+ -ms-box-sizing: border-box;
467
+ box-sizing: border-box;
468
+ }
469
+
470
+ /*-------------------
471
+ Inverted
472
+ --------------------*/
473
+
474
+ .ui.inverted.labels .label,
475
+ .ui.inverted.label {
476
+ color: #FFFFFF !important;
477
+ }
478
+
479
+ /*-------------------
480
+ Colors
481
+ --------------------*/
482
+
483
+ /*--- Black ---*/
484
+ .ui.black.labels .label,
485
+ .ui.black.label {
486
+ background-color: #5C6166 !important;
487
+ border-color: #5C6166 !important;
488
+ color: #FFFFFF !important;
489
+ }
490
+ .ui.labels .black.label:before,
491
+ .ui.black.labels .label:before,
492
+ .ui.black.label:before {
493
+ background-color: #5C6166 !important;
494
+ }
495
+ /* Hover */
496
+ a.ui.black.labels .label:hover,
497
+ a.ui.black.label:hover {
498
+ background-color: #888888 !important;
499
+ border-color: #888888 !important;
500
+ }
501
+ .ui.labels a.black.label:hover:before,
502
+ .ui.black.labels a.label:hover:before,
503
+ a.ui.black.label:hover:before {
504
+ background-color: #888888 !important;
505
+ }
506
+
507
+ /* Corner */
508
+ .ui.black.corner.label,
509
+ .ui.black.corner.label:hover {
510
+ background-color: transparent !important;
511
+ }
512
+
513
+
514
+ /*--- Green ---*/
515
+ .ui.green.labels .label,
516
+ .ui.green.label {
517
+ background-color: #A1CF64 !important;
518
+ border-color: #A1CF64 !important;
519
+ color: #FFFFFF !important;
520
+ }
521
+ .ui.labels .green.label:before,
522
+ .ui.green.labels .label:before,
523
+ .ui.green.label:before {
524
+ background-color: #A1CF64 !important;
525
+ }
526
+
527
+ /* Hover */
528
+ a.ui.green.labels .label:hover,
529
+ a.ui.green.label:hover {
530
+ background-color: #89B84C !important;
531
+ border-color: #89B84C !important;
532
+ }
533
+ .ui.labels a.green.label:hover:before,
534
+ .ui.green.labels a.label:hover:before,
535
+ a.ui.green.label:hover:before {
536
+ background-color: #89B84C !important;
537
+ }
538
+
539
+ /* Corner */
540
+ .ui.green.corner.label,
541
+ .ui.green.corner.label:hover {
542
+ background-color: transparent !important;
543
+ }
544
+
545
+
546
+ /*--- Red ---*/
547
+ .ui.red.labels .label,
548
+ .ui.red.label {
549
+ background-color: #D95C5C !important;
550
+ border-color: #D95C5C !important;
551
+ color: #FFFFFF !important;
552
+ }
553
+ .ui.labels .red.label:before,
554
+ .ui.red.labels .label:before,
555
+ .ui.red.label:before {
556
+ background-color: #D95C5C !important;
557
+ }
558
+ /* Corner */
559
+ .ui.red.corner.label,
560
+ .ui.red.corner.label:hover {
561
+ background-color: transparent !important;
562
+ }
563
+
564
+ /* Hover */
565
+ a.ui.red.labels .label:hover,
566
+ a.ui.red.label:hover{
567
+ background-color: #DE3859 !important;
568
+ border-color: #DE3859 !important;
569
+ color: #FFFFFF !important;
570
+ }
571
+ .ui.labels a.red.label:hover:before,
572
+ .ui.red.labels a.label:hover:before,
573
+ a.ui.red.label:hover:before {
574
+ background-color: #DE3859 !important;
575
+ }
576
+
577
+
578
+ /*--- Blue ---*/
579
+ .ui.blue.labels .label,
580
+ .ui.blue.label {
581
+ background-color: #6ECFF5 !important;
582
+ border-color: #6ECFF5 !important;
583
+ color: #FFFFFF !important;
584
+ }
585
+ .ui.labels .blue.label:before,
586
+ .ui.blue.labels .label:before,
587
+ .ui.blue.label:before {
588
+ background-color: #6ECFF5 !important;
589
+ }
590
+ /* Hover */
591
+ a.ui.blue.labels .label:hover,
592
+ .ui.blue.labels a.label:hover,
593
+ a.ui.blue.label:hover {
594
+ background-color: #1AB8F3 !important;
595
+ border-color: #1AB8F3 !important;
596
+ color: #FFFFFF !important;
597
+ }
598
+ .ui.labels a.blue.label:hover:before,
599
+ .ui.blue.labels a.label:hover:before,
600
+ a.ui.blue.label:hover:before {
601
+ background-color: #1AB8F3 !important;
602
+ }
603
+ /* Corner */
604
+ .ui.blue.corner.label,
605
+ .ui.blue.corner.label:hover {
606
+ background-color: transparent !important;
607
+ }
608
+
609
+ /*--- Purple ---*/
610
+ .ui.purple.labels .label,
611
+ .ui.purple.label {
612
+ background-color: #564F8A !important;
613
+ border-color: #564F8A !important;
614
+ color: #FFFFFF !important;
615
+ }
616
+ .ui.labels .purple.label:before,
617
+ .ui.purple.labels .label:before,
618
+ .ui.purple.label:before {
619
+ background-color: #564F8A !important;
620
+ }
621
+ /* Hover */
622
+ a.ui.purple.labels .label:hover,
623
+ .ui.purple.labels a.label:hover,
624
+ a.ui.purple.label:hover {
625
+ background-color: #3E3773 !important;
626
+ border-color: #3E3773 !important;
627
+ color: #FFFFFF !important;
628
+ }
629
+ .ui.labels a.purple.label:hover:before,
630
+ .ui.purple.labels a.label:hover:before,
631
+ a.ui.purple.label:hover:before {
632
+ background-color: #3E3773 !important;
633
+ }
634
+ /* Corner */
635
+ .ui.purple.corner.label,
636
+ .ui.purple.corner.label:hover {
637
+ background-color: transparent !important;
638
+ }
639
+
640
+
641
+ /*--- Pink ---*/
642
+ .ui.teal.labels .label,
643
+ .ui.teal.label {
644
+ background-color: #00B5AD !important;
645
+ border-color: #00B5AD !important;
646
+ color: #FFFFFF !important;
647
+ }
648
+ .ui.labels .teal.label:before,
649
+ .ui.teal.labels .label:before,
650
+ .ui.teal.label:before {
651
+ background-color: #00B5AD !important;
652
+ }
653
+ /* Hover */
654
+ a.ui.teal.labels .label:hover,
655
+ .ui.teal.labels a.label:hover,
656
+ a.ui.teal.label:hover {
657
+ background-color: #009A93 !important;
658
+ border-color: #009A93 !important;
659
+ color: #FFFFFF !important;
660
+ }
661
+ .ui.labels a.teal.label:hover:before,
662
+ .ui.teal.labels a.label:hover:before,
663
+ a.ui.teal.label:hover:before {
664
+ background-color: #009A93 !important;
665
+ }
666
+ /* Corner */
667
+ .ui.teal.corner.label,
668
+ .ui.teal.corner.label:hover {
669
+ background-color: transparent !important;
670
+ }
671
+
672
+ /*-------------------
673
+ Horizontal
674
+ --------------------*/
675
+
676
+ .ui.horizontal.labels .label,
677
+ .ui.horizontal.label {
678
+ margin: -0.125em 0.5em -0.125em 0em;
679
+
680
+ padding: 0.35em 1em;
681
+ min-width: 6em;
682
+ text-align: center;
683
+ }
684
+
685
+
686
+ /*-------------------
687
+ Circular
688
+ --------------------*/
689
+
690
+ .ui.circular.labels .label,
691
+ .ui.circular.label {
692
+ min-height: 1em;
693
+ max-height: 2em;
694
+
695
+ padding: 0.5em !important;
696
+
697
+ line-height: 1em;
698
+ text-align: center;
699
+
700
+ -webkit-border-radius: 500rem;
701
+ -moz-border-radius: 500rem;
702
+ border-radius: 500rem;
703
+ }
704
+
705
+ /*-------------------
706
+ Pointing
707
+ --------------------*/
708
+
709
+ .ui.pointing.label {
710
+ position: relative;
711
+ }
712
+ .ui.attached.pointing.label {
713
+ position: absolute;
714
+ }
715
+
716
+ .ui.pointing.label:before {
717
+ position: absolute;
718
+ content: "";
719
+
720
+ width: 0.6em;
721
+ height: 0.6em;
722
+
723
+ background-image: none;
724
+
725
+ -webkit-transform: rotate(45deg);
726
+ -moz-transform: rotate(45deg);
727
+ transform: rotate(45deg);
728
+ z-index: 2;
729
+
730
+ -webkit-transition:
731
+ background 0.1s linear
732
+ ;
733
+ -moz-transition:
734
+ background 0.1s linear
735
+ ;
736
+ -o-transition:
737
+ background 0.1s linear
738
+ ;
739
+ -ms-transition:
740
+ background 0.1s linear
741
+ ;
742
+ transition:
743
+ background 0.1s linear
744
+ ;
745
+ }
746
+ /*--- Above ---*/
747
+ .ui.pointing.label:before {
748
+ background-color: #E8E8E8;
749
+ }
750
+ .ui.pointing.label,
751
+ .ui.pointing.above.label {
752
+ margin-top: 1em;
753
+ }
754
+ .ui.pointing.label:before,
755
+ .ui.pointing.above.label:before {
756
+ margin-left: -0.3em;
757
+ top: -0.3em;
758
+ left: 50%;
759
+ }
760
+ /*--- Below ---*/
761
+ .ui.pointing.below.label {
762
+ margin-top: 0em;
763
+ margin-bottom: 1em;
764
+ }
765
+ .ui.pointing.below.label:before {
766
+ margin-left: -0.3em;
767
+ top: auto;
768
+ right: auto;
769
+ bottom: -0.3em;
770
+ left: 50%;
771
+ }
772
+ /*--- Left ---*/
773
+ .ui.pointing.left.label {
774
+ margin-top: 0em;
775
+ margin-left: 1em;
776
+ }
777
+ .ui.pointing.left.label:before {
778
+ margin-top: -0.3em;
779
+ bottom: auto;
780
+ right: auto;
781
+ top: 50%;
782
+ left: 0em;
783
+ }
784
+ /*--- Right ---*/
785
+ .ui.pointing.right.label {
786
+ margin-top: 0em;
787
+ margin-right: 1em;
788
+ }
789
+ .ui.pointing.right.label:before {
790
+ margin-top: -0.3em;
791
+ right: -0.3em;
792
+ top: 50%;
793
+ bottom: auto;
794
+ left: auto;
795
+ }
796
+
797
+ /*------------------
798
+ Floating Label
799
+ -------------------*/
800
+
801
+ .ui.floating.label {
802
+ position: absolute;
803
+ z-index: 100;
804
+ top: -1em;
805
+ left: 100%;
806
+ margin: 0em 0em 0em -1.5em !important;
807
+ }
808
+
809
+ /*-------------------
810
+ Sizes
811
+ --------------------*/
812
+
813
+ .ui.small.labels .label,
814
+ .ui.small.label {
815
+ font-size: 0.75rem;
816
+ }
817
+ .ui.label {
818
+ font-size: 0.8125rem;
819
+ }
820
+ .ui.large.labels .label,
821
+ .ui.large.label {
822
+ font-size: 0.875rem;
823
+ }
824
+ .ui.huge.labels .label,
825
+ .ui.huge.label {
826
+ font-size: 1rem;
827
+ }