UNPKG

44.2 kBCSSView Raw
1/*!
2 * # Semantic UI 2.7.2 - Label
3 * http://github.com/semantic-org/semantic-ui/
4 *
5 *
6 * Released under the MIT license
7 * http://opensource.org/licenses/MIT
8 *
9 */
10
11
12/*******************************
13 Label
14*******************************/
15
16.ui.label {
17 display: inline-block;
18 line-height: 1;
19 vertical-align: baseline;
20 margin: 0 0.14285714em;
21 background-color: #E8E8E8;
22 background-image: none;
23 padding: 0.5833em 0.833em;
24 color: rgba(0, 0, 0, 0.6);
25 text-transform: none;
26 font-weight: bold;
27 border: 0 solid transparent;
28 border-radius: 0.28571429rem;
29 -webkit-transition: background 0.1s ease;
30 transition: background 0.1s ease;
31}
32.ui.label:first-child {
33 margin-left: 0;
34}
35.ui.label:last-child {
36 margin-right: 0;
37}
38
39/* Link */
40a.ui.label {
41 cursor: pointer;
42}
43
44/* Inside Link */
45.ui.label > a {
46 cursor: pointer;
47 color: inherit;
48 opacity: 0.5;
49 -webkit-transition: 0.1s opacity ease;
50 transition: 0.1s opacity ease;
51}
52.ui.label > a:hover {
53 opacity: 1;
54}
55
56/* Image */
57.ui.label > img {
58 width: auto !important;
59 vertical-align: middle;
60 height: 2.1666em;
61}
62
63/* Icon */
64.ui.left.icon.label > .icon,
65.ui.label > .icon {
66 width: auto;
67 margin: 0 0.75em 0 0;
68}
69
70/* Detail */
71.ui.label > .detail {
72 display: inline-block;
73 vertical-align: top;
74 font-weight: bold;
75 margin-left: 1em;
76 opacity: 0.8;
77}
78.ui.label > .detail .icon {
79 margin: 0 0.25em 0 0;
80}
81
82/* Removable label */
83.ui.label > .close.icon,
84.ui.label > .delete.icon {
85 cursor: pointer;
86 font-size: 0.92857143em;
87 opacity: 0.5;
88 -webkit-transition: background 0.1s ease;
89 transition: background 0.1s ease;
90}
91.ui.label > .close.icon:hover,
92.ui.label > .delete.icon:hover {
93 opacity: 1;
94}
95
96/* Backward compatible positioning */
97.ui.label.left.icon > .close.icon,
98.ui.label.left.icon > .delete.icon {
99 margin: 0 0.5em 0 0;
100}
101.ui.label:not(.icon) > .close.icon,
102.ui.label:not(.icon) > .delete.icon {
103 margin: 0 0 0 0.5em;
104}
105
106/* Label for only an icon */
107.ui.icon.label > .icon {
108 margin: 0 auto;
109}
110
111/* Right Side Icon */
112.ui.right.icon.label > .icon {
113 margin: 0 0 0 0.75em;
114}
115
116/*-------------------
117 Group
118--------------------*/
119
120.ui.labels > .label {
121 margin: 0 0.5em 0.5em 0;
122}
123
124/*-------------------
125 Coupling
126--------------------*/
127
128.ui.header > .ui.label {
129 margin-top: -0.29165em;
130}
131
132/* Remove border radius on attached segment */
133.ui.attached.segment > .ui.top.left.attached.label,
134.ui.bottom.attached.segment > .ui.top.left.attached.label {
135 border-top-left-radius: 0;
136}
137.ui.attached.segment > .ui.top.right.attached.label,
138.ui.bottom.attached.segment > .ui.top.right.attached.label {
139 border-top-right-radius: 0;
140}
141.ui.top.attached.segment > .ui.bottom.left.attached.label {
142 border-bottom-left-radius: 0;
143}
144.ui.top.attached.segment > .ui.bottom.right.attached.label {
145 border-bottom-right-radius: 0;
146}
147
148/* Padding on next content after a label */
149.ui.top.attached.label:first-child + :not(.attached),
150.ui.top.attached.label + [class*="right floated"] + * {
151 margin-top: 2rem !important;
152}
153.ui.bottom.attached.label:first-child ~ :last-child:not(.attached) {
154 margin-top: 0;
155 margin-bottom: 2rem !important;
156}
157
158
159/*******************************
160 Types
161*******************************/
162
163.ui.image.label {
164 width: auto !important;
165 margin-top: 0;
166 margin-bottom: 0;
167 max-width: 9999px;
168 vertical-align: baseline;
169 text-transform: none;
170 background: #E8E8E8;
171 padding: 0.5833em 0.833em 0.5833em 0.5em;
172 border-radius: 0.28571429rem;
173 -webkit-box-shadow: none;
174 box-shadow: none;
175}
176.ui.image.label img {
177 display: inline-block;
178 vertical-align: top;
179 height: 2.1666em;
180 margin: -0.5833em 0.5em -0.5833em -0.5em;
181 border-radius: 0.28571429rem 0 0 0.28571429rem;
182}
183.ui.image.label .detail {
184 background: rgba(0, 0, 0, 0.1);
185 margin: -0.5833em -0.833em -0.5833em 0.5em;
186 padding: 0.5833em 0.833em;
187 border-radius: 0 0.28571429rem 0.28571429rem 0;
188}
189
190/*-------------------
191 Tag
192--------------------*/
193
194.ui.tag.labels .label,
195.ui.tag.label {
196 margin-left: 1em;
197 position: relative;
198 padding-left: 1.5em;
199 padding-right: 1.5em;
200 border-radius: 0 0.28571429rem 0.28571429rem 0;
201 -webkit-transition: none;
202 transition: none;
203}
204.ui.tag.labels .label:before,
205.ui.tag.label:before {
206 position: absolute;
207 -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
208 transform: translateY(-50%) translateX(50%) rotate(-45deg);
209 top: 50%;
210 right: 100%;
211 content: '';
212 background-color: inherit;
213 background-image: none;
214 width: 1.56em;
215 height: 1.56em;
216 -webkit-transition: none;
217 transition: none;
218}
219.ui.tag.labels .label:after,
220.ui.tag.label:after {
221 position: absolute;
222 content: '';
223 top: 50%;
224 left: -0.25em;
225 margin-top: -0.25em;
226 background-color: #FFFFFF;
227 width: 0.5em;
228 height: 0.5em;
229 -webkit-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
230 box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
231 border-radius: 500rem;
232}
233.ui.basic.tag.labels .label:before,
234.ui.basic.tag.label:before {
235 border-color: inherit;
236 border-width: 1px 0 0 1px;
237 border-style: inherit;
238 right: calc(100% + 1px);
239}
240.ui.basic.tag.labels .label:after,
241.ui.basic.tag.label:after {
242 -webkit-box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.8);
243 box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.8);
244}
245
246/*-------------------
247 Corner Label
248--------------------*/
249
250.ui.corner.label {
251 position: absolute;
252 top: 0;
253 right: 0;
254 margin: 0;
255 padding: 0;
256 text-align: center;
257 border-color: #E8E8E8;
258 width: 4em;
259 height: 4em;
260 z-index: 1;
261 -webkit-transition: border-color 0.1s ease;
262 transition: border-color 0.1s ease;
263}
264
265/* Icon Label */
266.ui.corner.label {
267 background-color: transparent !important;
268}
269.ui.corner.label:after {
270 position: absolute;
271 content: "";
272 right: 0;
273 top: 0;
274 z-index: -1;
275 width: 0;
276 height: 0;
277 background-color: transparent;
278 border-top: 0 solid transparent;
279 border-right: 4em solid transparent;
280 border-bottom: 4em solid transparent;
281 border-left: 0 solid transparent;
282 border-right-color: inherit;
283 -webkit-transition: border-color 0.1s ease;
284 transition: border-color 0.1s ease;
285}
286.ui.corner.label .icon {
287 cursor: inherit;
288 position: absolute;
289 top: 0.64285714em;
290 left: auto;
291 right: 0.57142857em;
292 font-size: 1.14285714em;
293 margin: 0;
294}
295
296/* Left Corner */
297.ui.left.corner.label,
298.ui.left.corner.label:after {
299 right: auto;
300 left: 0;
301}
302.ui.left.corner.label:after {
303 border-top: 4em solid transparent;
304 border-right: 4em solid transparent;
305 border-bottom: 0 solid transparent;
306 border-left: 0 solid transparent;
307 border-top-color: inherit;
308}
309.ui.left.corner.label .icon {
310 left: 0.57142857em;
311 right: auto;
312}
313
314/* Segment */
315.ui.segment > .ui.corner.label {
316 top: -1px;
317 right: -1px;
318}
319.ui.segment > .ui.left.corner.label {
320 right: auto;
321 left: -1px;
322}
323
324/*-------------------
325 Ribbon
326--------------------*/
327
328.ui.ribbon.label {
329 position: relative;
330 margin: 0;
331 min-width: -webkit-max-content;
332 min-width: -moz-max-content;
333 min-width: max-content;
334 border-radius: 0 0.28571429rem 0.28571429rem 0;
335 border-color: rgba(0, 0, 0, 0.15);
336}
337.ui.ribbon.label:after {
338 position: absolute;
339 content: '';
340 top: 100%;
341 left: 0;
342 background-color: transparent;
343 border-style: solid;
344 border-width: 0 1.2em 1.2em 0;
345 border-color: transparent;
346 border-right-color: inherit;
347 width: 0;
348 height: 0;
349}
350
351/* Positioning */
352.ui.ribbon.label {
353 left: calc(-1rem - 1.2em);
354 margin-right: -1.2em;
355 padding-left: calc(1rem + 1.2em);
356 padding-right: 1.2em;
357}
358.ui[class*="right ribbon"].label {
359 left: calc(100% + 1rem + 1.2em);
360 padding-left: 1.2em;
361 padding-right: calc(1rem + 1.2em);
362}
363
364/* Right Ribbon */
365.ui[class*="right ribbon"].label {
366 text-align: left;
367 -webkit-transform: translateX(-100%);
368 transform: translateX(-100%);
369 border-radius: 0.28571429rem 0 0 0.28571429rem;
370}
371.ui[class*="right ribbon"].label:after {
372 left: auto;
373 right: 0;
374 border-style: solid;
375 border-width: 1.2em 1.2em 0 0;
376 border-color: transparent;
377 border-top-color: inherit;
378}
379
380/* Inside Table */
381.ui.image > .ribbon.label,
382.ui.card .image > .ribbon.label {
383 position: absolute;
384 top: 1rem;
385}
386.ui.card .image > .ui.ribbon.label,
387.ui.image > .ui.ribbon.label {
388 left: calc(0.05rem - 1.2em);
389}
390.ui.card .image > .ui[class*="right ribbon"].label,
391.ui.image > .ui[class*="right ribbon"].label {
392 left: calc(100% + -0.05rem + 1.2em);
393 padding-left: 0.833em;
394}
395
396/* Inside Table */
397.ui.table td > .ui.ribbon.label {
398 left: calc(-1em - 1.2em);
399}
400.ui.table td > .ui[class*="right ribbon"].label {
401 left: calc(100% + 1em + 1.2em);
402 padding-left: 0.833em;
403}
404
405/*-------------------
406 Attached
407--------------------*/
408
409.ui[class*="top attached"].label,
410.ui.attached.label {
411 width: 100%;
412 position: absolute;
413 margin: 0;
414 top: 0;
415 left: 0;
416 padding: 0.75em 1em;
417 border-radius: 0.21428571rem 0.21428571rem 0 0;
418}
419.ui[class*="bottom attached"].label {
420 top: auto;
421 bottom: 0;
422 border-radius: 0 0 0.21428571rem 0.21428571rem;
423}
424.ui[class*="top left attached"].label {
425 width: auto;
426 margin-top: 0 !important;
427 border-radius: 0.21428571rem 0 0.28571429rem 0;
428}
429.ui[class*="top right attached"].label {
430 width: auto;
431 left: auto;
432 right: 0;
433 border-radius: 0 0.21428571rem 0 0.28571429rem;
434}
435.ui[class*="bottom left attached"].label {
436 width: auto;
437 top: auto;
438 bottom: 0;
439 border-radius: 0 0.28571429rem 0 0.21428571rem;
440}
441.ui[class*="bottom right attached"].label {
442 top: auto;
443 bottom: 0;
444 left: auto;
445 right: 0;
446 width: auto;
447 border-radius: 0.28571429rem 0 0.21428571rem 0;
448}
449
450
451/*******************************
452 States
453*******************************/
454
455
456/*-------------------
457 Disabled
458--------------------*/
459
460.ui.label.disabled {
461 opacity: 0.5;
462}
463
464/*-------------------
465 Hover
466--------------------*/
467
468.ui.labels a.label:hover,
469a.ui.label:hover {
470 background-color: #E0E0E0;
471 border-color: #E0E0E0;
472 background-image: none;
473 color: rgba(0, 0, 0, 0.8);
474}
475.ui.labels a.label:hover:before,
476a.ui.label:hover:before {
477 color: rgba(0, 0, 0, 0.8);
478}
479
480/*-------------------
481 Active
482--------------------*/
483
484.ui.active.label {
485 background-color: #D0D0D0;
486 border-color: #D0D0D0;
487 background-image: none;
488 color: rgba(0, 0, 0, 0.95);
489}
490.ui.active.label:before {
491 background-color: #D0D0D0;
492 background-image: none;
493 color: rgba(0, 0, 0, 0.95);
494}
495
496/*-------------------
497 Active Hover
498--------------------*/
499
500.ui.labels a.active.label:hover,
501a.ui.active.label:hover {
502 background-color: #C8C8C8;
503 border-color: #C8C8C8;
504 background-image: none;
505 color: rgba(0, 0, 0, 0.95);
506}
507.ui.labels a.active.label:hover:before,
508a.ui.active.label:hover:before {
509 background-color: #C8C8C8;
510 background-image: none;
511 color: rgba(0, 0, 0, 0.95);
512}
513
514/*-------------------
515 Visible
516--------------------*/
517
518.ui.labels.visible .label,
519.ui.label.visible:not(.dropdown) {
520 display: inline-block !important;
521}
522
523/*-------------------
524 Hidden
525--------------------*/
526
527.ui.labels.hidden .label,
528.ui.label.hidden {
529 display: none !important;
530}
531
532
533/*******************************
534 Variations
535*******************************/
536
537
538/*-------------------
539 Basic
540--------------------*/
541
542.ui.basic.labels .label,
543.ui.basic.label {
544 background: none #FFFFFF;
545 border: 1px solid rgba(34, 36, 38, 0.15);
546 color: rgba(0, 0, 0, 0.87);
547 -webkit-box-shadow: none;
548 box-shadow: none;
549}
550
551/* Link */
552.ui.basic.labels a.label:hover,
553a.ui.basic.label:hover {
554 text-decoration: none;
555 background: none #FFFFFF;
556 color: #1e70bf;
557 -webkit-box-shadow: none;
558 box-shadow: none;
559}
560
561/* Pointing */
562.ui.basic.pointing.label:before {
563 border-color: inherit;
564}
565
566/*-------------------
567 Fluid
568--------------------*/
569
570.ui.label.fluid,
571.ui.fluid.labels > .label {
572 width: 100%;
573 -webkit-box-sizing: border-box;
574 box-sizing: border-box;
575}
576
577/*-------------------
578 Inverted
579--------------------*/
580
581.ui.inverted.labels .label,
582.ui.inverted.label {
583 color: rgba(255, 255, 255, 0.9);
584 background-color: #b5b5b5;
585}
586.ui.inverted.corner.label {
587 border-color: #b5b5b5;
588}
589.ui.inverted.corner.label:hover {
590 border-color: #E8E8E8;
591 -webkit-transition: none;
592 transition: none;
593}
594.ui.inverted.basic.labels .label,
595.ui.inverted.basic.label,
596.ui.inverted.basic.label:hover {
597 border-color: rgba(255, 255, 255, 0.5);
598 background: #1B1C1D;
599}
600.ui.inverted.basic.label:hover {
601 color: #4183C4;
602}
603
604/*-------------------
605 Colors
606--------------------*/
607
608.ui.primary.labels .label,
609.ui.ui.ui.primary.label {
610 background-color: #2185D0;
611 border-color: #2185D0;
612 color: rgba(255, 255, 255, 0.9);
613}
614
615/* Link */
616.ui.primary.labels a.label:hover,
617a.ui.ui.ui.primary.label:hover {
618 background-color: #1678c2;
619 border-color: #1678c2;
620 color: #FFFFFF;
621}
622
623/* Ribbon */
624.ui.ui.ui.primary.ribbon.label {
625 border-color: #1a69a4;
626}
627
628/* Basic */
629.ui.basic.labels .primary.label,
630.ui.ui.ui.basic.primary.label {
631 background: none #FFFFFF;
632 border-color: #2185D0;
633 color: #2185D0;
634}
635.ui.basic.labels a.primary.label:hover,
636a.ui.ui.ui.basic.primary.label:hover {
637 background: none #FFFFFF;
638 border-color: #1678c2;
639 color: #1678c2;
640}
641
642/* Inverted */
643.ui.inverted.labels .primary.label,
644.ui.ui.ui.inverted.primary.label {
645 background-color: #54C8FF;
646 border-color: #54C8FF;
647 color: #1B1C1D;
648}
649
650/* Inverted Link */
651.ui.inverted.labels a.primary.label:hover,
652a.ui.ui.ui.inverted.primary.label:hover {
653 background-color: #21b8ff;
654 border-color: #21b8ff;
655 color: #1B1C1D;
656}
657
658/* Inverted Ribbon */
659.ui.ui.ui.inverted.primary.ribbon.label {
660 border-color: #21b8ff;
661}
662
663/* Inverted Basic */
664.ui.inverted.basic.labels .primary.label,
665.ui.ui.ui.inverted.basic.primary.label {
666 background-color: #1B1C1D;
667 border-color: #54C8FF;
668 color: #54C8FF;
669}
670.ui.inverted.basic.labels a.primary.label:hover,
671a.ui.ui.ui.inverted.basic.primary.label:hover {
672 border-color: #21b8ff;
673 background-color: #1B1C1D;
674 color: #21b8ff;
675}
676
677/* Inverted Basic Tags */
678.ui.inverted.basic.tag.labels .primary.label,
679.ui.ui.ui.inverted.primary.basic.tag.label {
680 border: 1px solid #54C8FF;
681}
682.ui.inverted.basic.tag.labels .primary.label:before,
683.ui.ui.ui.inverted.primary.basic.tag.label:before {
684 border-color: inherit;
685 border-width: 1px 0 0 1px;
686 border-style: inherit;
687 background-color: #1B1C1D;
688 right: calc(100% + 1px);
689}
690.ui.secondary.labels .label,
691.ui.ui.ui.secondary.label {
692 background-color: #1B1C1D;
693 border-color: #1B1C1D;
694 color: rgba(255, 255, 255, 0.9);
695}
696
697/* Link */
698.ui.secondary.labels a.label:hover,
699a.ui.ui.ui.secondary.label:hover {
700 background-color: #27292a;
701 border-color: #27292a;
702 color: #FFFFFF;
703}
704
705/* Ribbon */
706.ui.ui.ui.secondary.ribbon.label {
707 border-color: #020203;
708}
709
710/* Basic */
711.ui.basic.labels .secondary.label,
712.ui.ui.ui.basic.secondary.label {
713 background: none #FFFFFF;
714 border-color: #1B1C1D;
715 color: #1B1C1D;
716}
717.ui.basic.labels a.secondary.label:hover,
718a.ui.ui.ui.basic.secondary.label:hover {
719 background: none #FFFFFF;
720 border-color: #27292a;
721 color: #27292a;
722}
723
724/* Inverted */
725.ui.inverted.labels .secondary.label,
726.ui.ui.ui.inverted.secondary.label {
727 background-color: #545454;
728 border-color: #545454;
729 color: #1B1C1D;
730}
731
732/* Inverted Link */
733.ui.inverted.labels a.secondary.label:hover,
734a.ui.ui.ui.inverted.secondary.label:hover {
735 background-color: #6e6e6e;
736 border-color: #6e6e6e;
737 color: #1B1C1D;
738}
739
740/* Inverted Ribbon */
741.ui.ui.ui.inverted.secondary.ribbon.label {
742 border-color: #3b3b3b;
743}
744
745/* Inverted Basic */
746.ui.inverted.basic.labels .secondary.label,
747.ui.ui.ui.inverted.basic.secondary.label {
748 background-color: #1B1C1D;
749 border-color: #545454;
750 color: #545454;
751}
752.ui.inverted.basic.labels a.secondary.label:hover,
753a.ui.ui.ui.inverted.basic.secondary.label:hover {
754 border-color: #6e6e6e;
755 background-color: #1B1C1D;
756 color: #6e6e6e;
757}
758
759/* Inverted Basic Tags */
760.ui.inverted.basic.tag.labels .secondary.label,
761.ui.ui.ui.inverted.secondary.basic.tag.label {
762 border: 1px solid #545454;
763}
764.ui.inverted.basic.tag.labels .secondary.label:before,
765.ui.ui.ui.inverted.secondary.basic.tag.label:before {
766 border-color: inherit;
767 border-width: 1px 0 0 1px;
768 border-style: inherit;
769 background-color: #1B1C1D;
770 right: calc(100% + 1px);
771}
772.ui.red.labels .label,
773.ui.ui.ui.red.label {
774 background-color: #DB2828;
775 border-color: #DB2828;
776 color: #FFFFFF;
777}
778
779/* Link */
780.ui.red.labels a.label:hover,
781a.ui.ui.ui.red.label:hover {
782 background-color: #d01919;
783 border-color: #d01919;
784 color: #FFFFFF;
785}
786
787/* Ribbon */
788.ui.ui.ui.red.ribbon.label {
789 border-color: #b21e1e;
790}
791
792/* Basic */
793.ui.basic.labels .red.label,
794.ui.ui.ui.basic.red.label {
795 background: none #FFFFFF;
796 border-color: #DB2828;
797 color: #DB2828;
798}
799.ui.basic.labels a.red.label:hover,
800a.ui.ui.ui.basic.red.label:hover {
801 background: none #FFFFFF;
802 border-color: #d01919;
803 color: #d01919;
804}
805
806/* Inverted */
807.ui.inverted.labels .red.label,
808.ui.ui.ui.inverted.red.label {
809 background-color: #FF695E;
810 border-color: #FF695E;
811 color: #1B1C1D;
812}
813
814/* Inverted Link */
815.ui.inverted.labels a.red.label:hover,
816a.ui.ui.ui.inverted.red.label:hover {
817 background-color: #ff392b;
818 border-color: #ff392b;
819 color: #1B1C1D;
820}
821
822/* Inverted Ribbon */
823.ui.ui.ui.inverted.red.ribbon.label {
824 border-color: #ff392b;
825}
826
827/* Inverted Basic */
828.ui.inverted.basic.labels .red.label,
829.ui.ui.ui.inverted.basic.red.label {
830 background-color: #1B1C1D;
831 border-color: #FF695E;
832 color: #FF695E;
833}
834.ui.inverted.basic.labels a.red.label:hover,
835a.ui.ui.ui.inverted.basic.red.label:hover {
836 border-color: #ff392b;
837 background-color: #1B1C1D;
838 color: #ff392b;
839}
840
841/* Inverted Basic Tags */
842.ui.inverted.basic.tag.labels .red.label,
843.ui.ui.ui.inverted.red.basic.tag.label {
844 border: 1px solid #FF695E;
845}
846.ui.inverted.basic.tag.labels .red.label:before,
847.ui.ui.ui.inverted.red.basic.tag.label:before {
848 border-color: inherit;
849 border-width: 1px 0 0 1px;
850 border-style: inherit;
851 background-color: #1B1C1D;
852 right: calc(100% + 1px);
853}
854.ui.orange.labels .label,
855.ui.ui.ui.orange.label {
856 background-color: #F2711C;
857 border-color: #F2711C;
858 color: #FFFFFF;
859}
860
861/* Link */
862.ui.orange.labels a.label:hover,
863a.ui.ui.ui.orange.label:hover {
864 background-color: #f26202;
865 border-color: #f26202;
866 color: #FFFFFF;
867}
868
869/* Ribbon */
870.ui.ui.ui.orange.ribbon.label {
871 border-color: #cf590c;
872}
873
874/* Basic */
875.ui.basic.labels .orange.label,
876.ui.ui.ui.basic.orange.label {
877 background: none #FFFFFF;
878 border-color: #F2711C;
879 color: #F2711C;
880}
881.ui.basic.labels a.orange.label:hover,
882a.ui.ui.ui.basic.orange.label:hover {
883 background: none #FFFFFF;
884 border-color: #f26202;
885 color: #f26202;
886}
887
888/* Inverted */
889.ui.inverted.labels .orange.label,
890.ui.ui.ui.inverted.orange.label {
891 background-color: #FF851B;
892 border-color: #FF851B;
893 color: #1B1C1D;
894}
895
896/* Inverted Link */
897.ui.inverted.labels a.orange.label:hover,
898a.ui.ui.ui.inverted.orange.label:hover {
899 background-color: #e76b00;
900 border-color: #e76b00;
901 color: #1B1C1D;
902}
903
904/* Inverted Ribbon */
905.ui.ui.ui.inverted.orange.ribbon.label {
906 border-color: #e76b00;
907}
908
909/* Inverted Basic */
910.ui.inverted.basic.labels .orange.label,
911.ui.ui.ui.inverted.basic.orange.label {
912 background-color: #1B1C1D;
913 border-color: #FF851B;
914 color: #FF851B;
915}
916.ui.inverted.basic.labels a.orange.label:hover,
917a.ui.ui.ui.inverted.basic.orange.label:hover {
918 border-color: #e76b00;
919 background-color: #1B1C1D;
920 color: #e76b00;
921}
922
923/* Inverted Basic Tags */
924.ui.inverted.basic.tag.labels .orange.label,
925.ui.ui.ui.inverted.orange.basic.tag.label {
926 border: 1px solid #FF851B;
927}
928.ui.inverted.basic.tag.labels .orange.label:before,
929.ui.ui.ui.inverted.orange.basic.tag.label:before {
930 border-color: inherit;
931 border-width: 1px 0 0 1px;
932 border-style: inherit;
933 background-color: #1B1C1D;
934 right: calc(100% + 1px);
935}
936.ui.yellow.labels .label,
937.ui.ui.ui.yellow.label {
938 background-color: #FBBD08;
939 border-color: #FBBD08;
940 color: #FFFFFF;
941}
942
943/* Link */
944.ui.yellow.labels a.label:hover,
945a.ui.ui.ui.yellow.label:hover {
946 background-color: #eaae00;
947 border-color: #eaae00;
948 color: #FFFFFF;
949}
950
951/* Ribbon */
952.ui.ui.ui.yellow.ribbon.label {
953 border-color: #cd9903;
954}
955
956/* Basic */
957.ui.basic.labels .yellow.label,
958.ui.ui.ui.basic.yellow.label {
959 background: none #FFFFFF;
960 border-color: #FBBD08;
961 color: #FBBD08;
962}
963.ui.basic.labels a.yellow.label:hover,
964a.ui.ui.ui.basic.yellow.label:hover {
965 background: none #FFFFFF;
966 border-color: #eaae00;
967 color: #eaae00;
968}
969
970/* Inverted */
971.ui.inverted.labels .yellow.label,
972.ui.ui.ui.inverted.yellow.label {
973 background-color: #FFE21F;
974 border-color: #FFE21F;
975 color: #1B1C1D;
976}
977
978/* Inverted Link */
979.ui.inverted.labels a.yellow.label:hover,
980a.ui.ui.ui.inverted.yellow.label:hover {
981 background-color: #ebcd00;
982 border-color: #ebcd00;
983 color: #1B1C1D;
984}
985
986/* Inverted Ribbon */
987.ui.ui.ui.inverted.yellow.ribbon.label {
988 border-color: #ebcd00;
989}
990
991/* Inverted Basic */
992.ui.inverted.basic.labels .yellow.label,
993.ui.ui.ui.inverted.basic.yellow.label {
994 background-color: #1B1C1D;
995 border-color: #FFE21F;
996 color: #FFE21F;
997}
998.ui.inverted.basic.labels a.yellow.label:hover,
999a.ui.ui.ui.inverted.basic.yellow.label:hover {
1000 border-color: #ebcd00;
1001 background-color: #1B1C1D;
1002 color: #ebcd00;
1003}
1004
1005/* Inverted Basic Tags */
1006.ui.inverted.basic.tag.labels .yellow.label,
1007.ui.ui.ui.inverted.yellow.basic.tag.label {
1008 border: 1px solid #FFE21F;
1009}
1010.ui.inverted.basic.tag.labels .yellow.label:before,
1011.ui.ui.ui.inverted.yellow.basic.tag.label:before {
1012 border-color: inherit;
1013 border-width: 1px 0 0 1px;
1014 border-style: inherit;
1015 background-color: #1B1C1D;
1016 right: calc(100% + 1px);
1017}
1018.ui.olive.labels .label,
1019.ui.ui.ui.olive.label {
1020 background-color: #B5CC18;
1021 border-color: #B5CC18;
1022 color: #FFFFFF;
1023}
1024
1025/* Link */
1026.ui.olive.labels a.label:hover,
1027a.ui.ui.ui.olive.label:hover {
1028 background-color: #a7bd0d;
1029 border-color: #a7bd0d;
1030 color: #FFFFFF;
1031}
1032
1033/* Ribbon */
1034.ui.ui.ui.olive.ribbon.label {
1035 border-color: #8d9e13;
1036}
1037
1038/* Basic */
1039.ui.basic.labels .olive.label,
1040.ui.ui.ui.basic.olive.label {
1041 background: none #FFFFFF;
1042 border-color: #B5CC18;
1043 color: #B5CC18;
1044}
1045.ui.basic.labels a.olive.label:hover,
1046a.ui.ui.ui.basic.olive.label:hover {
1047 background: none #FFFFFF;
1048 border-color: #a7bd0d;
1049 color: #a7bd0d;
1050}
1051
1052/* Inverted */
1053.ui.inverted.labels .olive.label,
1054.ui.ui.ui.inverted.olive.label {
1055 background-color: #D9E778;
1056 border-color: #D9E778;
1057 color: #1B1C1D;
1058}
1059
1060/* Inverted Link */
1061.ui.inverted.labels a.olive.label:hover,
1062a.ui.ui.ui.inverted.olive.label:hover {
1063 background-color: #d2e745;
1064 border-color: #d2e745;
1065 color: #1B1C1D;
1066}
1067
1068/* Inverted Ribbon */
1069.ui.ui.ui.inverted.olive.ribbon.label {
1070 border-color: #cddf4d;
1071}
1072
1073/* Inverted Basic */
1074.ui.inverted.basic.labels .olive.label,
1075.ui.ui.ui.inverted.basic.olive.label {
1076 background-color: #1B1C1D;
1077 border-color: #D9E778;
1078 color: #D9E778;
1079}
1080.ui.inverted.basic.labels a.olive.label:hover,
1081a.ui.ui.ui.inverted.basic.olive.label:hover {
1082 border-color: #d2e745;
1083 background-color: #1B1C1D;
1084 color: #d2e745;
1085}
1086
1087/* Inverted Basic Tags */
1088.ui.inverted.basic.tag.labels .olive.label,
1089.ui.ui.ui.inverted.olive.basic.tag.label {
1090 border: 1px solid #D9E778;
1091}
1092.ui.inverted.basic.tag.labels .olive.label:before,
1093.ui.ui.ui.inverted.olive.basic.tag.label:before {
1094 border-color: inherit;
1095 border-width: 1px 0 0 1px;
1096 border-style: inherit;
1097 background-color: #1B1C1D;
1098 right: calc(100% + 1px);
1099}
1100.ui.green.labels .label,
1101.ui.ui.ui.green.label {
1102 background-color: #21BA45;
1103 border-color: #21BA45;
1104 color: #FFFFFF;
1105}
1106
1107/* Link */
1108.ui.green.labels a.label:hover,
1109a.ui.ui.ui.green.label:hover {
1110 background-color: #16ab39;
1111 border-color: #16ab39;
1112 color: #FFFFFF;
1113}
1114
1115/* Ribbon */
1116.ui.ui.ui.green.ribbon.label {
1117 border-color: #198f35;
1118}
1119
1120/* Basic */
1121.ui.basic.labels .green.label,
1122.ui.ui.ui.basic.green.label {
1123 background: none #FFFFFF;
1124 border-color: #21BA45;
1125 color: #21BA45;
1126}
1127.ui.basic.labels a.green.label:hover,
1128a.ui.ui.ui.basic.green.label:hover {
1129 background: none #FFFFFF;
1130 border-color: #16ab39;
1131 color: #16ab39;
1132}
1133
1134/* Inverted */
1135.ui.inverted.labels .green.label,
1136.ui.ui.ui.inverted.green.label {
1137 background-color: #2ECC40;
1138 border-color: #2ECC40;
1139 color: #1B1C1D;
1140}
1141
1142/* Inverted Link */
1143.ui.inverted.labels a.green.label:hover,
1144a.ui.ui.ui.inverted.green.label:hover {
1145 background-color: #1ea92e;
1146 border-color: #1ea92e;
1147 color: #1B1C1D;
1148}
1149
1150/* Inverted Ribbon */
1151.ui.ui.ui.inverted.green.ribbon.label {
1152 border-color: #25a233;
1153}
1154
1155/* Inverted Basic */
1156.ui.inverted.basic.labels .green.label,
1157.ui.ui.ui.inverted.basic.green.label {
1158 background-color: #1B1C1D;
1159 border-color: #2ECC40;
1160 color: #2ECC40;
1161}
1162.ui.inverted.basic.labels a.green.label:hover,
1163a.ui.ui.ui.inverted.basic.green.label:hover {
1164 border-color: #1ea92e;
1165 background-color: #1B1C1D;
1166 color: #1ea92e;
1167}
1168
1169/* Inverted Basic Tags */
1170.ui.inverted.basic.tag.labels .green.label,
1171.ui.ui.ui.inverted.green.basic.tag.label {
1172 border: 1px solid #2ECC40;
1173}
1174.ui.inverted.basic.tag.labels .green.label:before,
1175.ui.ui.ui.inverted.green.basic.tag.label:before {
1176 border-color: inherit;
1177 border-width: 1px 0 0 1px;
1178 border-style: inherit;
1179 background-color: #1B1C1D;
1180 right: calc(100% + 1px);
1181}
1182.ui.teal.labels .label,
1183.ui.ui.ui.teal.label {
1184 background-color: #00B5AD;
1185 border-color: #00B5AD;
1186 color: #FFFFFF;
1187}
1188
1189/* Link */
1190.ui.teal.labels a.label:hover,
1191a.ui.ui.ui.teal.label:hover {
1192 background-color: #009c95;
1193 border-color: #009c95;
1194 color: #FFFFFF;
1195}
1196
1197/* Ribbon */
1198.ui.ui.ui.teal.ribbon.label {
1199 border-color: #00827c;
1200}
1201
1202/* Basic */
1203.ui.basic.labels .teal.label,
1204.ui.ui.ui.basic.teal.label {
1205 background: none #FFFFFF;
1206 border-color: #00B5AD;
1207 color: #00B5AD;
1208}
1209.ui.basic.labels a.teal.label:hover,
1210a.ui.ui.ui.basic.teal.label:hover {
1211 background: none #FFFFFF;
1212 border-color: #009c95;
1213 color: #009c95;
1214}
1215
1216/* Inverted */
1217.ui.inverted.labels .teal.label,
1218.ui.ui.ui.inverted.teal.label {
1219 background-color: #6DFFFF;
1220 border-color: #6DFFFF;
1221 color: #1B1C1D;
1222}
1223
1224/* Inverted Link */
1225.ui.inverted.labels a.teal.label:hover,
1226a.ui.ui.ui.inverted.teal.label:hover {
1227 background-color: #3affff;
1228 border-color: #3affff;
1229 color: #1B1C1D;
1230}
1231
1232/* Inverted Ribbon */
1233.ui.ui.ui.inverted.teal.ribbon.label {
1234 border-color: #3affff;
1235}
1236
1237/* Inverted Basic */
1238.ui.inverted.basic.labels .teal.label,
1239.ui.ui.ui.inverted.basic.teal.label {
1240 background-color: #1B1C1D;
1241 border-color: #6DFFFF;
1242 color: #6DFFFF;
1243}
1244.ui.inverted.basic.labels a.teal.label:hover,
1245a.ui.ui.ui.inverted.basic.teal.label:hover {
1246 border-color: #3affff;
1247 background-color: #1B1C1D;
1248 color: #3affff;
1249}
1250
1251/* Inverted Basic Tags */
1252.ui.inverted.basic.tag.labels .teal.label,
1253.ui.ui.ui.inverted.teal.basic.tag.label {
1254 border: 1px solid #6DFFFF;
1255}
1256.ui.inverted.basic.tag.labels .teal.label:before,
1257.ui.ui.ui.inverted.teal.basic.tag.label:before {
1258 border-color: inherit;
1259 border-width: 1px 0 0 1px;
1260 border-style: inherit;
1261 background-color: #1B1C1D;
1262 right: calc(100% + 1px);
1263}
1264.ui.blue.labels .label,
1265.ui.ui.ui.blue.label {
1266 background-color: #2185D0;
1267 border-color: #2185D0;
1268 color: #FFFFFF;
1269}
1270
1271/* Link */
1272.ui.blue.labels a.label:hover,
1273a.ui.ui.ui.blue.label:hover {
1274 background-color: #1678c2;
1275 border-color: #1678c2;
1276 color: #FFFFFF;
1277}
1278
1279/* Ribbon */
1280.ui.ui.ui.blue.ribbon.label {
1281 border-color: #1a69a4;
1282}
1283
1284/* Basic */
1285.ui.basic.labels .blue.label,
1286.ui.ui.ui.basic.blue.label {
1287 background: none #FFFFFF;
1288 border-color: #2185D0;
1289 color: #2185D0;
1290}
1291.ui.basic.labels a.blue.label:hover,
1292a.ui.ui.ui.basic.blue.label:hover {
1293 background: none #FFFFFF;
1294 border-color: #1678c2;
1295 color: #1678c2;
1296}
1297
1298/* Inverted */
1299.ui.inverted.labels .blue.label,
1300.ui.ui.ui.inverted.blue.label {
1301 background-color: #54C8FF;
1302 border-color: #54C8FF;
1303 color: #1B1C1D;
1304}
1305
1306/* Inverted Link */
1307.ui.inverted.labels a.blue.label:hover,
1308a.ui.ui.ui.inverted.blue.label:hover {
1309 background-color: #21b8ff;
1310 border-color: #21b8ff;
1311 color: #1B1C1D;
1312}
1313
1314/* Inverted Ribbon */
1315.ui.ui.ui.inverted.blue.ribbon.label {
1316 border-color: #21b8ff;
1317}
1318
1319/* Inverted Basic */
1320.ui.inverted.basic.labels .blue.label,
1321.ui.ui.ui.inverted.basic.blue.label {
1322 background-color: #1B1C1D;
1323 border-color: #54C8FF;
1324 color: #54C8FF;
1325}
1326.ui.inverted.basic.labels a.blue.label:hover,
1327a.ui.ui.ui.inverted.basic.blue.label:hover {
1328 border-color: #21b8ff;
1329 background-color: #1B1C1D;
1330 color: #21b8ff;
1331}
1332
1333/* Inverted Basic Tags */
1334.ui.inverted.basic.tag.labels .blue.label,
1335.ui.ui.ui.inverted.blue.basic.tag.label {
1336 border: 1px solid #54C8FF;
1337}
1338.ui.inverted.basic.tag.labels .blue.label:before,
1339.ui.ui.ui.inverted.blue.basic.tag.label:before {
1340 border-color: inherit;
1341 border-width: 1px 0 0 1px;
1342 border-style: inherit;
1343 background-color: #1B1C1D;
1344 right: calc(100% + 1px);
1345}
1346.ui.violet.labels .label,
1347.ui.ui.ui.violet.label {
1348 background-color: #6435C9;
1349 border-color: #6435C9;
1350 color: #FFFFFF;
1351}
1352
1353/* Link */
1354.ui.violet.labels a.label:hover,
1355a.ui.ui.ui.violet.label:hover {
1356 background-color: #5829bb;
1357 border-color: #5829bb;
1358 color: #FFFFFF;
1359}
1360
1361/* Ribbon */
1362.ui.ui.ui.violet.ribbon.label {
1363 border-color: #502aa1;
1364}
1365
1366/* Basic */
1367.ui.basic.labels .violet.label,
1368.ui.ui.ui.basic.violet.label {
1369 background: none #FFFFFF;
1370 border-color: #6435C9;
1371 color: #6435C9;
1372}
1373.ui.basic.labels a.violet.label:hover,
1374a.ui.ui.ui.basic.violet.label:hover {
1375 background: none #FFFFFF;
1376 border-color: #5829bb;
1377 color: #5829bb;
1378}
1379
1380/* Inverted */
1381.ui.inverted.labels .violet.label,
1382.ui.ui.ui.inverted.violet.label {
1383 background-color: #A291FB;
1384 border-color: #A291FB;
1385 color: #1B1C1D;
1386}
1387
1388/* Inverted Link */
1389.ui.inverted.labels a.violet.label:hover,
1390a.ui.ui.ui.inverted.violet.label:hover {
1391 background-color: #745aff;
1392 border-color: #745aff;
1393 color: #1B1C1D;
1394}
1395
1396/* Inverted Ribbon */
1397.ui.ui.ui.inverted.violet.ribbon.label {
1398 border-color: #7860f9;
1399}
1400
1401/* Inverted Basic */
1402.ui.inverted.basic.labels .violet.label,
1403.ui.ui.ui.inverted.basic.violet.label {
1404 background-color: #1B1C1D;
1405 border-color: #A291FB;
1406 color: #A291FB;
1407}
1408.ui.inverted.basic.labels a.violet.label:hover,
1409a.ui.ui.ui.inverted.basic.violet.label:hover {
1410 border-color: #745aff;
1411 background-color: #1B1C1D;
1412 color: #745aff;
1413}
1414
1415/* Inverted Basic Tags */
1416.ui.inverted.basic.tag.labels .violet.label,
1417.ui.ui.ui.inverted.violet.basic.tag.label {
1418 border: 1px solid #A291FB;
1419}
1420.ui.inverted.basic.tag.labels .violet.label:before,
1421.ui.ui.ui.inverted.violet.basic.tag.label:before {
1422 border-color: inherit;
1423 border-width: 1px 0 0 1px;
1424 border-style: inherit;
1425 background-color: #1B1C1D;
1426 right: calc(100% + 1px);
1427}
1428.ui.purple.labels .label,
1429.ui.ui.ui.purple.label {
1430 background-color: #A333C8;
1431 border-color: #A333C8;
1432 color: #FFFFFF;
1433}
1434
1435/* Link */
1436.ui.purple.labels a.label:hover,
1437a.ui.ui.ui.purple.label:hover {
1438 background-color: #9627ba;
1439 border-color: #9627ba;
1440 color: #FFFFFF;
1441}
1442
1443/* Ribbon */
1444.ui.ui.ui.purple.ribbon.label {
1445 border-color: #82299f;
1446}
1447
1448/* Basic */
1449.ui.basic.labels .purple.label,
1450.ui.ui.ui.basic.purple.label {
1451 background: none #FFFFFF;
1452 border-color: #A333C8;
1453 color: #A333C8;
1454}
1455.ui.basic.labels a.purple.label:hover,
1456a.ui.ui.ui.basic.purple.label:hover {
1457 background: none #FFFFFF;
1458 border-color: #9627ba;
1459 color: #9627ba;
1460}
1461
1462/* Inverted */
1463.ui.inverted.labels .purple.label,
1464.ui.ui.ui.inverted.purple.label {
1465 background-color: #DC73FF;
1466 border-color: #DC73FF;
1467 color: #1B1C1D;
1468}
1469
1470/* Inverted Link */
1471.ui.inverted.labels a.purple.label:hover,
1472a.ui.ui.ui.inverted.purple.label:hover {
1473 background-color: #cf40ff;
1474 border-color: #cf40ff;
1475 color: #1B1C1D;
1476}
1477
1478/* Inverted Ribbon */
1479.ui.ui.ui.inverted.purple.ribbon.label {
1480 border-color: #cf40ff;
1481}
1482
1483/* Inverted Basic */
1484.ui.inverted.basic.labels .purple.label,
1485.ui.ui.ui.inverted.basic.purple.label {
1486 background-color: #1B1C1D;
1487 border-color: #DC73FF;
1488 color: #DC73FF;
1489}
1490.ui.inverted.basic.labels a.purple.label:hover,
1491a.ui.ui.ui.inverted.basic.purple.label:hover {
1492 border-color: #cf40ff;
1493 background-color: #1B1C1D;
1494 color: #cf40ff;
1495}
1496
1497/* Inverted Basic Tags */
1498.ui.inverted.basic.tag.labels .purple.label,
1499.ui.ui.ui.inverted.purple.basic.tag.label {
1500 border: 1px solid #DC73FF;
1501}
1502.ui.inverted.basic.tag.labels .purple.label:before,
1503.ui.ui.ui.inverted.purple.basic.tag.label:before {
1504 border-color: inherit;
1505 border-width: 1px 0 0 1px;
1506 border-style: inherit;
1507 background-color: #1B1C1D;
1508 right: calc(100% + 1px);
1509}
1510.ui.pink.labels .label,
1511.ui.ui.ui.pink.label {
1512 background-color: #E03997;
1513 border-color: #E03997;
1514 color: #FFFFFF;
1515}
1516
1517/* Link */
1518.ui.pink.labels a.label:hover,
1519a.ui.ui.ui.pink.label:hover {
1520 background-color: #e61a8d;
1521 border-color: #e61a8d;
1522 color: #FFFFFF;
1523}
1524
1525/* Ribbon */
1526.ui.ui.ui.pink.ribbon.label {
1527 border-color: #c71f7e;
1528}
1529
1530/* Basic */
1531.ui.basic.labels .pink.label,
1532.ui.ui.ui.basic.pink.label {
1533 background: none #FFFFFF;
1534 border-color: #E03997;
1535 color: #E03997;
1536}
1537.ui.basic.labels a.pink.label:hover,
1538a.ui.ui.ui.basic.pink.label:hover {
1539 background: none #FFFFFF;
1540 border-color: #e61a8d;
1541 color: #e61a8d;
1542}
1543
1544/* Inverted */
1545.ui.inverted.labels .pink.label,
1546.ui.ui.ui.inverted.pink.label {
1547 background-color: #FF8EDF;
1548 border-color: #FF8EDF;
1549 color: #1B1C1D;
1550}
1551
1552/* Inverted Link */
1553.ui.inverted.labels a.pink.label:hover,
1554a.ui.ui.ui.inverted.pink.label:hover {
1555 background-color: #ff5bd1;
1556 border-color: #ff5bd1;
1557 color: #1B1C1D;
1558}
1559
1560/* Inverted Ribbon */
1561.ui.ui.ui.inverted.pink.ribbon.label {
1562 border-color: #ff5bd1;
1563}
1564
1565/* Inverted Basic */
1566.ui.inverted.basic.labels .pink.label,
1567.ui.ui.ui.inverted.basic.pink.label {
1568 background-color: #1B1C1D;
1569 border-color: #FF8EDF;
1570 color: #FF8EDF;
1571}
1572.ui.inverted.basic.labels a.pink.label:hover,
1573a.ui.ui.ui.inverted.basic.pink.label:hover {
1574 border-color: #ff5bd1;
1575 background-color: #1B1C1D;
1576 color: #ff5bd1;
1577}
1578
1579/* Inverted Basic Tags */
1580.ui.inverted.basic.tag.labels .pink.label,
1581.ui.ui.ui.inverted.pink.basic.tag.label {
1582 border: 1px solid #FF8EDF;
1583}
1584.ui.inverted.basic.tag.labels .pink.label:before,
1585.ui.ui.ui.inverted.pink.basic.tag.label:before {
1586 border-color: inherit;
1587 border-width: 1px 0 0 1px;
1588 border-style: inherit;
1589 background-color: #1B1C1D;
1590 right: calc(100% + 1px);
1591}
1592.ui.brown.labels .label,
1593.ui.ui.ui.brown.label {
1594 background-color: #A5673F;
1595 border-color: #A5673F;
1596 color: #FFFFFF;
1597}
1598
1599/* Link */
1600.ui.brown.labels a.label:hover,
1601a.ui.ui.ui.brown.label:hover {
1602 background-color: #975b33;
1603 border-color: #975b33;
1604 color: #FFFFFF;
1605}
1606
1607/* Ribbon */
1608.ui.ui.ui.brown.ribbon.label {
1609 border-color: #805031;
1610}
1611
1612/* Basic */
1613.ui.basic.labels .brown.label,
1614.ui.ui.ui.basic.brown.label {
1615 background: none #FFFFFF;
1616 border-color: #A5673F;
1617 color: #A5673F;
1618}
1619.ui.basic.labels a.brown.label:hover,
1620a.ui.ui.ui.basic.brown.label:hover {
1621 background: none #FFFFFF;
1622 border-color: #975b33;
1623 color: #975b33;
1624}
1625
1626/* Inverted */
1627.ui.inverted.labels .brown.label,
1628.ui.ui.ui.inverted.brown.label {
1629 background-color: #D67C1C;
1630 border-color: #D67C1C;
1631 color: #1B1C1D;
1632}
1633
1634/* Inverted Link */
1635.ui.inverted.labels a.brown.label:hover,
1636a.ui.ui.ui.inverted.brown.label:hover {
1637 background-color: #b0620f;
1638 border-color: #b0620f;
1639 color: #1B1C1D;
1640}
1641
1642/* Inverted Ribbon */
1643.ui.ui.ui.inverted.brown.ribbon.label {
1644 border-color: #a96216;
1645}
1646
1647/* Inverted Basic */
1648.ui.inverted.basic.labels .brown.label,
1649.ui.ui.ui.inverted.basic.brown.label {
1650 background-color: #1B1C1D;
1651 border-color: #D67C1C;
1652 color: #D67C1C;
1653}
1654.ui.inverted.basic.labels a.brown.label:hover,
1655a.ui.ui.ui.inverted.basic.brown.label:hover {
1656 border-color: #b0620f;
1657 background-color: #1B1C1D;
1658 color: #b0620f;
1659}
1660
1661/* Inverted Basic Tags */
1662.ui.inverted.basic.tag.labels .brown.label,
1663.ui.ui.ui.inverted.brown.basic.tag.label {
1664 border: 1px solid #D67C1C;
1665}
1666.ui.inverted.basic.tag.labels .brown.label:before,
1667.ui.ui.ui.inverted.brown.basic.tag.label:before {
1668 border-color: inherit;
1669 border-width: 1px 0 0 1px;
1670 border-style: inherit;
1671 background-color: #1B1C1D;
1672 right: calc(100% + 1px);
1673}
1674.ui.grey.labels .label,
1675.ui.ui.ui.grey.label {
1676 background-color: #767676;
1677 border-color: #767676;
1678 color: #FFFFFF;
1679}
1680
1681/* Link */
1682.ui.grey.labels a.label:hover,
1683a.ui.ui.ui.grey.label:hover {
1684 background-color: #838383;
1685 border-color: #838383;
1686 color: #FFFFFF;
1687}
1688
1689/* Ribbon */
1690.ui.ui.ui.grey.ribbon.label {
1691 border-color: #5d5d5d;
1692}
1693
1694/* Basic */
1695.ui.basic.labels .grey.label,
1696.ui.ui.ui.basic.grey.label {
1697 background: none #FFFFFF;
1698 border-color: #767676;
1699 color: #767676;
1700}
1701.ui.basic.labels a.grey.label:hover,
1702a.ui.ui.ui.basic.grey.label:hover {
1703 background: none #FFFFFF;
1704 border-color: #838383;
1705 color: #838383;
1706}
1707
1708/* Inverted */
1709.ui.inverted.labels .grey.label,
1710.ui.ui.ui.inverted.grey.label {
1711 background-color: #DCDDDE;
1712 border-color: #DCDDDE;
1713 color: #1B1C1D;
1714}
1715
1716/* Inverted Link */
1717.ui.inverted.labels a.grey.label:hover,
1718a.ui.ui.ui.inverted.grey.label:hover {
1719 background-color: #c2c4c5;
1720 border-color: #c2c4c5;
1721 color: #FFFFFF;
1722}
1723
1724/* Inverted Ribbon */
1725.ui.ui.ui.inverted.grey.ribbon.label {
1726 border-color: #e9eaea;
1727}
1728
1729/* Inverted Basic */
1730.ui.inverted.basic.labels .grey.label,
1731.ui.ui.ui.inverted.basic.grey.label {
1732 background-color: #1B1C1D;
1733 border-color: #DCDDDE;
1734 color: rgba(255, 255, 255, 0.9);
1735}
1736.ui.inverted.basic.labels a.grey.label:hover,
1737a.ui.ui.ui.inverted.basic.grey.label:hover {
1738 border-color: #c2c4c5;
1739 background-color: #1B1C1D;
1740}
1741
1742/* Inverted Basic Tags */
1743.ui.inverted.basic.tag.labels .grey.label,
1744.ui.ui.ui.inverted.grey.basic.tag.label {
1745 border: 1px solid #DCDDDE;
1746}
1747.ui.inverted.basic.tag.labels .grey.label:before,
1748.ui.ui.ui.inverted.grey.basic.tag.label:before {
1749 border-color: inherit;
1750 border-width: 1px 0 0 1px;
1751 border-style: inherit;
1752 background-color: #1B1C1D;
1753 right: calc(100% + 1px);
1754}
1755.ui.black.labels .label,
1756.ui.ui.ui.black.label {
1757 background-color: #1B1C1D;
1758 border-color: #1B1C1D;
1759 color: #FFFFFF;
1760}
1761
1762/* Link */
1763.ui.black.labels a.label:hover,
1764a.ui.ui.ui.black.label:hover {
1765 background-color: #27292a;
1766 border-color: #27292a;
1767 color: #FFFFFF;
1768}
1769
1770/* Ribbon */
1771.ui.ui.ui.black.ribbon.label {
1772 border-color: #020203;
1773}
1774
1775/* Basic */
1776.ui.basic.labels .black.label,
1777.ui.ui.ui.basic.black.label {
1778 background: none #FFFFFF;
1779 border-color: #1B1C1D;
1780 color: #1B1C1D;
1781}
1782.ui.basic.labels a.black.label:hover,
1783a.ui.ui.ui.basic.black.label:hover {
1784 background: none #FFFFFF;
1785 border-color: #27292a;
1786 color: #27292a;
1787}
1788
1789/* Inverted */
1790.ui.inverted.labels .black.label,
1791.ui.ui.ui.inverted.black.label {
1792 background-color: #545454;
1793 border-color: #545454;
1794 color: #1B1C1D;
1795}
1796
1797/* Inverted Link */
1798.ui.inverted.labels a.black.label:hover,
1799a.ui.ui.ui.inverted.black.label:hover {
1800 background-color: #000000;
1801 border-color: #000000;
1802 color: #FFFFFF;
1803}
1804
1805/* Inverted Ribbon */
1806.ui.ui.ui.inverted.black.ribbon.label {
1807 border-color: #616161;
1808}
1809
1810/* Inverted Basic */
1811.ui.inverted.basic.labels .black.label,
1812.ui.ui.ui.inverted.basic.black.label {
1813 background-color: #1B1C1D;
1814 border-color: #545454;
1815 color: rgba(255, 255, 255, 0.9);
1816}
1817.ui.inverted.basic.labels a.black.label:hover,
1818a.ui.ui.ui.inverted.basic.black.label:hover {
1819 border-color: #000000;
1820 background-color: #1B1C1D;
1821}
1822
1823/* Inverted Basic Tags */
1824.ui.inverted.basic.tag.labels .black.label,
1825.ui.ui.ui.inverted.black.basic.tag.label {
1826 border: 1px solid #545454;
1827}
1828.ui.inverted.basic.tag.labels .black.label:before,
1829.ui.ui.ui.inverted.black.basic.tag.label:before {
1830 border-color: inherit;
1831 border-width: 1px 0 0 1px;
1832 border-style: inherit;
1833 background-color: #1B1C1D;
1834 right: calc(100% + 1px);
1835}
1836
1837/*-------------------
1838 Horizontal
1839--------------------*/
1840
1841.ui.horizontal.labels .label,
1842.ui.horizontal.label {
1843 margin: 0 0.5em 0 0;
1844 padding: 0.4em 0.833em;
1845 min-width: 3em;
1846 text-align: center;
1847}
1848
1849/*-------------------
1850 Circular
1851--------------------*/
1852
1853.ui.circular.labels .label,
1854.ui.circular.label {
1855 min-width: 2em;
1856 min-height: 2em;
1857 padding: 0.5em !important;
1858 line-height: 1em;
1859 text-align: center;
1860 border-radius: 500rem;
1861}
1862.ui.empty.circular.labels .label,
1863.ui.empty.circular.label {
1864 min-width: 0;
1865 min-height: 0;
1866 overflow: hidden;
1867 width: 0.5em;
1868 height: 0.5em;
1869 vertical-align: baseline;
1870}
1871
1872/*-------------------
1873 Pointing
1874--------------------*/
1875
1876.ui.pointing.label {
1877 position: relative;
1878}
1879.ui.attached.pointing.label {
1880 position: absolute;
1881}
1882.ui.pointing.label:before {
1883 background-color: inherit;
1884 background-image: inherit;
1885 border-width: 0;
1886 border-style: solid;
1887 border-color: inherit;
1888}
1889
1890/* Arrow */
1891.ui.pointing.label:before {
1892 position: absolute;
1893 content: '';
1894 -webkit-transform: rotate(45deg);
1895 transform: rotate(45deg);
1896 background-image: none;
1897 z-index: 2;
1898 width: 0.6666em;
1899 height: 0.6666em;
1900 -webkit-transition: none;
1901 transition: none;
1902}
1903
1904/*--- Above ---*/
1905
1906.ui.pointing.label,
1907.ui[class*="pointing above"].label {
1908 margin-top: 1em;
1909}
1910.ui.pointing.label:before,
1911.ui[class*="pointing above"].label:before {
1912 border-width: 1px 0 0 1px;
1913 -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
1914 transform: translateX(-50%) translateY(-50%) rotate(45deg);
1915 top: 0;
1916 left: 50%;
1917}
1918
1919/*--- Below ---*/
1920
1921.ui[class*="bottom pointing"].label,
1922.ui[class*="pointing below"].label {
1923 margin-top: 0;
1924 margin-bottom: 1em;
1925}
1926.ui[class*="bottom pointing"].label:before,
1927.ui[class*="pointing below"].label:before {
1928 border-width: 0 1px 1px 0;
1929 top: auto;
1930 right: auto;
1931 -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
1932 transform: translateX(-50%) translateY(-50%) rotate(45deg);
1933 top: 100%;
1934 left: 50%;
1935}
1936
1937/*--- Left ---*/
1938
1939.ui[class*="left pointing"].label {
1940 margin-top: 0;
1941 margin-left: 0.6666em;
1942}
1943.ui[class*="left pointing"].label:before {
1944 border-width: 0 0 1px 1px;
1945 -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
1946 transform: translateX(-50%) translateY(-50%) rotate(45deg);
1947 bottom: auto;
1948 right: auto;
1949 top: 50%;
1950 left: 0;
1951}
1952
1953/*--- Right ---*/
1954
1955.ui[class*="right pointing"].label {
1956 margin-top: 0;
1957 margin-right: 0.6666em;
1958}
1959.ui[class*="right pointing"].label:before {
1960 border-width: 1px 1px 0 0;
1961 -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
1962 transform: translateX(50%) translateY(-50%) rotate(45deg);
1963 top: 50%;
1964 right: 0;
1965 bottom: auto;
1966 left: auto;
1967}
1968
1969/* Basic Pointing */
1970
1971/*--- Above ---*/
1972
1973.ui.basic.pointing.label:before,
1974.ui.basic[class*="pointing above"].label:before {
1975 margin-top: -1px;
1976}
1977
1978/*--- Below ---*/
1979
1980.ui.basic[class*="bottom pointing"].label:before,
1981.ui.basic[class*="pointing below"].label:before {
1982 bottom: auto;
1983 top: 100%;
1984 margin-top: 1px;
1985}
1986
1987/*--- Left ---*/
1988
1989.ui.basic[class*="left pointing"].label:before {
1990 top: 50%;
1991 left: -1px;
1992}
1993
1994/*--- Right ---*/
1995
1996.ui.basic[class*="right pointing"].label:before {
1997 top: 50%;
1998 right: -1px;
1999}
2000
2001/*------------------
2002 Floating Label
2003-------------------*/
2004
2005.ui.floating.label {
2006 position: absolute;
2007 z-index: 100;
2008 top: -1em;
2009 right: 0;
2010 white-space: nowrap;
2011 -webkit-transform: translateX(50%);
2012 transform: translateX(50%);
2013}
2014.ui.right.aligned.floating.label {
2015 -webkit-transform: translateX(1.2em);
2016 transform: translateX(1.2em);
2017}
2018.ui.left.floating.label {
2019 left: 0;
2020 right: auto;
2021 -webkit-transform: translateX(-50%);
2022 transform: translateX(-50%);
2023}
2024.ui.left.aligned.floating.label {
2025 -webkit-transform: translateX(-1.2em);
2026 transform: translateX(-1.2em);
2027}
2028.ui.bottom.floating.label {
2029 top: auto;
2030 bottom: -1em;
2031}
2032
2033/*-------------------
2034 Sizes
2035--------------------*/
2036
2037.ui.mini.labels .label,
2038.ui.mini.label {
2039 font-size: 0.64285714rem;
2040}
2041.ui.tiny.labels .label,
2042.ui.tiny.label {
2043 font-size: 0.71428571rem;
2044}
2045.ui.small.labels .label,
2046.ui.small.label {
2047 font-size: 0.78571429rem;
2048}
2049.ui.labels .label,
2050.ui.label {
2051 font-size: 0.85714286rem;
2052}
2053.ui.large.labels .label,
2054.ui.large.label {
2055 font-size: 1rem;
2056}
2057.ui.big.labels .label,
2058.ui.big.label {
2059 font-size: 1.28571429rem;
2060}
2061.ui.huge.labels .label,
2062.ui.huge.label {
2063 font-size: 1.42857143rem;
2064}
2065.ui.massive.labels .label,
2066.ui.massive.label {
2067 font-size: 1.71428571rem;
2068}
2069
2070
2071/*******************************
2072 Theme Overrides
2073*******************************/
2074
2075
2076
2077/*******************************
2078 Site Overrides
2079*******************************/
2080