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.

891 lines
17 KiB

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