You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1001 lines
21 KiB

9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. /*!
  2. * # Semantic UI 1.11.5 - Label
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2014 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Label
  13. *******************************/
  14. .ui.label {
  15. display: inline-block;
  16. vertical-align: baseline;
  17. line-height: 1;
  18. margin: 0em 0.142857em;
  19. background-color: #e8e8e8;
  20. border-color: #e8e8e8;
  21. background-image: none;
  22. padding: 0.5833em 0.833em;
  23. color: rgba(0, 0, 0, 0.6);
  24. text-transform: none;
  25. font-weight: bold;
  26. border-radius: 0.2857rem;
  27. box-sizing: border-box;
  28. -webkit-transition: background 0.2s ease;
  29. transition: background 0.2s ease;
  30. }
  31. .ui.label:first-child {
  32. margin-left: 0em;
  33. }
  34. .ui.label:last-child {
  35. margin-right: 0em;
  36. }
  37. /* Link */
  38. a.ui.label {
  39. cursor: pointer;
  40. }
  41. /* Inside Link */
  42. .ui.label a {
  43. cursor: pointer;
  44. color: inherit;
  45. opacity: 0.5;
  46. -webkit-transition: 0.2s opacity ease;
  47. transition: 0.2s opacity ease;
  48. }
  49. .ui.label a:hover {
  50. opacity: 1;
  51. }
  52. /* Icon */
  53. .ui.label .icon {
  54. width: auto;
  55. margin: 0em 0.75em 0em 0em;
  56. }
  57. /* Detail */
  58. .ui.label .detail {
  59. display: inline-block;
  60. vertical-align: top;
  61. font-weight: bold;
  62. margin-left: 1em;
  63. opacity: 0.8;
  64. }
  65. .ui.label .detail .icon {
  66. margin: 0em 0.25em 0em 0em;
  67. }
  68. /* Removable label */
  69. .ui.label .close.icon,
  70. .ui.label .delete.icon {
  71. cursor: pointer;
  72. margin-right: 0em;
  73. margin-left: 0.5em;
  74. font-size: 0.92857143em;
  75. opacity: 0.5;
  76. -webkit-transition: background 0.2s ease;
  77. transition: background 0.2s ease;
  78. }
  79. .ui.label .delete.icon:hover {
  80. opacity: 1;
  81. }
  82. /*-------------------
  83. Group
  84. --------------------*/
  85. .ui.labels .label {
  86. margin: 0em 0.5em 0.5em 0em;
  87. }
  88. /*-------------------
  89. Coupling
  90. --------------------*/
  91. .ui.header > .ui.label {
  92. margin-top: -0.29165em;
  93. }
  94. /* Remove border radius on attached segment */
  95. .ui.attached.segment > .ui.top.left.attached.label,
  96. .ui.bottom.attached.segment > .ui.top.left.attached.label {
  97. border-top-left-radius: 0;
  98. }
  99. .ui.attached.segment > .ui.top.right.attached.label,
  100. .ui.bottom.attached.segment > .ui.top.right.attached.label {
  101. border-top-right-radius: 0;
  102. }
  103. .ui.top.attached.segment > .ui.bottom.left.attached.label {
  104. border-bottom-left-radius: 0;
  105. }
  106. .ui.top.attached.segment > .ui.bottom.right.attached.label {
  107. border-bottom-right-radius: 0;
  108. }
  109. /* Padding on next content after a label */
  110. .ui.top.attached.label:first-child + :not(.attached) {
  111. margin-top: 2rem !important;
  112. }
  113. .ui.bottom.attached.label:first-child ~ :last-child:not(.attached) {
  114. margin-top: 0em;
  115. margin-bottom: 2rem !important;
  116. }
  117. /*******************************
  118. Types
  119. *******************************/
  120. .ui.image.label {
  121. width: auto !important;
  122. margin-top: 0em;
  123. margin-bottom: 0em;
  124. max-width: 9999px;
  125. vertical-align: baseline;
  126. text-transform: none;
  127. background: #e8e8e8;
  128. padding: 0.5833em 0.833em 0.5833em 0.5em;
  129. border-radius: 0.2857rem;
  130. box-shadow: none;
  131. }
  132. .ui.image.label img {
  133. display: inline-block;
  134. vertical-align: top;
  135. height: 2.1666em;
  136. margin: -0.5833em 0.5em -0.5833em -0.5em;
  137. border-radius: 0.2857rem;
  138. }
  139. .ui.image.label .detail {
  140. background: rgba(0, 0, 0, 0.1);
  141. margin: -0.5833em -0.833em -0.5833em 0.5em;
  142. padding: 0.5833em 0.833em;
  143. border-radius: 0em 0.2857rem 0.2857rem 0em;
  144. }
  145. /*-------------------
  146. Tag
  147. --------------------*/
  148. .ui.tag.labels .label,
  149. .ui.tag.label {
  150. margin-left: 1em;
  151. position: relative;
  152. padding-left: 1.5em;
  153. padding-right: 1.5em;
  154. border-radius: 0em 0.2857rem 0.2857rem 0em;
  155. }
  156. .ui.tag.labels .label:before,
  157. .ui.tag.label:before {
  158. position: absolute;
  159. -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
  160. -ms-transform: translateY(-50%) translateX(50%) rotate(-45deg);
  161. transform: translateY(-50%) translateX(50%) rotate(-45deg);
  162. top: 50%;
  163. right: 100%;
  164. content: '';
  165. background-color: #e8e8e8;
  166. background-image: none;
  167. width: 1.56em;
  168. height: 1.56em;
  169. -webkit-transition: background 0.2s ease;
  170. transition: background 0.2s ease;
  171. }
  172. .ui.tag.labels .label:after,
  173. .ui.tag.label:after {
  174. position: absolute;
  175. content: '';
  176. top: 50%;
  177. left: -0.25em;
  178. margin-top: -0.25em;
  179. background-color: #ffffff !important;
  180. width: 0.5em;
  181. height: 0.5em;
  182. box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
  183. border-radius: 500rem;
  184. }
  185. /*-------------------
  186. Corner Label
  187. --------------------*/
  188. .ui.corner.label {
  189. position: absolute;
  190. top: 0em;
  191. right: 0em;
  192. margin: 0em;
  193. padding: 0em;
  194. text-align: center;
  195. width: 3.25em;
  196. height: 3.25em;
  197. z-index: 1;
  198. -webkit-transition: border-color 0.2s ease;
  199. transition: border-color 0.2s ease;
  200. }
  201. /* Icon Label */
  202. .ui.corner.label {
  203. background-color: transparent !important;
  204. }
  205. .ui.corner.label:after {
  206. position: absolute;
  207. content: "";
  208. right: 0em;
  209. top: 0em;
  210. z-index: -1;
  211. width: 0em;
  212. height: 0em;
  213. background-color: transparent !important;
  214. border-top: 0em solid transparent;
  215. border-right: 3.25em solid transparent;
  216. border-bottom: 3.25em solid transparent;
  217. border-left: 0em solid transparent;
  218. border-right-color: inherit;
  219. -webkit-transition: border-color 0.2s ease;
  220. transition: border-color 0.2s ease;
  221. }
  222. .ui.corner.label .icon {
  223. position: relative;
  224. top: 0.4em;
  225. left: 0.75em;
  226. font-size: 1em;
  227. margin: 0em;
  228. }
  229. /* Left Corner */
  230. .ui.left.corner.label,
  231. .ui.left.corner.label:after {
  232. right: auto;
  233. left: 0em;
  234. }
  235. .ui.left.corner.label:after {
  236. border-top: 3.25em solid transparent;
  237. border-right: 3.25em solid transparent;
  238. border-bottom: 0em solid transparent;
  239. border-left: 0em solid transparent;
  240. border-top-color: inherit;
  241. }
  242. .ui.left.corner.label .icon {
  243. left: -0.75em;
  244. }
  245. /* Segment */
  246. .ui.segment > .ui.corner.label {
  247. top: -1px;
  248. right: -1px;
  249. }
  250. .ui.segment > .ui.left.corner.label {
  251. right: auto;
  252. left: -1px;
  253. }
  254. /* Input */
  255. .ui.input > .ui.corner.label {
  256. top: 1px;
  257. right: 1px;
  258. }
  259. .ui.input > .ui.right.corner.label {
  260. right: auto;
  261. left: 1px;
  262. }
  263. /*-------------------
  264. Ribbon
  265. --------------------*/
  266. .ui.ribbon.label {
  267. position: relative;
  268. margin: 0em;
  269. min-width: -webkit-max-content;
  270. min-width: -moz-max-content;
  271. min-width: max-content;
  272. border-radius: 0em 0.2857rem 0.2857rem 0em;
  273. border-color: rgba(0, 0, 0, 0.15);
  274. }
  275. .ui.ribbon.label:after {
  276. position: absolute;
  277. content: '';
  278. top: 100%;
  279. left: 0%;
  280. background-color: transparent !important;
  281. border-style: solid;
  282. border-width: 0em 1.2em 1.2em 0em;
  283. border-color: transparent;
  284. border-right-color: inherit;
  285. width: 0em;
  286. height: 0em;
  287. }
  288. /* Right Ribbon */
  289. .ui[class*="right ribbon"].label {
  290. text-align: left;
  291. -webkit-transform: translateX(-100%);
  292. -ms-transform: translateX(-100%);
  293. transform: translateX(-100%);
  294. border-radius: 0.2857rem 0em 0em 0.2857rem;
  295. padding-left: 0.833em;
  296. }
  297. .ui[class*="right ribbon"].label:after {
  298. left: auto;
  299. right: 0%;
  300. border-style: solid;
  301. border-width: 1.2em 1.2em 0em 0em;
  302. border-color: transparent;
  303. border-top-color: inherit;
  304. }
  305. /* Positioning */
  306. .ui.ribbon.label {
  307. left: -webkit-calc( -1rem - 1.2em );
  308. left: calc( -1rem - 1.2em );
  309. margin-right: -1.2em;
  310. padding-left: -webkit-calc( 1rem + 1.2em );
  311. padding-left: calc( 1rem + 1.2em );
  312. }
  313. .ui[class*="right ribbon"].label {
  314. left: -webkit-calc(100% + 1rem + 1.2em );
  315. left: calc(100% + 1rem + 1.2em );
  316. padding-right: -webkit-calc( 1rem + 1.2em );
  317. padding-right: calc( 1rem + 1.2em );
  318. }
  319. /* Inside Image */
  320. .ui.image > .ribbon.label,
  321. .ui.card .image > .ribbon.label {
  322. position: absolute;
  323. top: 1rem;
  324. }
  325. .ui.card .image > .ui.ribbon.label,
  326. .ui.image > .ui.ribbon.label {
  327. left: -webkit-calc( 0.05rem - 1.2em );
  328. left: calc( 0.05rem - 1.2em );
  329. padding-left: -webkit-calc( -0.05rem + 1.2em );
  330. padding-left: calc( -0.05rem + 1.2em );
  331. }
  332. .ui.card .image > .ui[class*="right ribbon"].label,
  333. .ui.image > .ui[class*="right ribbon"].label {
  334. left: -webkit-calc(100% + -0.05rem + 1.2em );
  335. left: calc(100% + -0.05rem + 1.2em );
  336. padding-left: 0.833em;
  337. padding-right: -webkit-calc( -0.05rem + 1.2em );
  338. padding-right: calc( -0.05rem + 1.2em );
  339. }
  340. /*-------------------
  341. Attached
  342. --------------------*/
  343. .ui.top.attached.label,
  344. .ui.attached.label {
  345. width: 100%;
  346. position: absolute;
  347. margin: 0em;
  348. top: 0em;
  349. left: 0em;
  350. padding: 0.75em 1em;
  351. border-radius: 0.2857rem 0.2857rem 0em 0em;
  352. }
  353. .ui.bottom.attached.label {
  354. top: auto;
  355. bottom: 0em;
  356. border-radius: 0em 0em 0.2857rem 0.2857rem;
  357. }
  358. .ui.top.left.attached.label {
  359. width: auto;
  360. margin-top: 0em !important;
  361. border-radius: 0.2857rem 0em 0.2857rem 0em;
  362. }
  363. .ui.top.right.attached.label {
  364. width: auto;
  365. left: auto;
  366. right: 0em;
  367. border-radius: 0em 0.2857rem 0em 0.2857rem;
  368. }
  369. .ui.bottom.left.attached.label {
  370. width: auto;
  371. top: auto;
  372. bottom: 0em;
  373. border-radius: 0em 0.2857rem 0em 0.2857rem;
  374. }
  375. .ui.bottom.right.attached.label {
  376. top: auto;
  377. bottom: 0em;
  378. left: auto;
  379. right: 0em;
  380. width: auto;
  381. border-radius: 0.2857rem 0em 0.2857rem 0em;
  382. }
  383. /*******************************
  384. States
  385. *******************************/
  386. /*-------------------
  387. Disabled
  388. --------------------*/
  389. .ui.label.disabled {
  390. opacity: 0.5;
  391. }
  392. /*-------------------
  393. Hover
  394. --------------------*/
  395. a.ui.labels .label:hover,
  396. a.ui.label:hover {
  397. background-color: #e0e0e0;
  398. border-color: #e0e0e0;
  399. background-image: none;
  400. color: rgba(0, 0, 0, 0.8);
  401. }
  402. .ui.labels a.label:hover:before,
  403. a.ui.label:hover:before {
  404. background-color: #e0e0e0;
  405. background-image: none;
  406. color: rgba(0, 0, 0, 0.8);
  407. }
  408. /*-------------------
  409. Active
  410. --------------------*/
  411. .ui.active.label {
  412. background-color: #d0d0d0;
  413. border-color: #d0d0d0;
  414. background-image: none;
  415. color: rgba(0, 0, 0, 0.9);
  416. }
  417. .ui.active.label:before {
  418. background-color: #d0d0d0;
  419. background-image: none;
  420. color: rgba(0, 0, 0, 0.9);
  421. }
  422. /*-------------------
  423. Active Hover
  424. --------------------*/
  425. a.ui.labels .active.label:hover,
  426. a.ui.active.label:hover {
  427. background-color: #c8c8c8;
  428. border-color: #c8c8c8;
  429. background-image: none;
  430. color: rgba(0, 0, 0, 0.9);
  431. }
  432. .ui.labels a.active.label:ActiveHover:before,
  433. a.ui.active.label:ActiveHover:before {
  434. background-color: #c8c8c8;
  435. background-image: none;
  436. color: rgba(0, 0, 0, 0.9);
  437. }
  438. /*-------------------
  439. Visible
  440. --------------------*/
  441. .ui.labels.visible .label,
  442. .ui.label.visible {
  443. display: inline-block !important;
  444. }
  445. /*-------------------
  446. Hidden
  447. --------------------*/
  448. .ui.labels.hidden .label,
  449. .ui.label.hidden {
  450. display: none !important;
  451. }
  452. /*******************************
  453. Variations
  454. *******************************/
  455. /*-------------------
  456. Colors
  457. --------------------*/
  458. /*--- Black ---*/
  459. .ui.black.labels .label,
  460. .ui.black.label {
  461. background-color: #1b1c1d !important;
  462. border-color: #1b1c1d !important;
  463. color: #ffffff !important;
  464. }
  465. .ui.labels .black.label:before,
  466. .ui.black.labels .label:before,
  467. .ui.black.label:before {
  468. background-color: #1b1c1d !important;
  469. }
  470. a.ui.black.labels .label:hover,
  471. a.ui.black.label:hover {
  472. background-color: #1b1c1d !important;
  473. border-color: #1b1c1d !important;
  474. }
  475. .ui.labels a.black.label:hover:before,
  476. .ui.black.labels a.label:hover:before,
  477. a.ui.black.label:hover:before {
  478. background-color: #1b1c1d !important;
  479. }
  480. .ui.black.corner.label,
  481. .ui.black.corner.label:hover {
  482. background-color: transparent !important;
  483. }
  484. .ui.black.ribbon.label {
  485. border-color: #020203 !important;
  486. }
  487. /*--- Blue ---*/
  488. .ui.blue.labels .label,
  489. .ui.blue.label {
  490. background-color: #3b83c0 !important;
  491. border-color: #3b83c0 !important;
  492. color: #ffffff !important;
  493. }
  494. .ui.labels .blue.label:before,
  495. .ui.blue.labels .label:before,
  496. .ui.blue.label:before {
  497. background-color: #3b83c0 !important;
  498. }
  499. a.ui.blue.labels .label:hover,
  500. .ui.blue.labels a.label:hover,
  501. a.ui.blue.label:hover {
  502. background-color: #5494cb !important;
  503. border-color: #5494cb !important;
  504. color: #ffffff !important;
  505. }
  506. .ui.labels a.blue.label:hover:before,
  507. .ui.blue.labels a.label:hover:before,
  508. a.ui.blue.label:hover:before {
  509. background-color: #5494cb !important;
  510. }
  511. .ui.blue.corner.label,
  512. .ui.blue.corner.label:hover {
  513. background-color: transparent !important;
  514. }
  515. .ui.blue.ribbon.label {
  516. border-color: #2f6899 !important;
  517. }
  518. /*--- Green ---*/
  519. .ui.green.labels .label,
  520. .ui.green.label {
  521. background-color: #5bbd72 !important;
  522. border-color: #5bbd72 !important;
  523. color: #ffffff !important;
  524. }
  525. .ui.labels .green.label:before,
  526. .ui.green.labels .label:before,
  527. .ui.green.label:before {
  528. background-color: #5bbd72 !important;
  529. }
  530. a.ui.green.labels .label:hover,
  531. a.ui.green.label:hover {
  532. background-color: #74c788 !important;
  533. border-color: #74c788 !important;
  534. }
  535. .ui.labels a.green.label:hover:before,
  536. .ui.green.labels a.label:hover:before,
  537. a.ui.green.label:hover:before {
  538. background-color: #74c788 !important;
  539. }
  540. .ui.green.corner.label,
  541. .ui.green.corner.label:hover {
  542. background-color: transparent !important;
  543. }
  544. .ui.green.ribbon.label {
  545. border-color: #42a359 !important;
  546. }
  547. /*--- Orange ---*/
  548. .ui.orange.labels .label,
  549. .ui.orange.label {
  550. background-color: #e07b53 !important;
  551. border-color: #e07b53 !important;
  552. color: #ffffff !important;
  553. }
  554. .ui.labels .orange.label:before,
  555. .ui.orange.labels .label:before,
  556. .ui.orange.label:before {
  557. background-color: #e07b53 !important;
  558. }
  559. a.ui.orange.labels .label:hover,
  560. .ui.orange.labels a.label:hover,
  561. a.ui.orange.label:hover {
  562. background-color: #e59271 !important;
  563. border-color: #e59271 !important;
  564. color: #ffffff !important;
  565. }
  566. .ui.labels a.orange.label:hover:before,
  567. .ui.orange.labels a.label:hover:before,
  568. a.ui.orange.label:hover:before {
  569. background-color: #e59271 !important;
  570. }
  571. .ui.orange.corner.label,
  572. .ui.orange.corner.label:hover {
  573. background-color: transparent !important;
  574. }
  575. .ui.orange.ribbon.label {
  576. border-color: #d85a28 !important;
  577. }
  578. /*--- Pink ---*/
  579. .ui.pink.labels .label,
  580. .ui.pink.label {
  581. background-color: #d9499a !important;
  582. border-color: #d9499a !important;
  583. color: #ffffff !important;
  584. }
  585. .ui.labels .pink.label:before,
  586. .ui.pink.labels .label:before,
  587. .ui.pink.label:before {
  588. background-color: #d9499a !important;
  589. }
  590. a.ui.pink.labels .label:hover,
  591. .ui.pink.labels a.label:hover,
  592. a.ui.pink.label:hover {
  593. background-color: #df67aa !important;
  594. border-color: #df67aa !important;
  595. color: #ffffff !important;
  596. }
  597. .ui.labels a.pink.label:hover:before,
  598. .ui.pink.labels a.label:hover:before,
  599. a.ui.pink.label:hover:before {
  600. background-color: #df67aa !important;
  601. }
  602. .ui.pink.corner.label,
  603. .ui.pink.corner.label:hover {
  604. background-color: transparent !important;
  605. }
  606. .ui.pink.ribbon.label {
  607. border-color: #c62981 !important;
  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. a.ui.purple.labels .label:hover,
  622. .ui.purple.labels a.label:hover,
  623. a.ui.purple.label:hover {
  624. background-color: #645ca1 !important;
  625. border-color: #645ca1 !important;
  626. color: #ffffff !important;
  627. }
  628. .ui.labels a.purple.label:hover:before,
  629. .ui.purple.labels a.label:hover:before,
  630. a.ui.purple.label:hover:before {
  631. background-color: #645ca1 !important;
  632. }
  633. .ui.purple.corner.label,
  634. .ui.purple.corner.label:hover {
  635. background-color: transparent !important;
  636. }
  637. .ui.purple.ribbon.label {
  638. border-color: #423c6a !important;
  639. }
  640. /*--- Red ---*/
  641. .ui.red.labels .label,
  642. .ui.red.label {
  643. background-color: #d95c5c !important;
  644. border-color: #d95c5c !important;
  645. color: #ffffff !important;
  646. }
  647. .ui.labels .red.label:before,
  648. .ui.red.labels .label:before,
  649. .ui.red.label:before {
  650. background-color: #d95c5c !important;
  651. }
  652. .ui.red.corner.label,
  653. .ui.red.corner.label:hover {
  654. background-color: transparent !important;
  655. }
  656. a.ui.red.labels .label:hover,
  657. a.ui.red.label:hover {
  658. background-color: #e07979 !important;
  659. border-color: #e07979 !important;
  660. color: #ffffff !important;
  661. }
  662. .ui.labels a.red.label:hover:before,
  663. .ui.red.labels a.label:hover:before,
  664. a.ui.red.label:hover:before {
  665. background-color: #e07979 !important;
  666. }
  667. .ui.red.ribbon.label {
  668. border-color: #cf3333 !important;
  669. }
  670. /*--- Teal ---*/
  671. .ui.teal.labels .label,
  672. .ui.teal.label {
  673. background-color: #00b5ad !important;
  674. border-color: #00b5ad !important;
  675. color: #ffffff !important;
  676. }
  677. .ui.labels .teal.label:before,
  678. .ui.teal.labels .label:before,
  679. .ui.teal.label:before {
  680. background-color: #00b5ad !important;
  681. }
  682. a.ui.teal.labels .label:hover,
  683. .ui.teal.labels a.label:hover,
  684. a.ui.teal.label:hover {
  685. background-color: #00d9cf !important;
  686. border-color: #00d9cf !important;
  687. color: #ffffff !important;
  688. }
  689. .ui.labels a.teal.label:hover:before,
  690. .ui.teal.labels a.label:hover:before,
  691. a.ui.teal.label:hover:before {
  692. background-color: #00d9cf !important;
  693. }
  694. .ui.teal.corner.label,
  695. .ui.teal.corner.label:hover {
  696. background-color: transparent !important;
  697. }
  698. .ui.teal.ribbon.label {
  699. border-color: #00827c !important;
  700. }
  701. /*--- Yellow ---*/
  702. .ui.yellow.labels .label,
  703. .ui.yellow.label {
  704. background-color: #f2c61f !important;
  705. border-color: #f2c61f !important;
  706. color: #ffffff !important;
  707. }
  708. .ui.labels .yellow.label:before,
  709. .ui.yellow.labels .label:before,
  710. .ui.yellow.label:before {
  711. background-color: #f2c61f !important;
  712. }
  713. a.ui.yellow.labels .label:hover,
  714. .ui.yellow.labels a.label:hover,
  715. a.ui.yellow.label:hover {
  716. background-color: #f4cf41 !important;
  717. border-color: #f4cf41 !important;
  718. color: #ffffff !important;
  719. }
  720. .ui.labels a.yellow.label:hover:before,
  721. .ui.yellow.labels a.label:hover:before,
  722. a.ui.yellow.label:hover:before {
  723. background-color: #f4cf41 !important;
  724. }
  725. .ui.yellow.corner.label,
  726. .ui.yellow.corner.label:hover {
  727. background-color: transparent !important;
  728. }
  729. .ui.yellow.ribbon.label {
  730. border-color: #d2a90c !important;
  731. }
  732. /*-------------------
  733. Fluid
  734. --------------------*/
  735. .ui.label.fluid,
  736. .ui.fluid.labels > .label {
  737. width: 100%;
  738. box-sizing: border-box;
  739. }
  740. /*-------------------
  741. Inverted
  742. --------------------*/
  743. .ui.inverted.labels .label,
  744. .ui.inverted.label {
  745. color: #ffffff !important;
  746. }
  747. /*-------------------
  748. Horizontal
  749. --------------------*/
  750. .ui.horizontal.labels .label,
  751. .ui.horizontal.label {
  752. margin: 0em 0.5em 0em 0em;
  753. padding: 0.4em 0.833em;
  754. min-width: 3em;
  755. text-align: center;
  756. }
  757. /*-------------------
  758. Circular
  759. --------------------*/
  760. .ui.circular.labels .label,
  761. .ui.circular.label {
  762. min-width: 2em;
  763. min-height: 2em;
  764. padding: 0.5em !important;
  765. line-height: 1em;
  766. text-align: center;
  767. border-radius: 500rem;
  768. }
  769. .ui.empty.circular.labels .label,
  770. .ui.empty.circular.label {
  771. min-width: 0em;
  772. min-height: 0em;
  773. overflow: hidden;
  774. width: 0.5em;
  775. height: 0.5em;
  776. vertical-align: baseline;
  777. }
  778. /*-------------------
  779. Pointing
  780. --------------------*/
  781. .ui.pointing.label {
  782. position: relative;
  783. }
  784. .ui.attached.pointing.label {
  785. position: absolute;
  786. }
  787. .ui.pointing.label:before {
  788. position: absolute;
  789. content: '';
  790. -webkit-transform: rotate(45deg);
  791. -ms-transform: rotate(45deg);
  792. transform: rotate(45deg);
  793. background-image: none;
  794. z-index: 2;
  795. width: 0.6em;
  796. height: 0.6em;
  797. -webkit-transition: background 0.2s ease;
  798. transition: background 0.2s ease;
  799. }
  800. /*--- Above ---*/
  801. .ui.pointing.label:before {
  802. background-color: #e8e8e8;
  803. background-image: none;
  804. }
  805. .ui.pointing.label,
  806. .ui.pointing.above.label {
  807. margin-top: 1em;
  808. }
  809. .ui.pointing.label:before,
  810. .ui.pointing.above.label:before {
  811. margin-left: -0.3em;
  812. top: -0.3em;
  813. left: 50%;
  814. }
  815. /*--- Below ---*/
  816. .ui.pointing.bottom.label,
  817. .ui.pointing.below.label {
  818. margin-top: 0em;
  819. margin-bottom: 1em;
  820. }
  821. .ui.pointing.bottom.label:before,
  822. .ui.pointing.below.label:before {
  823. margin-left: -0.3em;
  824. top: auto;
  825. right: auto;
  826. bottom: -0.3em;
  827. left: 50%;
  828. }
  829. /*--- Left ---*/
  830. .ui.pointing.left.label {
  831. margin-top: 0em;
  832. margin-left: 0.6em;
  833. }
  834. .ui.pointing.left.label:before {
  835. margin-top: -0.3em;
  836. bottom: auto;
  837. right: auto;
  838. top: 50%;
  839. left: 0em;
  840. }
  841. /*--- Right ---*/
  842. .ui.pointing.right.label {
  843. margin-top: 0em;
  844. margin-right: 0.6em;
  845. }
  846. .ui.pointing.right.label:before {
  847. margin-top: -0.3em;
  848. right: -0.3em;
  849. top: 50%;
  850. bottom: auto;
  851. left: auto;
  852. }
  853. /*------------------
  854. Floating Label
  855. -------------------*/
  856. .ui.floating.label {
  857. position: absolute;
  858. z-index: 100;
  859. top: -1em;
  860. left: 100%;
  861. margin: 0em 0em 0em -1.5em !important;
  862. }
  863. /*-------------------
  864. Sizes
  865. --------------------*/
  866. .ui.mini.labels .label,
  867. .ui.mini.label {
  868. font-size: 0.6428rem;
  869. }
  870. .ui.tiny.labels .label,
  871. .ui.tiny.label {
  872. font-size: 0.7142rem;
  873. }
  874. .ui.small.labels .label,
  875. .ui.small.label {
  876. font-size: 0.7857rem;
  877. }
  878. .ui.labels .label,
  879. .ui.label {
  880. font-size: 0.8571rem;
  881. }
  882. .ui.large.labels .label,
  883. .ui.large.label {
  884. font-size: 1rem;
  885. }
  886. .ui.big.labels .label,
  887. .ui.big.label {
  888. font-size: 1.1428rem;
  889. }
  890. .ui.huge.labels .label,
  891. .ui.huge.label {
  892. font-size: 1.2857rem;
  893. }
  894. .ui.massive.labels .label,
  895. .ui.massive.label {
  896. font-size: 1.4285rem;
  897. }
  898. /*******************************
  899. Theme Overrides
  900. *******************************/
  901. /*******************************
  902. Site Overrides
  903. *******************************/