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.

2368 lines
58 KiB

10 years ago
  1. /*
  2. * # Semantic UI
  3. * git://github.com/Semantic-Org/Semantic-UI.git
  4. *
  5. *
  6. * Copyright 2014 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Button
  13. *******************************/
  14. .ui.button {
  15. cursor: pointer;
  16. display: inline-block;
  17. min-height: 1em;
  18. outline: none;
  19. border: none;
  20. vertical-align: baseline;
  21. background-color: #e0e0e0;
  22. color: rgba(0, 0, 0, 0.6);
  23. margin: 0em 0.25em 0em 0em;
  24. padding: 0.8em 1.5em 0.8em;
  25. font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  26. text-transform: none;
  27. text-shadow: none;
  28. font-weight: bold;
  29. line-height: 1;
  30. font-style: normal;
  31. text-align: center;
  32. text-decoration: none;
  33. background-image: none;
  34. border-radius: 0.2857rem;
  35. box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  36. -webkit-user-select: none;
  37. -moz-user-select: none;
  38. -ms-user-select: none;
  39. user-select: none;
  40. -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
  41. transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
  42. -webkit-tap-highlight-color: transparent;
  43. }
  44. /*******************************
  45. States
  46. *******************************/
  47. /*--------------
  48. Hover
  49. ---------------*/
  50. .ui.button:hover {
  51. background-color: #e8e8e8;
  52. background-image: none;
  53. box-shadow: '';
  54. color: rgba(0, 0, 0, 0.8);
  55. }
  56. .ui.button:hover .icon {
  57. opacity: 0.85;
  58. }
  59. /*--------------
  60. Focus
  61. ---------------*/
  62. .ui.button:focus {
  63. background-color: '';
  64. background-image: '';
  65. box-shadow: 0px 0px 0px 1px transparent inset, 0px 0px 1px rgba(81, 167, 232, 0.8) inset, 0px 0px 3px 2px rgba(81, 167, 232, 0.8);
  66. color: rgba(0, 0, 0, 0.8);
  67. }
  68. .ui.button:focus .icon {
  69. opacity: 0.85;
  70. }
  71. /*--------------
  72. Down
  73. ---------------*/
  74. .ui.button:active,
  75. .ui.active.button:active {
  76. background-color: #cccccc;
  77. background-image: '';
  78. color: rgba(0, 0, 0, 0.8);
  79. box-shadow: 0px 0px 0px 1px transparent inset, 0px 1px 4px 0px rgba(39, 41, 43, 0.15) inset;
  80. }
  81. /*--------------
  82. Active
  83. ---------------*/
  84. .ui.active.button {
  85. background-color: #d0d0d0;
  86. background-image: none;
  87. box-shadow: 0px 0px 0px 1px transparent inset;
  88. color: rgba(0, 0, 0, 0.8);
  89. }
  90. .ui.button.active:hover {
  91. background-color: #d0d0d0;
  92. background-image: none;
  93. color: rgba(0, 0, 0, 0.8);
  94. }
  95. .ui.button.active:active {
  96. background-color: #d0d0d0;
  97. background-image: none;
  98. }
  99. /*--------------
  100. Loading
  101. ---------------*/
  102. /* Specificity hack */
  103. .ui.loading.loading.loading.loading.loading.loading.button {
  104. position: relative;
  105. cursor: default;
  106. point-events: none;
  107. text-shadow: none !important;
  108. color: transparent !important;
  109. -webkit-transition: all 0s linear;
  110. transition: all 0s linear;
  111. }
  112. .ui.loading.button:before {
  113. position: absolute;
  114. content: '';
  115. top: 50%;
  116. left: 50%;
  117. margin: -0.64285em 0em 0em -0.64285em;
  118. width: 1.2857em;
  119. height: 1.2857em;
  120. border-radius: 500rem;
  121. border: 3px solid rgba(0, 0, 0, 0.15);
  122. }
  123. .ui.loading.button:after {
  124. position: absolute;
  125. content: '';
  126. top: 50%;
  127. left: 50%;
  128. margin: -0.64285em 0em 0em -0.64285em;
  129. width: 1.2857em;
  130. height: 1.2857em;
  131. -webkit-animation: button-spin 0.75s linear;
  132. animation: button-spin 0.75s linear;
  133. -webkit-animation-iteration-count: infinite;
  134. animation-iteration-count: infinite;
  135. border-radius: 500rem;
  136. border-color: rgba(255, 255, 255, 0.8) transparent transparent;
  137. border-style: solid;
  138. border-width: 3px;
  139. box-shadow: 0px 0px 0px 1px transparent;
  140. }
  141. .ui.labeled.icon.loading.button .icon {
  142. background-color: transparent;
  143. box-shadow: none;
  144. }
  145. @-webkit-keyframes button-spin {
  146. from {
  147. -webkit-transform: rotate(0deg);
  148. transform: rotate(0deg);
  149. }
  150. to {
  151. -webkit-transform: rotate(360deg);
  152. transform: rotate(360deg);
  153. }
  154. }
  155. @keyframes button-spin {
  156. from {
  157. -webkit-transform: rotate(0deg);
  158. transform: rotate(0deg);
  159. }
  160. to {
  161. -webkit-transform: rotate(360deg);
  162. transform: rotate(360deg);
  163. }
  164. }
  165. .ui.basic.loading.button:not(.inverted):after {
  166. border-color: #aaaaaa transparent transparent;
  167. }
  168. /*-------------------
  169. Disabled
  170. --------------------*/
  171. .ui.buttons .disabled.button,
  172. .ui.disabled.button,
  173. .ui.disabled.button:hover,
  174. .ui.disabled.button.active {
  175. cursor: default;
  176. background-color: #dcddde !important;
  177. color: rgba(0, 0, 0, 0.4) !important;
  178. opacity: 0.3 !important;
  179. background-image: none !important;
  180. box-shadow: none !important;
  181. pointer-events: none;
  182. }
  183. /*******************************
  184. Types
  185. *******************************/
  186. /*-------------------
  187. Animated
  188. --------------------*/
  189. .ui.animated.button {
  190. position: relative;
  191. overflow: hidden;
  192. padding-right: 0em !important;
  193. }
  194. .ui.animated.button .content {
  195. will-change: transform, opacity;
  196. }
  197. .ui.animated.button .visible.content {
  198. position: relative;
  199. margin-right: 1.5em;
  200. }
  201. .ui.animated.button .hidden.content {
  202. position: absolute;
  203. width: 100%;
  204. }
  205. /* Horizontal */
  206. .ui.animated.button .visible.content,
  207. .ui.animated.button .hidden.content {
  208. -webkit-transition: right 0.3s ease 0s;
  209. transition: right 0.3s ease 0s;
  210. }
  211. .ui.animated.button .visible.content {
  212. left: auto;
  213. right: 0%;
  214. }
  215. .ui.animated.button .hidden.content {
  216. top: 50%;
  217. left: auto;
  218. right: -100%;
  219. margin-top: -0.5em;
  220. }
  221. .ui.animated.button:hover .visible.content {
  222. left: auto;
  223. right: 200%;
  224. }
  225. .ui.animated.button:hover .hidden.content {
  226. left: auto;
  227. right: 0%;
  228. }
  229. /* Vertical */
  230. .ui.vertical.animated.button .visible.content,
  231. .ui.vertical.animated.button .hidden.content {
  232. -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  233. transition: top 0.3s ease, transform 0.3s ease;
  234. }
  235. .ui.vertical.animated.button .visible.content {
  236. -webkit-transform: translateY(0%);
  237. -ms-transform: translateY(0%);
  238. transform: translateY(0%);
  239. right: auto;
  240. }
  241. .ui.vertical.animated.button .hidden.content {
  242. top: -50%;
  243. left: 0%;
  244. right: auto;
  245. }
  246. .ui.vertical.animated.button:hover .visible.content {
  247. -webkit-transform: translateY(200%);
  248. -ms-transform: translateY(200%);
  249. transform: translateY(200%);
  250. right: auto;
  251. }
  252. .ui.vertical.animated.button:hover .hidden.content {
  253. top: 50%;
  254. right: auto;
  255. }
  256. /* Fade */
  257. .ui.fade.animated.button .visible.content,
  258. .ui.fade.animated.button .hidden.content {
  259. -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  260. transition: opacity 0.3s ease, transform 0.3s ease;
  261. }
  262. .ui.fade.animated.button .visible.content {
  263. left: auto;
  264. right: auto;
  265. opacity: 1;
  266. -webkit-transform: scale(1);
  267. -ms-transform: scale(1);
  268. transform: scale(1);
  269. }
  270. .ui.fade.animated.button .hidden.content {
  271. opacity: 0;
  272. left: 0%;
  273. right: auto;
  274. -webkit-transform: scale(1.5);
  275. -ms-transform: scale(1.5);
  276. transform: scale(1.5);
  277. }
  278. .ui.fade.animated.button:hover .visible.content {
  279. left: auto;
  280. right: auto;
  281. opacity: 0;
  282. -webkit-transform: scale(0.75);
  283. -ms-transform: scale(0.75);
  284. transform: scale(0.75);
  285. }
  286. .ui.fade.animated.button:hover .hidden.content {
  287. left: 0%;
  288. right: auto;
  289. opacity: 1;
  290. -webkit-transform: scale(1);
  291. -ms-transform: scale(1);
  292. transform: scale(1);
  293. }
  294. /*-------------------
  295. Inverted
  296. --------------------*/
  297. .ui.inverted.button {
  298. box-shadow: 0px 0px 0px 2px #ffffff inset !important;
  299. background: transparent none;
  300. color: #ffffff;
  301. text-shadow: none !important;
  302. }
  303. .ui.inverted.buttons .button {
  304. margin: 0px 0px 0px -2px;
  305. }
  306. .ui.inverted.buttons .button:first-child {
  307. margin-left: 0em;
  308. }
  309. .ui.inverted.vertical.buttons .button {
  310. margin: 0px 0px -2px 0px;
  311. }
  312. .ui.inverted.vertical.buttons .button:first-child {
  313. margin-top: 0em;
  314. }
  315. .ui.inverted.buttons .button:hover {
  316. position: relative;
  317. }
  318. .ui.inverted.button:hover {
  319. background: #ffffff;
  320. box-shadow: 0px 0px 0px 2px #ffffff inset !important;
  321. color: rgba(0, 0, 0, 0.8);
  322. }
  323. /*-------------------
  324. Social
  325. --------------------*/
  326. /* Facebook */
  327. .ui.facebook.button {
  328. background-color: #3b579d;
  329. color: #ffffff;
  330. text-shadow: none;
  331. background-image: none;
  332. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  333. }
  334. .ui.facebook.button:hover {
  335. background-color: #3f5da8;
  336. color: #ffffff;
  337. text-shadow: none;
  338. }
  339. .ui.facebook.button:active {
  340. background-color: #344d8a;
  341. color: #ffffff;
  342. text-shadow: none;
  343. }
  344. /* Twitter */
  345. .ui.twitter.button {
  346. background-color: #4092cc;
  347. color: #ffffff;
  348. text-shadow: none;
  349. background-image: none;
  350. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  351. }
  352. .ui.twitter.button:hover {
  353. background-color: #4c99cf;
  354. color: #ffffff;
  355. text-shadow: none;
  356. }
  357. .ui.twitter.button:active {
  358. background-color: #3385bf;
  359. color: #ffffff;
  360. text-shadow: none;
  361. }
  362. /* Google Plus */
  363. .ui.google.plus.button {
  364. background-color: #d34836;
  365. color: #ffffff;
  366. text-shadow: none;
  367. background-image: none;
  368. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  369. }
  370. .ui.google.plus.button:hover {
  371. background-color: #d65343;
  372. color: #ffffff;
  373. text-shadow: none;
  374. }
  375. .ui.google.plus.button:active {
  376. background-color: #c43d2b;
  377. color: #ffffff;
  378. text-shadow: none;
  379. }
  380. /* Linked In */
  381. .ui.linkedin.button {
  382. background-color: #1f88be;
  383. color: #ffffff;
  384. text-shadow: none;
  385. }
  386. .ui.linkedin.button:hover {
  387. background-color: #2191cb;
  388. color: #ffffff;
  389. text-shadow: none;
  390. }
  391. .ui.linkedin.button:active {
  392. background-color: #1b78a8;
  393. color: #ffffff;
  394. text-shadow: none;
  395. }
  396. /* YouTube */
  397. .ui.youtube.button {
  398. background-color: #cc181e;
  399. color: #ffffff;
  400. text-shadow: none;
  401. background-image: none;
  402. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  403. }
  404. .ui.youtube.button:hover {
  405. background-color: #da1a20;
  406. color: #ffffff;
  407. text-shadow: none;
  408. }
  409. .ui.youtube.button:active {
  410. background-color: #b5151b;
  411. color: #ffffff;
  412. text-shadow: none;
  413. }
  414. /* Instagram */
  415. .ui.instagram.button {
  416. background-color: #49769c;
  417. color: #ffffff;
  418. text-shadow: none;
  419. background-image: none;
  420. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  421. }
  422. .ui.instagram.button:hover {
  423. background-color: #4e7ea6;
  424. color: #ffffff;
  425. text-shadow: none;
  426. }
  427. .ui.instagram.button:active {
  428. background-color: #41698b;
  429. color: #ffffff;
  430. text-shadow: none;
  431. }
  432. /* Pinterest */
  433. .ui.pinterest.button {
  434. background-color: #00aced;
  435. color: #ffffff;
  436. text-shadow: none;
  437. background-image: none;
  438. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  439. }
  440. .ui.pinterest.button:hover {
  441. background-color: #00b7fc;
  442. color: #ffffff;
  443. text-shadow: none;
  444. }
  445. .ui.pinterest.button:active {
  446. background-color: #0099d4;
  447. color: #ffffff;
  448. text-shadow: none;
  449. }
  450. /* VK */
  451. .ui.vk.button {
  452. background-color: #4D7198;
  453. color: #ffffff;
  454. background-image: none;
  455. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  456. }
  457. .ui.vk.button:hover {
  458. background-color: #5279a2;
  459. color: #ffffff;
  460. }
  461. .ui.vk.button:active {
  462. background-color: #446487;
  463. color: #ffffff;
  464. }
  465. /*--------------
  466. Icon
  467. ---------------*/
  468. .ui.button > .icon {
  469. opacity: 0.8;
  470. margin: 0em 0.4em 0em -0.2em;
  471. -webkit-transition: opacity 0.2s ease;
  472. transition: opacity 0.2s ease;
  473. vertical-align: baseline;
  474. }
  475. .ui.button > .right.icon {
  476. margin: 0em -0.2em 0em 0.4em;
  477. }
  478. /*******************************
  479. Variations
  480. *******************************/
  481. /*-------------------
  482. Floated
  483. --------------------*/
  484. .ui[class*="left floated"].buttons,
  485. .ui[class*="left floated"].button {
  486. float: left;
  487. margin-left: 0em;
  488. margin-right: 0.25em;
  489. }
  490. .ui[class*="right floated"].buttons,
  491. .ui[class*="right floated"].button {
  492. float: right;
  493. margin-right: 0em;
  494. margin-left: 0.25em;
  495. }
  496. /*-------------------
  497. Compact
  498. --------------------*/
  499. .ui.compact.buttons .button,
  500. .ui.compact.button {
  501. padding: 0.6em 1.125em 0.6em;
  502. }
  503. .ui.compact.icon.buttons .button,
  504. .ui.compact.icon.button {
  505. padding: 0.6em 0.6em 0.6em;
  506. }
  507. .ui.compact.labeled.icon.buttons .button,
  508. .ui.compact.labeled.icon.button {
  509. padding: 0.6em 3.725em 0.6em;
  510. }
  511. /*-------------------
  512. Sizes
  513. --------------------*/
  514. .ui.mini.buttons .button,
  515. .ui.mini.buttons .or,
  516. .ui.mini.button {
  517. font-size: 0.7142em;
  518. }
  519. .ui.tiny.buttons .button,
  520. .ui.tiny.buttons .or,
  521. .ui.tiny.button {
  522. font-size: 0.8571em;
  523. }
  524. .ui.small.buttons .button,
  525. .ui.small.buttons .or,
  526. .ui.small.button {
  527. font-size: 0.9285em;
  528. }
  529. .ui.buttons .button,
  530. .ui.buttons .or,
  531. .ui.button {
  532. font-size: 1em;
  533. }
  534. .ui.large.buttons .button,
  535. .ui.large.buttons .or,
  536. .ui.large.button {
  537. font-size: 1.1428em;
  538. }
  539. .ui.big.buttons .button,
  540. .ui.big.buttons .or,
  541. .ui.big.button {
  542. font-size: 1.2857em;
  543. }
  544. .ui.huge.buttons .button,
  545. .ui.huge.buttons .or,
  546. .ui.huge.button {
  547. font-size: 1.4285em;
  548. }
  549. .ui.massive.buttons .button,
  550. .ui.massive.buttons .or,
  551. .ui.massive.button {
  552. font-size: 1.7142em;
  553. }
  554. /*--------------
  555. Icon Only
  556. ---------------*/
  557. .ui.icon.buttons .button,
  558. .ui.icon.button {
  559. padding: 0.8em 0.8em 0.8em;
  560. }
  561. .ui.icon.buttons .button > .icon,
  562. .ui.icon.button > .icon {
  563. opacity: 0.9;
  564. margin: 0em;
  565. vertical-align: top;
  566. }
  567. /*-------------------
  568. Basic
  569. --------------------*/
  570. .ui.basic.buttons .button,
  571. .ui.basic.button {
  572. background: transparent !important;
  573. background-image: none;
  574. color: rgba(0, 0, 0, 0.6) !important;
  575. font-weight: normal;
  576. border-radius: 0.2857rem;
  577. text-transform: none;
  578. text-shadow: none !important;
  579. box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15) inset;
  580. }
  581. .ui.basic.buttons {
  582. box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15);
  583. border-radius: 0.2857rem;
  584. }
  585. .ui.basic.buttons .button {
  586. border-radius: 0em;
  587. }
  588. .ui.basic.buttons .button:hover,
  589. .ui.basic.button:hover {
  590. background: #fafafa !important;
  591. color: rgba(0, 0, 0, 0.8) !important;
  592. box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15) inset, 0px 0px 0px 0px rgba(39, 41, 43, 0.15) inset;
  593. }
  594. .ui.basic.buttons .button:active,
  595. .ui.basic.button:active {
  596. background: #f8f8f8 !important;
  597. color: rgba(0, 0, 0, 0.8) !important;
  598. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(39, 41, 43, 0.15) inset;
  599. }
  600. .ui.basic.buttons .button.active,
  601. .ui.basic.button.active {
  602. background: rgba(0, 0, 0, 0.05) !important;
  603. box-shadow: '' !important;
  604. color: rgba(0, 0, 0, 0.8);
  605. box-shadow: rgba(39, 41, 43, 0.2);
  606. }
  607. .ui.basic.buttons .button.active:hover,
  608. .ui.basic.button.active:hover {
  609. background-color: rgba(0, 0, 0, 0.05);
  610. }
  611. /* Vertical */
  612. .ui.basic.buttons .button:hover {
  613. box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15) inset, 0px 0px 0px 0px rgba(39, 41, 43, 0.15) inset inset;
  614. }
  615. .ui.basic.buttons .button:active {
  616. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(39, 41, 43, 0.15) inset inset;
  617. }
  618. .ui.basic.buttons .button.active {
  619. box-shadow: rgba(39, 41, 43, 0.2) inset;
  620. }
  621. /* Standard Basic Inverted */
  622. .ui.basic.inverted.buttons .button,
  623. .ui.basic.inverted.button {
  624. background-color: transparent !important;
  625. color: #fafafa !important;
  626. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  627. }
  628. .ui.basic.inverted.buttons .button:hover,
  629. .ui.basic.inverted.button:hover {
  630. color: #ffffff !important;
  631. box-shadow: 0px 0px 0px 2px #ffffff inset !important;
  632. }
  633. .ui.basic.inverted.buttons .button:active,
  634. .ui.basic.inverted.button:active {
  635. background-color: rgba(255, 255, 255, 0.05) !important;
  636. color: #ffffff !important;
  637. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important;
  638. }
  639. .ui.basic.inverted.buttons .button.active,
  640. .ui.basic.inverted.button.active {
  641. background-color: rgba(255, 255, 255, 0.05);
  642. color: #ffffff;
  643. text-shadow: none;
  644. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset;
  645. }
  646. .ui.basic.inverted.buttons .button.active:hover,
  647. .ui.basic.inverted.button.active:hover {
  648. background-color: rgba(255, 255, 255, 0.07);
  649. box-shadow: 0px 0px 0px 2px #ffffff inset !important;
  650. }
  651. /* Basic Group */
  652. .ui.basic.buttons .button {
  653. border-left: 1px solid rgba(39, 41, 43, 0.15);
  654. box-shadow: none;
  655. }
  656. .ui.basic.vertical.buttons .button {
  657. border-left: none;
  658. }
  659. /*--------------
  660. Labeled Icon
  661. ---------------*/
  662. .ui.labeled.icon.buttons .button,
  663. .ui.labeled.icon.button {
  664. position: relative;
  665. padding-left: 4.1em !important;
  666. padding-right: 1.5em !important;
  667. }
  668. /* Left Labeled */
  669. .ui.labeled.icon.buttons > .button > .icon,
  670. .ui.labeled.icon.button > .icon {
  671. position: absolute;
  672. width: 2.6em;
  673. height: 100%;
  674. background-color: rgba(0, 0, 0, 0.05);
  675. text-align: center;
  676. color: '';
  677. border-radius: 0.2857rem 0px 0px 0.2857rem;
  678. line-height: 1;
  679. box-shadow: -1px 0px 0px 0px transparent inset;
  680. }
  681. /* Left Labeled */
  682. .ui.labeled.icon.buttons > .button > .icon,
  683. .ui.labeled.icon.button > .icon {
  684. top: 0em;
  685. left: 0em;
  686. }
  687. /* Right Labeled */
  688. .ui[class*="right labeled"].icon.button {
  689. padding-right: 4.1em !important;
  690. padding-left: 1.5em !important;
  691. }
  692. .ui[class*="right labeled"].icon.button > .icon {
  693. left: auto;
  694. right: 0em;
  695. border-radius: 0em 0.2857rem 0.2857rem 0em;
  696. box-shadow: 1px 0px 0px 0px transparent inset;
  697. }
  698. .ui.labeled.icon.buttons > .button > .icon:before,
  699. .ui.labeled.icon.button > .icon:before,
  700. .ui.labeled.icon.buttons > .button > .icon:after,
  701. .ui.labeled.icon.button > .icon:after {
  702. display: block;
  703. position: absolute;
  704. width: 100%;
  705. top: 50%;
  706. text-align: center;
  707. margin-top: -0.5em;
  708. }
  709. .ui.labeled.icon.buttons .button > .icon {
  710. border-radius: 0em;
  711. }
  712. .ui.labeled.icon.buttons .button:first-child > .icon {
  713. border-top-left-radius: 0.2857rem;
  714. border-bottom-left-radius: 0.2857rem;
  715. }
  716. .ui.labeled.icon.buttons .button:last-child > .icon {
  717. border-top-right-radius: 0.2857rem;
  718. border-bottom-right-radius: 0.2857rem;
  719. }
  720. .ui.vertical.labeled.icon.buttons .button:first-child > .icon {
  721. border-radius: 0em;
  722. border-top-left-radius: 0.2857rem;
  723. }
  724. .ui.vertical.labeled.icon.buttons .button:last-child > .icon {
  725. border-radius: 0em;
  726. border-bottom-left-radius: 0.2857rem;
  727. }
  728. /* Fluid Labeled */
  729. .ui.fluid[class*="left labeled"].icon.button,
  730. .ui.fluid[class*="right labeled"].icon.button {
  731. padding-left: 1.5em !important;
  732. padding-right: 1.5em !important;
  733. }
  734. /*--------------
  735. Toggle
  736. ---------------*/
  737. /* Toggle (Modifies active state to give affordances) */
  738. .ui.toggle.buttons .active.button,
  739. .ui.buttons .button.toggle.active,
  740. .ui.button.toggle.active {
  741. background-color: #5bbd72 !important;
  742. box-shadow: none !important;
  743. text-shadow: none;
  744. color: #ffffff !important;
  745. }
  746. .ui.button.toggle.active:hover {
  747. background-color: #66c17b !important;
  748. text-shadow: none;
  749. color: #ffffff !important;
  750. }
  751. /*--------------
  752. Circular
  753. ---------------*/
  754. .ui.circular.button {
  755. border-radius: 10em;
  756. }
  757. .ui.circular.button > .icon {
  758. width: 1em;
  759. vertical-align: baseline;
  760. }
  761. /*--------------
  762. Attached
  763. ---------------*/
  764. .ui.attached.button {
  765. display: block;
  766. margin: 0em;
  767. box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15) !important;
  768. border-radius: 0em;
  769. }
  770. .ui.attached.top.button {
  771. border-radius: 0.2857rem 0.2857rem 0em 0em;
  772. }
  773. .ui.attached.bottom.button {
  774. border-radius: 0em 0em 0.2857rem 0.2857rem;
  775. }
  776. .ui.attached.left.button {
  777. display: inline-block;
  778. border-left: none;
  779. padding-right: 0.75em;
  780. text-align: right;
  781. border-radius: 0.2857rem 0em 0em 0.2857rem;
  782. }
  783. .ui.attached.right.button {
  784. display: inline-block;
  785. padding-left: 0.75em;
  786. text-align: left;
  787. border-radius: 0em 0.2857rem 0.2857rem 0em;
  788. }
  789. /*-------------------
  790. Or Buttons
  791. --------------------*/
  792. .ui.buttons .or {
  793. position: relative;
  794. float: left;
  795. width: 0.3em;
  796. height: 2.6em;
  797. z-index: 3;
  798. }
  799. .ui.buttons .or:before {
  800. position: absolute;
  801. top: 50%;
  802. left: 50%;
  803. content: 'or';
  804. background-color: #ffffff;
  805. text-shadow: none;
  806. margin-top: -0.9em;
  807. margin-left: -0.9em;
  808. width: 1.8em;
  809. height: 1.8em;
  810. line-height: 1.6em;
  811. color: rgba(0, 0, 0, 0.4);
  812. font-style: normal;
  813. font-weight: bold;
  814. text-align: center;
  815. border-radius: 500em;
  816. box-shadow: 0px 0px 0px 1px transparent inset;
  817. }
  818. /* Fluid Or */
  819. .ui.fluid.buttons .or {
  820. width: 0em !important;
  821. }
  822. .ui.fluid.buttons .or:after {
  823. display: none;
  824. }
  825. /*-------------------
  826. Attached
  827. --------------------*/
  828. /* Plural Attached */
  829. .attached.ui.buttons {
  830. margin: 0px;
  831. border-radius: 0em 0em 0em 0em;
  832. }
  833. .attached.ui.buttons .button {
  834. margin: 0em;
  835. }
  836. .attached.ui.buttons .button:first-child {
  837. border-radius: 0em 0em 0em 0em;
  838. }
  839. .attached.ui.buttons .button:last-child {
  840. border-radius: 0em 0em 0em 0em;
  841. }
  842. /* Top Side */
  843. [class*="top attached"].ui.buttons {
  844. margin-bottom: -1px;
  845. border-radius: 0.2857rem 0.2857rem 0em 0em;
  846. }
  847. [class*="top attached"].ui.buttons .button:first-child {
  848. border-radius: 0.2857rem 0em 0em 0em;
  849. }
  850. [class*="top attached"].ui.buttons .button:last-child {
  851. border-radius: 0em 0.2857rem 0em 0em;
  852. }
  853. /* Bottom Side */
  854. [class*="bottom attached"].ui.buttons {
  855. margin-top: -1px;
  856. border-radius: 0em 0em 0.2857rem 0.2857rem;
  857. }
  858. [class*="bottom attached"].ui.buttons .button:first-child {
  859. border-radius: 0em 0em 0em 0.2857rem;
  860. }
  861. [class*="bottom attached"].ui.buttons .button:last-child {
  862. border-radius: 0em 0em 0.2857rem 0em;
  863. }
  864. /* Left Side */
  865. [class*="left attached"].ui.buttons {
  866. margin-left: -1px;
  867. border-radius: 0em 0.2857rem 0.2857rem 0em;
  868. }
  869. [class*="left attached"].ui.buttons .button:first-child {
  870. margin-left: -1px;
  871. border-radius: 0em 0.2857rem 0em 0em;
  872. }
  873. [class*="left attached"].ui.buttons .button:last-child {
  874. margin-left: -1px;
  875. border-radius: 0em 0em 0.2857rem 0em;
  876. }
  877. /* Right Side */
  878. [class*="right attached"].ui.buttons,
  879. [class*="right attached"].ui.buttons .button {
  880. margin-right: -1px;
  881. border-radius: 0.2857rem 0em 0em 0.2857rem;
  882. }
  883. [class*="right attached"].ui.buttons .button:first-child {
  884. margin-left: -1px;
  885. border-radius: 0.2857rem 0em 0em 0em;
  886. }
  887. [class*="right attached"].ui.buttons .button:last-child {
  888. margin-left: -1px;
  889. border-radius: 0em 0em 0em 0.2857rem;
  890. }
  891. /* Fluid */
  892. .ui.fluid.buttons,
  893. .ui.button.fluid,
  894. .ui.fluid.buttons > .button {
  895. display: block;
  896. width: 100%;
  897. }
  898. .ui.\32.buttons,
  899. .ui.two.buttons {
  900. width: 100%;
  901. }
  902. .ui.\32.buttons > .button,
  903. .ui.two.buttons > .button {
  904. width: 50%;
  905. }
  906. .ui.\33.buttons,
  907. .ui.three.buttons {
  908. width: 100%;
  909. }
  910. .ui.\33.buttons > .button,
  911. .ui.three.buttons > .button {
  912. width: 33.333%;
  913. }
  914. .ui.\34.buttons,
  915. .ui.four.buttons {
  916. width: 100%;
  917. }
  918. .ui.\34.buttons > .button,
  919. .ui.four.buttons > .button {
  920. width: 25%;
  921. }
  922. .ui.\35.buttons,
  923. .ui.five.buttons {
  924. width: 100%;
  925. }
  926. .ui.\35.buttons > .button,
  927. .ui.five.buttons > .button {
  928. width: 20%;
  929. }
  930. .ui.\36.buttons,
  931. .ui.six.buttons {
  932. width: 100%;
  933. }
  934. .ui.\36.buttons > .button,
  935. .ui.six.buttons > .button {
  936. width: 16.666%;
  937. }
  938. .ui.\37.buttons,
  939. .ui.seven.buttons {
  940. width: 100%;
  941. }
  942. .ui.\37.buttons > .button,
  943. .ui.seven.buttons > .button {
  944. width: 14.285%;
  945. }
  946. .ui.\38.buttons,
  947. .ui.eight.buttons {
  948. width: 100%;
  949. }
  950. .ui.\38.buttons > .button,
  951. .ui.eight.buttons > .button {
  952. width: 12.500%;
  953. }
  954. .ui.\39.buttons,
  955. .ui.nine.buttons {
  956. width: 100%;
  957. }
  958. .ui.\39.buttons > .button,
  959. .ui.nine.buttons > .button {
  960. width: 11.11%;
  961. }
  962. .ui.\31\30.buttons,
  963. .ui.ten.buttons {
  964. width: 100%;
  965. }
  966. .ui.\31\30.buttons > .button,
  967. .ui.ten.buttons > .button {
  968. width: 10%;
  969. }
  970. .ui.\31\31.buttons,
  971. .ui.eleven.buttons {
  972. width: 100%;
  973. }
  974. .ui.\31\31.buttons > .button,
  975. .ui.eleven.buttons > .button {
  976. width: 9.09%;
  977. }
  978. .ui.\31\32.buttons,
  979. .ui.twelve.buttons {
  980. width: 100%;
  981. }
  982. .ui.\31\32.buttons > .button,
  983. .ui.twelve.buttons > .button {
  984. width: 8.3333%;
  985. }
  986. /* Fluid Vertical Buttons */
  987. .ui.fluid.vertical.buttons,
  988. .ui.fluid.vertical.buttons > .button {
  989. display: block;
  990. width: auto;
  991. }
  992. .ui.\32.vertical.buttons > .button,
  993. .ui.two.vertical.buttons > .button {
  994. height: 50%;
  995. }
  996. .ui.\33.vertical.buttons > .button,
  997. .ui.three.vertical.buttons > .button {
  998. height: 33.333%;
  999. }
  1000. .ui.\34.vertical.buttons > .button,
  1001. .ui.four.vertical.buttons > .button {
  1002. height: 25%;
  1003. }
  1004. .ui.\35.vertical.buttons > .button,
  1005. .ui.five.vertical.buttons > .button {
  1006. height: 20%;
  1007. }
  1008. .ui.\36.vertical.buttons > .button,
  1009. .ui.six.vertical.buttons > .button {
  1010. height: 16.666%;
  1011. }
  1012. .ui.\37.vertical.buttons > .button,
  1013. .ui.seven.vertical.buttons > .button {
  1014. height: 14.285%;
  1015. }
  1016. .ui.\38.vertical.buttons > .button,
  1017. .ui.eight.vertical.buttons > .button {
  1018. height: 12.500%;
  1019. }
  1020. .ui.\39.vertical.buttons > .button,
  1021. .ui.nine.vertical.buttons > .button {
  1022. height: 11.11%;
  1023. }
  1024. .ui.\31\30.vertical.buttons > .button,
  1025. .ui.ten.vertical.buttons > .button {
  1026. height: 10%;
  1027. }
  1028. .ui.\31\31.vertical.buttons > .button,
  1029. .ui.eleven.vertical.buttons > .button {
  1030. height: 9.09%;
  1031. }
  1032. .ui.\31\32.vertical.buttons > .button,
  1033. .ui.twelve.vertical.buttons > .button {
  1034. height: 8.3333%;
  1035. }
  1036. /*-------------------
  1037. Colors
  1038. --------------------*/
  1039. /*--- Black ---*/
  1040. .ui.black.buttons .button,
  1041. .ui.black.button {
  1042. background-color: #1b1c1d;
  1043. color: #ffffff;
  1044. text-shadow: none;
  1045. background-image: none;
  1046. }
  1047. .ui.black.button {
  1048. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  1049. }
  1050. .ui.black.buttons .button:hover,
  1051. .ui.black.button:hover {
  1052. background-color: #222425;
  1053. color: #ffffff;
  1054. text-shadow: none;
  1055. }
  1056. .ui.black.buttons .button:active,
  1057. .ui.black.button:active {
  1058. background-color: #0f0f10;
  1059. color: #ffffff;
  1060. text-shadow: none;
  1061. }
  1062. .ui.black.buttons .button.active,
  1063. .ui.black.buttons .button.active:active,
  1064. .ui.black.button.active,
  1065. .ui.black.button .button.active:active {
  1066. background-color: #141415;
  1067. color: #ffffff;
  1068. text-shadow: none;
  1069. }
  1070. /* Basic */
  1071. .ui.basic.black.buttons .button,
  1072. .ui.basic.black.button {
  1073. box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
  1074. color: rgba(0, 0, 0, 0.6) !important;
  1075. }
  1076. .ui.basic.black.buttons .button:hover,
  1077. .ui.basic.black.button:hover {
  1078. background: transparent !important;
  1079. box-shadow: 0px 0px 0px 2px #222425 inset !important;
  1080. color: #222425 !important;
  1081. }
  1082. .ui.basic.black.buttons .button:active,
  1083. .ui.basic.black.button:active {
  1084. box-shadow: 0px 0px 0px 2px #0f0f10 inset !important;
  1085. color: #0f0f10 !important;
  1086. }
  1087. .ui.basic.black.buttons .button.active,
  1088. .ui.basic.black.button.active {
  1089. background: transparent !important;
  1090. box-shadow: 0px 0px 0px 2px #0f0f10 inset !important;
  1091. color: #0f0f10 !important;
  1092. }
  1093. .ui.buttons > .basic.black.button:not(:first-child) {
  1094. margin-left: -2px;
  1095. }
  1096. /* Inverted */
  1097. .ui.inverted.black.buttons .button,
  1098. .ui.inverted.black.button {
  1099. background-color: transparent;
  1100. box-shadow: 0px 0px 0px 2px #d4d4d5 inset !important;
  1101. color: #ffffff;
  1102. }
  1103. .ui.inverted.black.buttons .button:hover,
  1104. .ui.inverted.black.button:hover {
  1105. box-shadow: 0px 0px 0px 2px #333333 inset !important;
  1106. background-color: #333333;
  1107. color: #ffffff;
  1108. }
  1109. .ui.inverted.black.buttons .button.active,
  1110. .ui.inverted.black.button.active {
  1111. box-shadow: 0px 0px 0px 2px #333333 inset !important;
  1112. background-color: #333333;
  1113. color: #ffffff;
  1114. }
  1115. .ui.inverted.black.buttons .button:active,
  1116. .ui.inverted.black.button:active {
  1117. box-shadow: 0px 0px 0px 2px #262626 inset !important;
  1118. background-color: #262626;
  1119. color: #ffffff;
  1120. }
  1121. /* Inverted Basic */
  1122. .ui.inverted.black.basic.buttons .button,
  1123. .ui.inverted.black.buttons .basic.button,
  1124. .ui.inverted.black.basic.button {
  1125. background-color: transparent;
  1126. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1127. color: #ffffff !important;
  1128. }
  1129. .ui.inverted.black.basic.buttons .button:hover,
  1130. .ui.inverted.black.buttons .basic.button:hover,
  1131. .ui.inverted.black.basic.button:hover {
  1132. box-shadow: 0px 0px 0px 2px #333333 inset !important;
  1133. color: #ffffff !important;
  1134. }
  1135. .ui.inverted.black.basic.buttons .button.active,
  1136. .ui.inverted.black.buttons .basic.button.active,
  1137. .ui.inverted.black.basic.button.active {
  1138. box-shadow: 0px 0px 0px 2px #333333 inset !important;
  1139. color: #ffffff !important;
  1140. }
  1141. .ui.inverted.black.basic.buttons .button:active,
  1142. .ui.inverted.black.buttons .basic.button:active,
  1143. .ui.inverted.black.basic.button:active {
  1144. box-shadow: 0px 0px 0px 2px #262626 inset !important;
  1145. color: #ffffff !important;
  1146. }
  1147. /*--- Blue ---*/
  1148. .ui.blue.buttons .button,
  1149. .ui.blue.button {
  1150. background-color: #3b83c0;
  1151. color: #ffffff;
  1152. text-shadow: none;
  1153. background-image: none;
  1154. }
  1155. .ui.blue.button {
  1156. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  1157. }
  1158. .ui.blue.buttons .button:hover,
  1159. .ui.blue.button:hover {
  1160. background-color: #458ac6;
  1161. color: #ffffff;
  1162. text-shadow: none;
  1163. }
  1164. .ui.blue.buttons .button:active,
  1165. .ui.blue.button:active {
  1166. background-color: #3576ac;
  1167. color: #ffffff;
  1168. text-shadow: none;
  1169. }
  1170. .ui.blue.buttons .button.active,
  1171. .ui.blue.buttons .button.active:active,
  1172. .ui.blue.button.active,
  1173. .ui.blue.button .button.active:active {
  1174. background-color: #377bb4;
  1175. color: #ffffff;
  1176. text-shadow: none;
  1177. }
  1178. /* Basic */
  1179. .ui.basic.blue.buttons .button,
  1180. .ui.basic.blue.button {
  1181. box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
  1182. color: rgba(0, 0, 0, 0.6) !important;
  1183. }
  1184. .ui.basic.blue.buttons .button:hover,
  1185. .ui.basic.blue.button:hover {
  1186. background: transparent !important;
  1187. box-shadow: 0px 0px 0px 2px #458ac6 inset !important;
  1188. color: #458ac6 !important;
  1189. }
  1190. .ui.basic.blue.buttons .button:active,
  1191. .ui.basic.blue.button:active {
  1192. box-shadow: 0px 0px 0px 2px #3576ac inset !important;
  1193. color: #3576ac !important;
  1194. }
  1195. .ui.basic.blue.buttons .button.active,
  1196. .ui.basic.blue.button.active {
  1197. background: transparent !important;
  1198. box-shadow: 0px 0px 0px 2px #3576ac inset !important;
  1199. color: #3576ac !important;
  1200. }
  1201. .ui.buttons > .basic.blue.button:not(:first-child) {
  1202. margin-left: -2px;
  1203. }
  1204. /* Inverted */
  1205. .ui.inverted.blue.buttons .button,
  1206. .ui.inverted.blue.button {
  1207. background-color: transparent;
  1208. box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
  1209. color: #54c8ff;
  1210. }
  1211. .ui.inverted.blue.buttons .button:hover,
  1212. .ui.inverted.blue.button:hover {
  1213. box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
  1214. background-color: #54c8ff;
  1215. color: #ffffff;
  1216. }
  1217. .ui.inverted.blue.buttons .button.active,
  1218. .ui.inverted.blue.button.active {
  1219. box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
  1220. background-color: #54c8ff;
  1221. color: #ffffff;
  1222. }
  1223. .ui.inverted.blue.buttons .button:active,
  1224. .ui.inverted.blue.button:active {
  1225. box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
  1226. background-color: #3ac0ff;
  1227. color: #ffffff;
  1228. }
  1229. /* Inverted Basic */
  1230. .ui.inverted.blue.basic.buttons .button,
  1231. .ui.inverted.blue.buttons .basic.button,
  1232. .ui.inverted.blue.basic.button {
  1233. background-color: transparent;
  1234. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1235. color: #ffffff !important;
  1236. }
  1237. .ui.inverted.blue.basic.buttons .button:hover,
  1238. .ui.inverted.blue.buttons .basic.button:hover,
  1239. .ui.inverted.blue.basic.button:hover {
  1240. box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
  1241. color: #54c8ff !important;
  1242. }
  1243. .ui.inverted.blue.basic.buttons .button.active,
  1244. .ui.inverted.blue.buttons .basic.button.active,
  1245. .ui.inverted.blue.basic.button.active {
  1246. box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
  1247. color: #54c8ff !important;
  1248. }
  1249. .ui.inverted.blue.basic.buttons .button:active,
  1250. .ui.inverted.blue.buttons .basic.button:active,
  1251. .ui.inverted.blue.basic.button:active {
  1252. box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
  1253. color: #54c8ff !important;
  1254. }
  1255. /*--- Green ---*/
  1256. .ui.green.buttons .button,
  1257. .ui.green.button {
  1258. background-color: #5bbd72;
  1259. color: #ffffff;
  1260. text-shadow: none;
  1261. background-image: none;
  1262. }
  1263. .ui.green.button {
  1264. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  1265. }
  1266. .ui.green.buttons .button:hover,
  1267. .ui.green.button:hover {
  1268. background-color: #66c17b;
  1269. color: #ffffff;
  1270. text-shadow: none;
  1271. }
  1272. .ui.green.buttons .button:active,
  1273. .ui.green.button:active {
  1274. background-color: #49b562;
  1275. color: #ffffff;
  1276. text-shadow: none;
  1277. }
  1278. .ui.green.buttons .button.active,
  1279. .ui.green.buttons .button.active:active,
  1280. .ui.green.button.active,
  1281. .ui.green.button .button.active:active {
  1282. background-color: #50b969;
  1283. color: #ffffff;
  1284. text-shadow: none;
  1285. }
  1286. /* Basic */
  1287. .ui.basic.green.buttons .button,
  1288. .ui.basic.green.button {
  1289. box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
  1290. color: rgba(0, 0, 0, 0.6) !important;
  1291. }
  1292. .ui.basic.green.buttons .button:hover,
  1293. .ui.basic.green.button:hover {
  1294. background: transparent !important;
  1295. box-shadow: 0px 0px 0px 2px #66c17b inset !important;
  1296. color: #66c17b !important;
  1297. }
  1298. .ui.basic.green.buttons .button:active,
  1299. .ui.basic.green.button:active {
  1300. box-shadow: 0px 0px 0px 2px #49b562 inset !important;
  1301. color: #49b562 !important;
  1302. }
  1303. .ui.basic.green.buttons .button.active,
  1304. .ui.basic.green.button.active {
  1305. background: transparent !important;
  1306. box-shadow: 0px 0px 0px 2px #49b562 inset !important;
  1307. color: #49b562 !important;
  1308. }
  1309. .ui.buttons > .basic.green.button:not(:first-child) {
  1310. margin-left: -2px;
  1311. }
  1312. /* Inverted */
  1313. .ui.inverted.green.buttons .button,
  1314. .ui.inverted.green.button {
  1315. background-color: transparent;
  1316. box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
  1317. color: #2ecc40;
  1318. }
  1319. .ui.inverted.green.buttons .button:hover,
  1320. .ui.inverted.green.button:hover {
  1321. box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
  1322. background-color: #2ecc40;
  1323. color: #ffffff;
  1324. }
  1325. .ui.inverted.green.buttons .button.active,
  1326. .ui.inverted.green.button.active {
  1327. box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
  1328. background-color: #2ecc40;
  1329. color: #ffffff;
  1330. }
  1331. .ui.inverted.green.buttons .button:active,
  1332. .ui.inverted.green.button:active {
  1333. box-shadow: 0px 0px 0px 2px #29b739 inset !important;
  1334. background-color: #29b739;
  1335. color: #ffffff;
  1336. }
  1337. /* Inverted Basic */
  1338. .ui.inverted.green.basic.buttons .button,
  1339. .ui.inverted.green.buttons .basic.button,
  1340. .ui.inverted.green.basic.button {
  1341. background-color: transparent;
  1342. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1343. color: #ffffff !important;
  1344. }
  1345. .ui.inverted.green.basic.buttons .button:hover,
  1346. .ui.inverted.green.buttons .basic.button:hover,
  1347. .ui.inverted.green.basic.button:hover {
  1348. box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
  1349. color: #2ecc40 !important;
  1350. }
  1351. .ui.inverted.green.basic.buttons .button.active,
  1352. .ui.inverted.green.buttons .basic.button.active,
  1353. .ui.inverted.green.basic.button.active {
  1354. box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
  1355. color: #2ecc40 !important;
  1356. }
  1357. .ui.inverted.green.basic.buttons .button:active,
  1358. .ui.inverted.green.buttons .basic.button:active,
  1359. .ui.inverted.green.basic.button:active {
  1360. box-shadow: 0px 0px 0px 2px #29b739 inset !important;
  1361. color: #2ecc40 !important;
  1362. }
  1363. /*--- Orange ---*/
  1364. .ui.orange.buttons .button,
  1365. .ui.orange.button {
  1366. background-color: #e07b53;
  1367. color: #ffffff;
  1368. text-shadow: none;
  1369. background-image: none;
  1370. }
  1371. .ui.orange.button {
  1372. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  1373. }
  1374. .ui.orange.buttons .button:hover,
  1375. .ui.orange.button:hover {
  1376. background-color: #e28560;
  1377. color: #ffffff;
  1378. text-shadow: none;
  1379. }
  1380. .ui.orange.buttons .button:active,
  1381. .ui.orange.button:active {
  1382. background-color: #dc6a3d;
  1383. color: #ffffff;
  1384. text-shadow: none;
  1385. }
  1386. .ui.orange.buttons .button.active,
  1387. .ui.orange.buttons .button.active:active,
  1388. .ui.orange.button.active,
  1389. .ui.orange.button .button.active:active {
  1390. background-color: #141415;
  1391. color: #ffffff;
  1392. text-shadow: none;
  1393. }
  1394. /* Basic */
  1395. .ui.basic.orange.buttons .button,
  1396. .ui.basic.orange.button {
  1397. box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
  1398. color: rgba(0, 0, 0, 0.6) !important;
  1399. }
  1400. .ui.basic.orange.buttons .button:hover,
  1401. .ui.basic.orange.button:hover {
  1402. background: transparent !important;
  1403. box-shadow: 0px 0px 0px 2px #e28560 inset !important;
  1404. color: #e28560 !important;
  1405. }
  1406. .ui.basic.orange.buttons .button:active,
  1407. .ui.basic.orange.button:active {
  1408. box-shadow: 0px 0px 0px 2px #dc6a3d inset !important;
  1409. color: #dc6a3d !important;
  1410. }
  1411. .ui.basic.orange.buttons .button.active,
  1412. .ui.basic.orange.button.active {
  1413. background: transparent !important;
  1414. box-shadow: 0px 0px 0px 2px #dc6a3d inset !important;
  1415. color: #dc6a3d !important;
  1416. }
  1417. .ui.buttons > .basic.orange.button:not(:first-child) {
  1418. margin-left: -2px;
  1419. }
  1420. /* Inverted */
  1421. .ui.inverted.orange.buttons .button,
  1422. .ui.inverted.orange.button {
  1423. background-color: transparent;
  1424. box-shadow: 0px 0px 0px 2px #ff851b inset !important;
  1425. color: #ff851b;
  1426. }
  1427. .ui.inverted.orange.buttons .button:hover,
  1428. .ui.inverted.orange.button:hover {
  1429. box-shadow: 0px 0px 0px 2px #ff851b inset !important;
  1430. background-color: #ff851b;
  1431. color: #ffffff;
  1432. }
  1433. .ui.inverted.orange.buttons .button.active,
  1434. .ui.inverted.orange.button.active {
  1435. box-shadow: 0px 0px 0px 2px #ff851b inset !important;
  1436. background-color: #ff851b;
  1437. color: #ffffff;
  1438. }
  1439. .ui.inverted.orange.buttons .button:active,
  1440. .ui.inverted.orange.button:active {
  1441. box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
  1442. background-color: #ff7701;
  1443. color: #ffffff;
  1444. }
  1445. /* Inverted Basic */
  1446. .ui.inverted.orange.basic.buttons .button,
  1447. .ui.inverted.orange.buttons .basic.button,
  1448. .ui.inverted.orange.basic.button {
  1449. background-color: transparent;
  1450. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1451. color: #ffffff !important;
  1452. }
  1453. .ui.inverted.orange.basic.buttons .button:hover,
  1454. .ui.inverted.orange.buttons .basic.button:hover,
  1455. .ui.inverted.orange.basic.button:hover {
  1456. box-shadow: 0px 0px 0px 2px #ff851b inset !important;
  1457. color: #ff851b !important;
  1458. }
  1459. .ui.inverted.orange.basic.buttons .button.active,
  1460. .ui.inverted.orange.buttons .basic.button.active,
  1461. .ui.inverted.orange.basic.button.active {
  1462. box-shadow: 0px 0px 0px 2px #ff851b inset !important;
  1463. color: #ff851b !important;
  1464. }
  1465. .ui.inverted.orange.basic.buttons .button:active,
  1466. .ui.inverted.orange.buttons .basic.button:active,
  1467. .ui.inverted.orange.basic.button:active {
  1468. box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
  1469. color: #ff851b !important;
  1470. }
  1471. /*--- Pink ---*/
  1472. .ui.pink.buttons .button,
  1473. .ui.pink.button {
  1474. background-color: #d9499a;
  1475. color: #ffffff;
  1476. text-shadow: none;
  1477. background-image: none;
  1478. }
  1479. .ui.pink.button {
  1480. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  1481. }
  1482. .ui.pink.buttons .button:hover,
  1483. .ui.pink.button:hover {
  1484. background-color: #dc56a1;
  1485. color: #ffffff;
  1486. text-shadow: none;
  1487. }
  1488. .ui.pink.buttons .button:active,
  1489. .ui.pink.button:active {
  1490. background-color: #d5348e;
  1491. color: #ffffff;
  1492. text-shadow: none;
  1493. }
  1494. .ui.pink.buttons .button.active,
  1495. .ui.pink.buttons .button.active:active,
  1496. .ui.pink.button.active,
  1497. .ui.pink.button .button.active:active {
  1498. background-color: #d63c93;
  1499. color: #ffffff;
  1500. text-shadow: none;
  1501. }
  1502. /* Basic */
  1503. .ui.basic.pink.buttons .button,
  1504. .ui.basic.pink.button {
  1505. box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
  1506. color: rgba(0, 0, 0, 0.6) !important;
  1507. }
  1508. .ui.basic.pink.buttons .button:hover,
  1509. .ui.basic.pink.button:hover {
  1510. background: transparent !important;
  1511. box-shadow: 0px 0px 0px 2px #dc56a1 inset !important;
  1512. color: #dc56a1 !important;
  1513. }
  1514. .ui.basic.pink.buttons .button:active,
  1515. .ui.basic.pink.button:active {
  1516. box-shadow: 0px 0px 0px 2px #d5348e inset !important;
  1517. color: #d5348e !important;
  1518. }
  1519. .ui.basic.pink.buttons .button.active,
  1520. .ui.basic.pink.button.active {
  1521. background: transparent !important;
  1522. box-shadow: 0px 0px 0px 2px #d5348e inset !important;
  1523. color: #d5348e !important;
  1524. }
  1525. .ui.buttons > .basic.pink.button:not(:first-child) {
  1526. margin-left: -2px;
  1527. }
  1528. /* Inverted */
  1529. .ui.inverted.pink.buttons .button,
  1530. .ui.inverted.pink.button {
  1531. background-color: transparent;
  1532. box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
  1533. color: #ff8edf;
  1534. }
  1535. .ui.inverted.pink.buttons .button:hover,
  1536. .ui.inverted.pink.button:hover {
  1537. box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
  1538. background-color: #ff8edf;
  1539. color: #ffffff;
  1540. }
  1541. .ui.inverted.pink.buttons .button.active,
  1542. .ui.inverted.pink.button.active {
  1543. box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
  1544. background-color: #ff8edf;
  1545. color: #ffffff;
  1546. }
  1547. .ui.inverted.pink.buttons .button:active,
  1548. .ui.inverted.pink.button:active {
  1549. box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
  1550. background-color: #ff74d8;
  1551. color: #ffffff;
  1552. }
  1553. /* Inverted Basic */
  1554. .ui.inverted.pink.basic.buttons .button,
  1555. .ui.inverted.pink.buttons .basic.button,
  1556. .ui.inverted.pink.basic.button {
  1557. background-color: transparent;
  1558. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1559. color: #ffffff !important;
  1560. }
  1561. .ui.inverted.pink.basic.buttons .button:hover,
  1562. .ui.inverted.pink.buttons .basic.button:hover,
  1563. .ui.inverted.pink.basic.button:hover {
  1564. box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
  1565. color: #ff8edf !important;
  1566. }
  1567. .ui.inverted.pink.basic.buttons .button.active,
  1568. .ui.inverted.pink.buttons .basic.button.active,
  1569. .ui.inverted.pink.basic.button.active {
  1570. box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
  1571. color: #ff8edf !important;
  1572. }
  1573. .ui.inverted.pink.basic.buttons .button:active,
  1574. .ui.inverted.pink.buttons .basic.button:active,
  1575. .ui.inverted.pink.basic.button:active {
  1576. box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
  1577. color: #ff8edf !important;
  1578. }
  1579. /*--- Purple ---*/
  1580. .ui.purple.buttons .button,
  1581. .ui.purple.button {
  1582. background-color: #564f8a;
  1583. color: #ffffff;
  1584. text-shadow: none;
  1585. background-image: none;
  1586. }
  1587. .ui.purple.button {
  1588. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  1589. }
  1590. .ui.purple.buttons .button:hover,
  1591. .ui.purple.button:hover {
  1592. background-color: #5c5594;
  1593. color: #ffffff;
  1594. text-shadow: none;
  1595. }
  1596. .ui.purple.buttons .button:active,
  1597. .ui.purple.button:active {
  1598. background-color: #4c467a;
  1599. color: #ffffff;
  1600. text-shadow: none;
  1601. }
  1602. .ui.purple.buttons .button.active,
  1603. .ui.purple.buttons .button.active:active,
  1604. .ui.purple.button.active,
  1605. .ui.purple.button .button.active:active {
  1606. background-color: #504980;
  1607. color: #ffffff;
  1608. text-shadow: none;
  1609. }
  1610. /* Basic */
  1611. .ui.basic.purple.buttons .button,
  1612. .ui.basic.purple.button {
  1613. box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
  1614. color: rgba(0, 0, 0, 0.6) !important;
  1615. }
  1616. .ui.basic.purple.buttons .button:hover,
  1617. .ui.basic.purple.button:hover {
  1618. background: transparent !important;
  1619. box-shadow: 0px 0px 0px 2px #5c5594 inset !important;
  1620. color: #5c5594 !important;
  1621. }
  1622. .ui.basic.purple.buttons .button:active,
  1623. .ui.basic.purple.button:active {
  1624. box-shadow: 0px 0px 0px 2px #4c467a inset !important;
  1625. color: #4c467a !important;
  1626. }
  1627. .ui.basic.purple.buttons .button.active,
  1628. .ui.basic.purple.button.active {
  1629. background: transparent !important;
  1630. box-shadow: 0px 0px 0px 2px #4c467a inset !important;
  1631. color: #4c467a !important;
  1632. }
  1633. .ui.buttons > .basic.purple.button:not(:first-child) {
  1634. margin-left: -2px;
  1635. }
  1636. /* Inverted */
  1637. .ui.inverted.purple.buttons .button,
  1638. .ui.inverted.purple.button {
  1639. background-color: transparent;
  1640. box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
  1641. color: #cdc6ff;
  1642. }
  1643. .ui.inverted.purple.buttons .button:hover,
  1644. .ui.inverted.purple.button:hover {
  1645. box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
  1646. background-color: #cdc6ff;
  1647. color: #1b1c1d;
  1648. }
  1649. .ui.inverted.purple.buttons .button.active,
  1650. .ui.inverted.purple.button.active {
  1651. box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
  1652. background-color: #cdc6ff;
  1653. color: #1b1c1d;
  1654. }
  1655. .ui.inverted.purple.buttons .button:active,
  1656. .ui.inverted.purple.button:active {
  1657. box-shadow: 0px 0px 0px 2px #b7acff inset !important;
  1658. background-color: #b7acff;
  1659. color: #1b1c1d;
  1660. }
  1661. /* Inverted Basic */
  1662. .ui.inverted.purple.basic.buttons .button,
  1663. .ui.inverted.purple.buttons .basic.button,
  1664. .ui.inverted.purple.basic.button {
  1665. background-color: transparent;
  1666. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1667. color: #ffffff !important;
  1668. }
  1669. .ui.inverted.purple.basic.buttons .button:hover,
  1670. .ui.inverted.purple.buttons .basic.button:hover,
  1671. .ui.inverted.purple.basic.button:hover {
  1672. box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
  1673. color: #cdc6ff !important;
  1674. }
  1675. .ui.inverted.purple.basic.buttons .button.active,
  1676. .ui.inverted.purple.buttons .basic.button.active,
  1677. .ui.inverted.purple.basic.button.active {
  1678. box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
  1679. color: #cdc6ff !important;
  1680. }
  1681. .ui.inverted.purple.basic.buttons .button:active,
  1682. .ui.inverted.purple.buttons .basic.button:active,
  1683. .ui.inverted.purple.basic.button:active {
  1684. box-shadow: 0px 0px 0px 2px #b7acff inset !important;
  1685. color: #cdc6ff !important;
  1686. }
  1687. /*--- Red ---*/
  1688. .ui.red.buttons .button,
  1689. .ui.red.button {
  1690. background-color: #d95c5c;
  1691. color: #ffffff;
  1692. text-shadow: none;
  1693. background-image: none;
  1694. }
  1695. .ui.red.button {
  1696. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  1697. }
  1698. .ui.red.buttons .button:hover,
  1699. .ui.red.button:hover {
  1700. background-color: #dc6868;
  1701. color: #ffffff;
  1702. text-shadow: none;
  1703. }
  1704. .ui.red.buttons .button:active,
  1705. .ui.red.button:active {
  1706. background-color: #d44747;
  1707. color: #ffffff;
  1708. text-shadow: none;
  1709. }
  1710. .ui.red.buttons .button.active,
  1711. .ui.red.buttons .button.active:active,
  1712. .ui.red.button.active,
  1713. .ui.red.button .button.active:active {
  1714. background-color: #d65050;
  1715. color: #ffffff;
  1716. text-shadow: none;
  1717. }
  1718. /* Basic */
  1719. .ui.basic.red.buttons .button,
  1720. .ui.basic.red.button {
  1721. box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
  1722. color: rgba(0, 0, 0, 0.6) !important;
  1723. }
  1724. .ui.basic.red.buttons .button:hover,
  1725. .ui.basic.red.button:hover {
  1726. background: transparent !important;
  1727. box-shadow: 0px 0px 0px 2px #dc6868 inset !important;
  1728. color: #dc6868 !important;
  1729. }
  1730. .ui.basic.red.buttons .button:active,
  1731. .ui.basic.red.button:active {
  1732. box-shadow: 0px 0px 0px 2px #d44747 inset !important;
  1733. color: #d44747 !important;
  1734. }
  1735. .ui.basic.red.buttons .button.active,
  1736. .ui.basic.red.button.active {
  1737. background: transparent !important;
  1738. box-shadow: 0px 0px 0px 2px #d44747 inset !important;
  1739. color: #d44747 !important;
  1740. }
  1741. .ui.buttons > .basic.red.button:not(:first-child) {
  1742. margin-left: -2px;
  1743. }
  1744. /* Inverted */
  1745. .ui.inverted.red.buttons .button,
  1746. .ui.inverted.red.button {
  1747. background-color: transparent;
  1748. box-shadow: 0px 0px 0px 2px #ff695e inset !important;
  1749. color: #ff695e;
  1750. }
  1751. .ui.inverted.red.buttons .button:hover,
  1752. .ui.inverted.red.button:hover {
  1753. box-shadow: 0px 0px 0px 2px #ff695e inset !important;
  1754. background-color: #ff695e;
  1755. color: #ffffff;
  1756. }
  1757. .ui.inverted.red.buttons .button.active,
  1758. .ui.inverted.red.button.active {
  1759. box-shadow: 0px 0px 0px 2px #ff695e inset !important;
  1760. background-color: #ff695e;
  1761. color: #ffffff;
  1762. }
  1763. .ui.inverted.red.buttons .button:active,
  1764. .ui.inverted.red.button:active {
  1765. box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
  1766. background-color: #ff5144;
  1767. color: #ffffff;
  1768. }
  1769. /* Inverted Basic */
  1770. .ui.inverted.red.basic.buttons .button,
  1771. .ui.inverted.red.buttons .basic.button,
  1772. .ui.inverted.red.basic.button {
  1773. background-color: transparent;
  1774. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1775. color: #ffffff !important;
  1776. }
  1777. .ui.inverted.red.basic.buttons .button:hover,
  1778. .ui.inverted.red.buttons .basic.button:hover,
  1779. .ui.inverted.red.basic.button:hover {
  1780. box-shadow: 0px 0px 0px 2px #ff695e inset !important;
  1781. color: #ff695e !important;
  1782. }
  1783. .ui.inverted.red.basic.buttons .button.active,
  1784. .ui.inverted.red.buttons .basic.button.active,
  1785. .ui.inverted.red.basic.button.active {
  1786. box-shadow: 0px 0px 0px 2px #ff695e inset !important;
  1787. color: #ff695e !important;
  1788. }
  1789. .ui.inverted.red.basic.buttons .button:active,
  1790. .ui.inverted.red.buttons .basic.button:active,
  1791. .ui.inverted.red.basic.button:active {
  1792. box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
  1793. color: #ff695e !important;
  1794. }
  1795. /*--- Teal ---*/
  1796. .ui.teal.buttons .button,
  1797. .ui.teal.button {
  1798. background-color: #00b5ad;
  1799. color: #ffffff;
  1800. text-shadow: none;
  1801. background-image: none;
  1802. }
  1803. .ui.teal.button {
  1804. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  1805. }
  1806. .ui.teal.buttons .button:hover,
  1807. .ui.teal.button:hover {
  1808. background-color: #00c4bc;
  1809. color: #ffffff;
  1810. text-shadow: none;
  1811. }
  1812. .ui.teal.buttons .button:active,
  1813. .ui.teal.button:active {
  1814. background-color: #009c95;
  1815. color: #ffffff;
  1816. text-shadow: none;
  1817. }
  1818. .ui.teal.buttons .button.active,
  1819. .ui.teal.buttons .button.active:active,
  1820. .ui.teal.button.active,
  1821. .ui.teal.button .button.active:active {
  1822. background-color: #00a69e;
  1823. color: #ffffff;
  1824. text-shadow: none;
  1825. }
  1826. /* Basic */
  1827. .ui.basic.teal.buttons .button,
  1828. .ui.basic.teal.button {
  1829. box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
  1830. color: rgba(0, 0, 0, 0.6) !important;
  1831. }
  1832. .ui.basic.teal.buttons .button:hover,
  1833. .ui.basic.teal.button:hover {
  1834. background: transparent !important;
  1835. box-shadow: 0px 0px 0px 2px #00c4bc inset !important;
  1836. color: #00c4bc !important;
  1837. }
  1838. .ui.basic.teal.buttons .button:active,
  1839. .ui.basic.teal.button:active {
  1840. box-shadow: 0px 0px 0px 2px #009c95 inset !important;
  1841. color: #009c95 !important;
  1842. }
  1843. .ui.basic.teal.buttons .button.active,
  1844. .ui.basic.teal.button.active {
  1845. background: transparent !important;
  1846. box-shadow: 0px 0px 0px 2px #009c95 inset !important;
  1847. color: #009c95 !important;
  1848. }
  1849. .ui.buttons > .basic.teal.button:not(:first-child) {
  1850. margin-left: -2px;
  1851. }
  1852. /* Inverted */
  1853. .ui.inverted.teal.buttons .button,
  1854. .ui.inverted.teal.button {
  1855. background-color: transparent;
  1856. box-shadow: 0px 0px 0px 2px #6dffff inset !important;
  1857. color: #6dffff;
  1858. }
  1859. .ui.inverted.teal.buttons .button:hover,
  1860. .ui.inverted.teal.button:hover {
  1861. box-shadow: 0px 0px 0px 2px #6dffff inset !important;
  1862. background-color: #6dffff;
  1863. color: #1b1c1d;
  1864. }
  1865. .ui.inverted.teal.buttons .button.active,
  1866. .ui.inverted.teal.button.active {
  1867. box-shadow: 0px 0px 0px 2px #6dffff inset !important;
  1868. background-color: #6dffff;
  1869. color: #1b1c1d;
  1870. }
  1871. .ui.inverted.teal.buttons .button:active,
  1872. .ui.inverted.teal.button:active {
  1873. box-shadow: 0px 0px 0px 2px #54ffff inset !important;
  1874. background-color: #54ffff;
  1875. color: #1b1c1d;
  1876. }
  1877. /* Inverted Basic */
  1878. .ui.inverted.teal.basic.buttons .button,
  1879. .ui.inverted.teal.buttons .basic.button,
  1880. .ui.inverted.teal.basic.button {
  1881. background-color: transparent;
  1882. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1883. color: #ffffff !important;
  1884. }
  1885. .ui.inverted.teal.basic.buttons .button:hover,
  1886. .ui.inverted.teal.buttons .basic.button:hover,
  1887. .ui.inverted.teal.basic.button:hover {
  1888. box-shadow: 0px 0px 0px 2px #6dffff inset !important;
  1889. color: #6dffff !important;
  1890. }
  1891. .ui.inverted.teal.basic.buttons .button.active,
  1892. .ui.inverted.teal.buttons .basic.button.active,
  1893. .ui.inverted.teal.basic.button.active {
  1894. box-shadow: 0px 0px 0px 2px #6dffff inset !important;
  1895. color: #6dffff !important;
  1896. }
  1897. .ui.inverted.teal.basic.buttons .button:active,
  1898. .ui.inverted.teal.buttons .basic.button:active,
  1899. .ui.inverted.teal.basic.button:active {
  1900. box-shadow: 0px 0px 0px 2px #54ffff inset !important;
  1901. color: #6dffff !important;
  1902. }
  1903. /*--- Yellow ---*/
  1904. .ui.yellow.buttons .button,
  1905. .ui.yellow.button {
  1906. background-color: #f2c61f;
  1907. color: #ffffff;
  1908. text-shadow: none;
  1909. background-image: none;
  1910. }
  1911. .ui.yellow.button {
  1912. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  1913. }
  1914. .ui.yellow.buttons .button:hover,
  1915. .ui.yellow.button:hover {
  1916. background-color: #f3ca2d;
  1917. color: #ffffff;
  1918. text-shadow: none;
  1919. }
  1920. .ui.yellow.buttons .button:active,
  1921. .ui.yellow.button:active {
  1922. background-color: #eabc0e;
  1923. color: #ffffff;
  1924. text-shadow: none;
  1925. }
  1926. .ui.yellow.buttons .button.active,
  1927. .ui.yellow.buttons .button.active:active,
  1928. .ui.yellow.button.active,
  1929. .ui.yellow.button .button.active:active {
  1930. background-color: #f1c211;
  1931. color: #ffffff;
  1932. text-shadow: none;
  1933. }
  1934. /* Basic */
  1935. .ui.basic.yellow.buttons .button,
  1936. .ui.basic.yellow.button {
  1937. box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
  1938. color: rgba(0, 0, 0, 0.6) !important;
  1939. }
  1940. .ui.basic.yellow.buttons .button:hover,
  1941. .ui.basic.yellow.button:hover {
  1942. background: transparent !important;
  1943. box-shadow: 0px 0px 0px 2px #f3ca2d inset !important;
  1944. color: #f3ca2d !important;
  1945. }
  1946. .ui.basic.yellow.buttons .button:active,
  1947. .ui.basic.yellow.button:active {
  1948. box-shadow: 0px 0px 0px 2px #eabc0e inset !important;
  1949. color: #eabc0e !important;
  1950. }
  1951. .ui.basic.yellow.buttons .button.active,
  1952. .ui.basic.yellow.button.active {
  1953. background: transparent !important;
  1954. box-shadow: 0px 0px 0px 2px #eabc0e inset !important;
  1955. color: #eabc0e !important;
  1956. }
  1957. .ui.buttons > .basic.yellow.button:not(:first-child) {
  1958. margin-left: -2px;
  1959. }
  1960. /* Inverted */
  1961. .ui.inverted.yellow.buttons .button,
  1962. .ui.inverted.yellow.button {
  1963. background-color: transparent;
  1964. box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
  1965. color: #ffe21f;
  1966. }
  1967. .ui.inverted.yellow.buttons .button:hover,
  1968. .ui.inverted.yellow.button:hover {
  1969. box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
  1970. background-color: #ffe21f;
  1971. color: #1b1c1d;
  1972. }
  1973. .ui.inverted.yellow.buttons .button.active,
  1974. .ui.inverted.yellow.button.active {
  1975. box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
  1976. background-color: #ffe21f;
  1977. color: #1b1c1d;
  1978. }
  1979. .ui.inverted.yellow.buttons .button:active,
  1980. .ui.inverted.yellow.button:active {
  1981. box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
  1982. background-color: #ffdf05;
  1983. color: #1b1c1d;
  1984. }
  1985. /* Inverted Basic */
  1986. .ui.inverted.yellow.basic.buttons .button,
  1987. .ui.inverted.yellow.buttons .basic.button,
  1988. .ui.inverted.yellow.basic.button {
  1989. background-color: transparent;
  1990. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1991. color: #ffffff !important;
  1992. }
  1993. .ui.inverted.yellow.basic.buttons .button:hover,
  1994. .ui.inverted.yellow.buttons .basic.button:hover,
  1995. .ui.inverted.yellow.basic.button:hover {
  1996. box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
  1997. color: #ffe21f !important;
  1998. }
  1999. .ui.inverted.yellow.basic.buttons .button.active,
  2000. .ui.inverted.yellow.buttons .basic.button.active,
  2001. .ui.inverted.yellow.basic.button.active {
  2002. box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
  2003. color: #ffe21f !important;
  2004. }
  2005. .ui.inverted.yellow.basic.buttons .button:active,
  2006. .ui.inverted.yellow.buttons .basic.button:active,
  2007. .ui.inverted.yellow.basic.button:active {
  2008. box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
  2009. color: #ffe21f !important;
  2010. }
  2011. /*-------------------
  2012. Primary
  2013. --------------------*/
  2014. .ui.primary.buttons .button,
  2015. .ui.primary.button {
  2016. background-color: #3b83c0;
  2017. color: #ffffff;
  2018. text-shadow: none;
  2019. background-image: none;
  2020. }
  2021. .ui.primary.button {
  2022. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  2023. }
  2024. .ui.primary.buttons .button:hover,
  2025. .ui.primary.button:hover {
  2026. background-color: #458ac6;
  2027. color: #ffffff;
  2028. text-shadow: none;
  2029. }
  2030. .ui.primary.buttons .button:active,
  2031. .ui.primary.button:active {
  2032. background-color: #3576ac;
  2033. color: #ffffff;
  2034. text-shadow: none;
  2035. }
  2036. .ui.primary.buttons .active.button,
  2037. .ui.primary.button.active {
  2038. background-color: #377bb4;
  2039. color: #ffffff;
  2040. text-shadow: none;
  2041. }
  2042. /*-------------------
  2043. Secondary
  2044. --------------------*/
  2045. .ui.secondary.buttons .button,
  2046. .ui.secondary.button {
  2047. background-color: #1b1c1d;
  2048. color: #ffffff;
  2049. text-shadow: none;
  2050. background-image: none;
  2051. }
  2052. .ui.secondary.button {
  2053. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  2054. }
  2055. .ui.secondary.buttons .button:hover,
  2056. .ui.secondary.button:hover {
  2057. background-color: #222425;
  2058. color: #ffffff;
  2059. text-shadow: none;
  2060. }
  2061. .ui.secondary.buttons .button:active,
  2062. .ui.secondary.button:active {
  2063. background-color: #0f0f10;
  2064. color: #ffffff;
  2065. text-shadow: none;
  2066. }
  2067. .ui.secondary.buttons .active.button,
  2068. .ui.secondary.button.active {
  2069. background-color: #141415;
  2070. color: #ffffff;
  2071. text-shadow: none;
  2072. }
  2073. /*---------------
  2074. Positive
  2075. ----------------*/
  2076. .ui.positive.buttons .button,
  2077. .ui.positive.button {
  2078. background-color: #5bbd72 !important;
  2079. color: #ffffff;
  2080. text-shadow: none;
  2081. background-image: none;
  2082. }
  2083. .ui.positive.button {
  2084. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  2085. }
  2086. .ui.positive.buttons .button:hover,
  2087. .ui.positive.button:hover,
  2088. .ui.positive.buttons .active.button,
  2089. .ui.positive.button.active {
  2090. background-color: #66c17b !important;
  2091. color: #ffffff;
  2092. text-shadow: none;
  2093. }
  2094. .ui.positive.buttons .button:active,
  2095. .ui.positive.button:active {
  2096. background-color: #49b562 !important;
  2097. color: #ffffff;
  2098. text-shadow: none;
  2099. }
  2100. .ui.positive.buttons .button.active,
  2101. .ui.positive.buttons .button.active:active,
  2102. .ui.positive.button.active,
  2103. .ui.positive.button .button.active:active {
  2104. background-color: #50b969;
  2105. color: #ffffff;
  2106. text-shadow: none;
  2107. }
  2108. /*---------------
  2109. Negative
  2110. ----------------*/
  2111. .ui.negative.buttons .button,
  2112. .ui.negative.button {
  2113. background-color: #d95c5c !important;
  2114. color: #ffffff;
  2115. text-shadow: none;
  2116. background-image: none;
  2117. }
  2118. .ui.negative.button {
  2119. box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  2120. }
  2121. .ui.negative.buttons .button:hover,
  2122. .ui.negative.button:hover,
  2123. .ui.negative.buttons .active.button,
  2124. .ui.negative.button.active {
  2125. background-color: #dc6868 !important;
  2126. color: #ffffff;
  2127. text-shadow: none;
  2128. }
  2129. .ui.negative.buttons .button:active,
  2130. .ui.negative.button:active {
  2131. background-color: #d44747 !important;
  2132. color: #ffffff;
  2133. text-shadow: none;
  2134. }
  2135. .ui.negative.buttons .button.active,
  2136. .ui.negative.buttons .button.active:active,
  2137. .ui.negative.button.active,
  2138. .ui.negative.button .button.active:active {
  2139. background-color: #d65050;
  2140. color: #ffffff;
  2141. text-shadow: none;
  2142. }
  2143. /*******************************
  2144. Groups
  2145. *******************************/
  2146. .ui.buttons {
  2147. display: inline-block;
  2148. vertical-align: middle;
  2149. margin: 0em 0.25em 0em 0em;
  2150. }
  2151. .ui.buttons > .button:hover,
  2152. .ui.buttons > .button.active {
  2153. position: relative;
  2154. }
  2155. .ui.buttons:after {
  2156. content: ".";
  2157. display: block;
  2158. height: 0;
  2159. clear: both;
  2160. visibility: hidden;
  2161. }
  2162. .ui.buttons .button:first-child {
  2163. border-left: none;
  2164. }
  2165. .ui.buttons:not(.basic):not(.inverted) {
  2166. box-shadow: none;
  2167. }
  2168. .ui.buttons > .ui.button:not(.basic):not(.inverted),
  2169. .ui.buttons:not(.basic):not(.inverted) > .button {
  2170. box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
  2171. }
  2172. .ui.buttons .button {
  2173. margin: 0em;
  2174. float: left;
  2175. border-radius: 0em;
  2176. margin: 0px 0px 0px 0px;
  2177. }
  2178. .ui.buttons .button:first-child {
  2179. margin-left: 0em;
  2180. border-top-left-radius: 0.2857rem;
  2181. border-bottom-left-radius: 0.2857rem;
  2182. }
  2183. .ui.buttons .button:last-child {
  2184. border-top-right-radius: 0.2857rem;
  2185. border-bottom-right-radius: 0.2857rem;
  2186. }
  2187. /* Vertical Style */
  2188. .ui.vertical.buttons {
  2189. display: inline-block;
  2190. }
  2191. .ui.vertical.buttons .button {
  2192. display: block;
  2193. float: none;
  2194. margin: 0px 0px 0px 0px;
  2195. box-shadow: none;
  2196. }
  2197. .ui.vertical.buttons .button:first-child,
  2198. .ui.vertical.buttons .mini.button:first-child,
  2199. .ui.vertical.buttons .tiny.button:first-child,
  2200. .ui.vertical.buttons .small.button:first-child,
  2201. .ui.vertical.buttons .massive.button:first-child,
  2202. .ui.vertical.buttons .huge.button:first-child {
  2203. border-radius: 0.2857rem 0.2857rem 0px 0px;
  2204. }
  2205. .ui.vertical.buttons .button:last-child,
  2206. .ui.vertical.buttons .mini.button:last-child,
  2207. .ui.vertical.buttons .tiny.button:last-child,
  2208. .ui.vertical.buttons .small.button:last-child,
  2209. .ui.vertical.buttons .massive.button:last-child,
  2210. .ui.vertical.buttons .huge.button:last-child,
  2211. .ui.vertical.buttons .gigantic.button:last-child {
  2212. margin-bottom: 0px;
  2213. border-radius: 0px 0px 0.2857rem 0.2857rem;
  2214. }
  2215. /*******************************
  2216. Theme Overrides
  2217. *******************************/
  2218. /*******************************
  2219. Site Overrides
  2220. *******************************/