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.

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