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.

884 lines
16 KiB

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