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.

966 lines
20 KiB

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