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.

2374 lines
58 KiB

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