button.css 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561
  1. /*!
  2. * # Semantic UI 2.5.0 - Button
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Released under the MIT license
  7. * http://opensource.org/licenses/MIT
  8. *
  9. */
  10. /*******************************
  11. Button
  12. *******************************/
  13. .ui.button {
  14. cursor: pointer;
  15. display: inline-block;
  16. min-height: 1em;
  17. outline: none;
  18. border: none;
  19. vertical-align: baseline;
  20. background: #E0E1E2 none;
  21. color: rgba(0, 0, 0, 0.6);
  22. font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  23. margin: 0em 0.25em 0em 0em;
  24. padding: 0.78571429em 1.5em 0.78571429em;
  25. text-transform: none;
  26. text-shadow: none;
  27. font-weight: bold;
  28. line-height: 1em;
  29. font-style: normal;
  30. text-align: center;
  31. text-decoration: none;
  32. border-radius: 0.28571429rem;
  33. box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  34. -webkit-user-select: none;
  35. -moz-user-select: none;
  36. -ms-user-select: none;
  37. user-select: none;
  38. transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
  39. will-change: '';
  40. -webkit-tap-highlight-color: transparent;
  41. }
  42. /*******************************
  43. States
  44. *******************************/
  45. /*--------------
  46. Hover
  47. ---------------*/
  48. .ui.button:hover {
  49. background-color: #CACBCD;
  50. background-image: none;
  51. box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  52. color: rgba(0, 0, 0, 0.8);
  53. }
  54. .ui.button:hover .icon {
  55. opacity: 0.85;
  56. }
  57. /*--------------
  58. Focus
  59. ---------------*/
  60. .ui.button:focus {
  61. background-color: #CACBCD;
  62. color: rgba(0, 0, 0, 0.8);
  63. background-image: '' !important;
  64. box-shadow: '' !important;
  65. }
  66. .ui.button:focus .icon {
  67. opacity: 0.85;
  68. }
  69. /*--------------
  70. Down
  71. ---------------*/
  72. .ui.button:active,
  73. .ui.active.button:active {
  74. background-color: #BABBBC;
  75. background-image: '';
  76. color: rgba(0, 0, 0, 0.9);
  77. box-shadow: 0px 0px 0px 1px transparent inset, none;
  78. }
  79. /*--------------
  80. Active
  81. ---------------*/
  82. .ui.active.button {
  83. background-color: #C0C1C2;
  84. background-image: none;
  85. box-shadow: 0px 0px 0px 1px transparent inset;
  86. color: rgba(0, 0, 0, 0.95);
  87. }
  88. .ui.active.button:hover {
  89. background-color: #C0C1C2;
  90. background-image: none;
  91. color: rgba(0, 0, 0, 0.95);
  92. }
  93. .ui.active.button:active {
  94. background-color: #C0C1C2;
  95. background-image: none;
  96. }
  97. /*--------------
  98. Loading
  99. ---------------*/
  100. /* Specificity hack */
  101. .ui.loading.loading.loading.loading.loading.loading.button {
  102. position: relative;
  103. cursor: default;
  104. text-shadow: none !important;
  105. color: transparent !important;
  106. opacity: 1;
  107. pointer-events: auto;
  108. transition: all 0s linear, opacity 0.1s ease;
  109. }
  110. .ui.loading.button:before {
  111. position: absolute;
  112. content: '';
  113. top: 50%;
  114. left: 50%;
  115. margin: -0.64285714em 0em 0em -0.64285714em;
  116. width: 1.28571429em;
  117. height: 1.28571429em;
  118. border-radius: 500rem;
  119. border: 0.2em solid rgba(0, 0, 0, 0.15);
  120. }
  121. .ui.loading.button:after {
  122. position: absolute;
  123. content: '';
  124. top: 50%;
  125. left: 50%;
  126. margin: -0.64285714em 0em 0em -0.64285714em;
  127. width: 1.28571429em;
  128. height: 1.28571429em;
  129. -webkit-animation: button-spin 0.6s linear;
  130. animation: button-spin 0.6s linear;
  131. -webkit-animation-iteration-count: infinite;
  132. animation-iteration-count: infinite;
  133. border-radius: 500rem;
  134. border-color: #FFFFFF transparent transparent;
  135. border-style: solid;
  136. border-width: 0.2em;
  137. box-shadow: 0px 0px 0px 1px transparent;
  138. }
  139. .ui.labeled.icon.loading.button .icon {
  140. background-color: transparent;
  141. box-shadow: none;
  142. }
  143. @-webkit-keyframes button-spin {
  144. from {
  145. transform: rotate(0deg);
  146. }
  147. to {
  148. transform: rotate(360deg);
  149. }
  150. }
  151. @keyframes button-spin {
  152. from {
  153. transform: rotate(0deg);
  154. }
  155. to {
  156. transform: rotate(360deg);
  157. }
  158. }
  159. .ui.basic.loading.button:not(.inverted):before {
  160. border-color: rgba(0, 0, 0, 0.1);
  161. }
  162. .ui.basic.loading.button:not(.inverted):after {
  163. border-top-color: #767676;
  164. }
  165. /*-------------------
  166. Disabled
  167. --------------------*/
  168. .ui.buttons .disabled.button,
  169. .ui.disabled.button,
  170. .ui.button:disabled,
  171. .ui.disabled.button:hover,
  172. .ui.disabled.active.button {
  173. cursor: default;
  174. opacity: 0.45 !important;
  175. background-image: none !important;
  176. box-shadow: none !important;
  177. pointer-events: none !important;
  178. }
  179. /* Basic Group With Disabled */
  180. .ui.basic.buttons .ui.disabled.button {
  181. border-color: rgba(34, 36, 38, 0.5);
  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. vertical-align: middle;
  194. z-index: 1;
  195. }
  196. .ui.animated.button .content {
  197. will-change: transform, opacity;
  198. }
  199. .ui.animated.button .visible.content {
  200. position: relative;
  201. margin-right: 1.5em;
  202. }
  203. .ui.animated.button .hidden.content {
  204. position: absolute;
  205. width: 100%;
  206. }
  207. /* Horizontal */
  208. .ui.animated.button .visible.content,
  209. .ui.animated.button .hidden.content {
  210. transition: right 0.3s ease 0s;
  211. }
  212. .ui.animated.button .visible.content {
  213. left: auto;
  214. right: 0%;
  215. }
  216. .ui.animated.button .hidden.content {
  217. top: 50%;
  218. left: auto;
  219. right: -100%;
  220. margin-top: -0.5em;
  221. }
  222. .ui.animated.button:focus .visible.content,
  223. .ui.animated.button:hover .visible.content {
  224. left: auto;
  225. right: 200%;
  226. }
  227. .ui.animated.button:focus .hidden.content,
  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. transition: top 0.3s ease, transform 0.3s ease;
  236. }
  237. .ui.vertical.animated.button .visible.content {
  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:focus .visible.content,
  247. .ui.vertical.animated.button:hover .visible.content {
  248. transform: translateY(200%);
  249. right: auto;
  250. }
  251. .ui.vertical.animated.button:focus .hidden.content,
  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. transition: opacity 0.3s ease, transform 0.3s ease;
  260. }
  261. .ui.fade.animated.button .visible.content {
  262. left: auto;
  263. right: auto;
  264. opacity: 1;
  265. transform: scale(1);
  266. }
  267. .ui.fade.animated.button .hidden.content {
  268. opacity: 0;
  269. left: 0%;
  270. right: auto;
  271. transform: scale(1.5);
  272. }
  273. .ui.fade.animated.button:focus .visible.content,
  274. .ui.fade.animated.button:hover .visible.content {
  275. left: auto;
  276. right: auto;
  277. opacity: 0;
  278. transform: scale(0.75);
  279. }
  280. .ui.fade.animated.button:focus .hidden.content,
  281. .ui.fade.animated.button:hover .hidden.content {
  282. left: 0%;
  283. right: auto;
  284. opacity: 1;
  285. transform: scale(1);
  286. }
  287. /*-------------------
  288. Inverted
  289. --------------------*/
  290. .ui.inverted.button {
  291. box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
  292. background: transparent none;
  293. color: #FFFFFF;
  294. text-shadow: none !important;
  295. }
  296. /* Group */
  297. .ui.inverted.buttons .button {
  298. margin: 0px 0px 0px -2px;
  299. }
  300. .ui.inverted.buttons .button:first-child {
  301. margin-left: 0em;
  302. }
  303. .ui.inverted.vertical.buttons .button {
  304. margin: 0px 0px -2px 0px;
  305. }
  306. .ui.inverted.vertical.buttons .button:first-child {
  307. margin-top: 0em;
  308. }
  309. /* States */
  310. /* Hover */
  311. .ui.inverted.button:hover {
  312. background: #FFFFFF;
  313. box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
  314. color: rgba(0, 0, 0, 0.8);
  315. }
  316. /* Active / Focus */
  317. .ui.inverted.button:focus,
  318. .ui.inverted.button.active {
  319. background: #FFFFFF;
  320. box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
  321. color: rgba(0, 0, 0, 0.8);
  322. }
  323. /* Active Focus */
  324. .ui.inverted.button.active:focus {
  325. background: #DCDDDE;
  326. box-shadow: 0px 0px 0px 2px #DCDDDE inset !important;
  327. color: rgba(0, 0, 0, 0.8);
  328. }
  329. /*-------------------
  330. Labeled Button
  331. --------------------*/
  332. .ui.labeled.button:not(.icon) {
  333. display: inline-flex;
  334. flex-direction: row;
  335. background: none !important;
  336. padding: 0px !important;
  337. border: none !important;
  338. box-shadow: none !important;
  339. }
  340. .ui.labeled.button > .button {
  341. margin: 0px;
  342. }
  343. .ui.labeled.button > .label {
  344. display: flex;
  345. align-items: center;
  346. margin: 0px 0px 0px -1px !important;
  347. padding: '';
  348. font-size: 1em;
  349. border-color: rgba(34, 36, 38, 0.15);
  350. }
  351. /* Tag */
  352. .ui.labeled.button > .tag.label:before {
  353. width: 1.85em;
  354. height: 1.85em;
  355. }
  356. /* Right */
  357. .ui.labeled.button:not([class*="left labeled"]) > .button {
  358. border-top-right-radius: 0px;
  359. border-bottom-right-radius: 0px;
  360. }
  361. .ui.labeled.button:not([class*="left labeled"]) > .label {
  362. border-top-left-radius: 0px;
  363. border-bottom-left-radius: 0px;
  364. }
  365. /* Left Side */
  366. .ui[class*="left labeled"].button > .button {
  367. border-top-left-radius: 0px;
  368. border-bottom-left-radius: 0px;
  369. }
  370. .ui[class*="left labeled"].button > .label {
  371. border-top-right-radius: 0px;
  372. border-bottom-right-radius: 0px;
  373. }
  374. /*-------------------
  375. Social
  376. --------------------*/
  377. /* Facebook */
  378. .ui.facebook.button {
  379. background-color: #3B5998;
  380. color: #FFFFFF;
  381. text-shadow: none;
  382. background-image: none;
  383. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  384. }
  385. .ui.facebook.button:hover {
  386. background-color: #304d8a;
  387. color: #FFFFFF;
  388. text-shadow: none;
  389. }
  390. .ui.facebook.button:active {
  391. background-color: #2d4373;
  392. color: #FFFFFF;
  393. text-shadow: none;
  394. }
  395. /* Twitter */
  396. .ui.twitter.button {
  397. background-color: #55ACEE;
  398. color: #FFFFFF;
  399. text-shadow: none;
  400. background-image: none;
  401. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  402. }
  403. .ui.twitter.button:hover {
  404. background-color: #35a2f4;
  405. color: #FFFFFF;
  406. text-shadow: none;
  407. }
  408. .ui.twitter.button:active {
  409. background-color: #2795e9;
  410. color: #FFFFFF;
  411. text-shadow: none;
  412. }
  413. /* Google Plus */
  414. .ui.google.plus.button {
  415. background-color: #DD4B39;
  416. color: #FFFFFF;
  417. text-shadow: none;
  418. background-image: none;
  419. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  420. }
  421. .ui.google.plus.button:hover {
  422. background-color: #e0321c;
  423. color: #FFFFFF;
  424. text-shadow: none;
  425. }
  426. .ui.google.plus.button:active {
  427. background-color: #c23321;
  428. color: #FFFFFF;
  429. text-shadow: none;
  430. }
  431. /* Linked In */
  432. .ui.linkedin.button {
  433. background-color: #1F88BE;
  434. color: #FFFFFF;
  435. text-shadow: none;
  436. }
  437. .ui.linkedin.button:hover {
  438. background-color: #147baf;
  439. color: #FFFFFF;
  440. text-shadow: none;
  441. }
  442. .ui.linkedin.button:active {
  443. background-color: #186992;
  444. color: #FFFFFF;
  445. text-shadow: none;
  446. }
  447. /* YouTube */
  448. .ui.youtube.button {
  449. background-color: #FF0000;
  450. color: #FFFFFF;
  451. text-shadow: none;
  452. background-image: none;
  453. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  454. }
  455. .ui.youtube.button:hover {
  456. background-color: #e60000;
  457. color: #FFFFFF;
  458. text-shadow: none;
  459. }
  460. .ui.youtube.button:active {
  461. background-color: #cc0000;
  462. color: #FFFFFF;
  463. text-shadow: none;
  464. }
  465. /* Instagram */
  466. .ui.instagram.button {
  467. background-color: #49769C;
  468. color: #FFFFFF;
  469. text-shadow: none;
  470. background-image: none;
  471. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  472. }
  473. .ui.instagram.button:hover {
  474. background-color: #3d698e;
  475. color: #FFFFFF;
  476. text-shadow: none;
  477. }
  478. .ui.instagram.button:active {
  479. background-color: #395c79;
  480. color: #FFFFFF;
  481. text-shadow: none;
  482. }
  483. /* Pinterest */
  484. .ui.pinterest.button {
  485. background-color: #BD081C;
  486. color: #FFFFFF;
  487. text-shadow: none;
  488. background-image: none;
  489. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  490. }
  491. .ui.pinterest.button:hover {
  492. background-color: #ac0013;
  493. color: #FFFFFF;
  494. text-shadow: none;
  495. }
  496. .ui.pinterest.button:active {
  497. background-color: #8c0615;
  498. color: #FFFFFF;
  499. text-shadow: none;
  500. }
  501. /* VK */
  502. .ui.vk.button {
  503. background-color: #4D7198;
  504. color: #FFFFFF;
  505. background-image: none;
  506. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  507. }
  508. .ui.vk.button:hover {
  509. background-color: #41648a;
  510. color: #FFFFFF;
  511. }
  512. .ui.vk.button:active {
  513. background-color: #3c5876;
  514. color: #FFFFFF;
  515. }
  516. /*--------------
  517. Icon
  518. ---------------*/
  519. .ui.button > .icon:not(.button) {
  520. height: 0.85714286em;
  521. opacity: 0.8;
  522. margin: 0em 0.42857143em 0em -0.21428571em;
  523. transition: opacity 0.1s ease;
  524. vertical-align: '';
  525. color: '';
  526. }
  527. .ui.button:not(.icon) > .icon:not(.button):not(.dropdown) {
  528. margin: 0em 0.42857143em 0em -0.21428571em;
  529. }
  530. .ui.button:not(.icon) > .right.icon:not(.button):not(.dropdown) {
  531. margin: 0em -0.21428571em 0em 0.42857143em;
  532. }
  533. /*******************************
  534. Variations
  535. *******************************/
  536. /*-------------------
  537. Floated
  538. --------------------*/
  539. .ui[class*="left floated"].buttons,
  540. .ui[class*="left floated"].button {
  541. float: left;
  542. margin-left: 0em;
  543. margin-right: 0.25em;
  544. }
  545. .ui[class*="right floated"].buttons,
  546. .ui[class*="right floated"].button {
  547. float: right;
  548. margin-right: 0em;
  549. margin-left: 0.25em;
  550. }
  551. /*-------------------
  552. Compact
  553. --------------------*/
  554. .ui.compact.buttons .button,
  555. .ui.compact.button {
  556. padding: 0.58928571em 1.125em 0.58928571em;
  557. }
  558. .ui.compact.icon.buttons .button,
  559. .ui.compact.icon.button {
  560. padding: 0.58928571em 0.58928571em 0.58928571em;
  561. }
  562. .ui.compact.labeled.icon.buttons .button,
  563. .ui.compact.labeled.icon.button {
  564. padding: 0.58928571em 3.69642857em 0.58928571em;
  565. }
  566. /*-------------------
  567. Sizes
  568. --------------------*/
  569. .ui.mini.buttons .button,
  570. .ui.mini.buttons .or,
  571. .ui.mini.button {
  572. font-size: 0.78571429rem;
  573. }
  574. .ui.tiny.buttons .button,
  575. .ui.tiny.buttons .or,
  576. .ui.tiny.button {
  577. font-size: 0.85714286rem;
  578. }
  579. .ui.small.buttons .button,
  580. .ui.small.buttons .or,
  581. .ui.small.button {
  582. font-size: 0.92857143rem;
  583. }
  584. .ui.buttons .button,
  585. .ui.buttons .or,
  586. .ui.button {
  587. font-size: 1rem;
  588. }
  589. .ui.large.buttons .button,
  590. .ui.large.buttons .or,
  591. .ui.large.button {
  592. font-size: 1.14285714rem;
  593. }
  594. .ui.big.buttons .button,
  595. .ui.big.buttons .or,
  596. .ui.big.button {
  597. font-size: 1.28571429rem;
  598. }
  599. .ui.huge.buttons .button,
  600. .ui.huge.buttons .or,
  601. .ui.huge.button {
  602. font-size: 1.42857143rem;
  603. }
  604. .ui.massive.buttons .button,
  605. .ui.massive.buttons .or,
  606. .ui.massive.button {
  607. font-size: 1.71428571rem;
  608. }
  609. /*--------------
  610. Icon Only
  611. ---------------*/
  612. .ui.icon.buttons .button,
  613. .ui.icon.button {
  614. padding: 0.78571429em 0.78571429em 0.78571429em;
  615. }
  616. .ui.icon.buttons .button > .icon,
  617. .ui.icon.button > .icon {
  618. opacity: 0.9;
  619. margin: 0em !important;
  620. vertical-align: top;
  621. }
  622. /*-------------------
  623. Basic
  624. --------------------*/
  625. .ui.basic.buttons .button,
  626. .ui.basic.button {
  627. background: transparent none !important;
  628. color: rgba(0, 0, 0, 0.6) !important;
  629. font-weight: normal;
  630. border-radius: 0.28571429rem;
  631. text-transform: none;
  632. text-shadow: none !important;
  633. box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
  634. }
  635. .ui.basic.buttons {
  636. box-shadow: none;
  637. border: 1px solid rgba(34, 36, 38, 0.15);
  638. border-radius: 0.28571429rem;
  639. }
  640. .ui.basic.buttons .button {
  641. border-radius: 0em;
  642. }
  643. .ui.basic.buttons .button:hover,
  644. .ui.basic.button:hover {
  645. background: #FFFFFF !important;
  646. color: rgba(0, 0, 0, 0.8) !important;
  647. box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset;
  648. }
  649. .ui.basic.buttons .button:focus,
  650. .ui.basic.button:focus {
  651. background: #FFFFFF !important;
  652. color: rgba(0, 0, 0, 0.8) !important;
  653. box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset;
  654. }
  655. .ui.basic.buttons .button:active,
  656. .ui.basic.button:active {
  657. background: #F8F8F8 !important;
  658. color: rgba(0, 0, 0, 0.9) !important;
  659. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset;
  660. }
  661. .ui.basic.buttons .active.button,
  662. .ui.basic.active.button {
  663. background: rgba(0, 0, 0, 0.05) !important;
  664. box-shadow: '' !important;
  665. color: rgba(0, 0, 0, 0.95) !important;
  666. }
  667. .ui.basic.buttons .active.button:hover,
  668. .ui.basic.active.button:hover {
  669. background-color: rgba(0, 0, 0, 0.05);
  670. }
  671. /* Vertical */
  672. .ui.basic.buttons .button:hover {
  673. box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset inset;
  674. }
  675. .ui.basic.buttons .button:active {
  676. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset inset;
  677. }
  678. .ui.basic.buttons .active.button {
  679. box-shadow: '' !important;
  680. }
  681. /* Standard Basic Inverted */
  682. .ui.basic.inverted.buttons .button,
  683. .ui.basic.inverted.button {
  684. background-color: transparent !important;
  685. color: #F9FAFB !important;
  686. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  687. }
  688. .ui.basic.inverted.buttons .button:hover,
  689. .ui.basic.inverted.button:hover {
  690. color: #FFFFFF !important;
  691. box-shadow: 0px 0px 0px 2px #ffffff inset !important;
  692. }
  693. .ui.basic.inverted.buttons .button:focus,
  694. .ui.basic.inverted.button:focus {
  695. color: #FFFFFF !important;
  696. box-shadow: 0px 0px 0px 2px #ffffff inset !important;
  697. }
  698. .ui.basic.inverted.buttons .button:active,
  699. .ui.basic.inverted.button:active {
  700. background-color: rgba(255, 255, 255, 0.08) !important;
  701. color: #FFFFFF !important;
  702. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important;
  703. }
  704. .ui.basic.inverted.buttons .active.button,
  705. .ui.basic.inverted.active.button {
  706. background-color: rgba(255, 255, 255, 0.08);
  707. color: #FFFFFF;
  708. text-shadow: none;
  709. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset;
  710. }
  711. .ui.basic.inverted.buttons .active.button:hover,
  712. .ui.basic.inverted.active.button:hover {
  713. background-color: rgba(255, 255, 255, 0.15);
  714. box-shadow: 0px 0px 0px 2px #ffffff inset !important;
  715. }
  716. /* Basic Group */
  717. .ui.basic.buttons .button {
  718. border-left: 1px solid rgba(34, 36, 38, 0.15);
  719. box-shadow: none;
  720. }
  721. .ui.basic.vertical.buttons .button {
  722. border-left: none;
  723. }
  724. .ui.basic.vertical.buttons .button {
  725. border-left-width: 0px;
  726. border-top: 1px solid rgba(34, 36, 38, 0.15);
  727. }
  728. .ui.basic.vertical.buttons .button:first-child {
  729. border-top-width: 0px;
  730. }
  731. /*--------------
  732. Labeled Icon
  733. ---------------*/
  734. .ui.labeled.icon.buttons .button,
  735. .ui.labeled.icon.button {
  736. position: relative;
  737. padding-left: 4.07142857em !important;
  738. padding-right: 1.5em !important;
  739. }
  740. /* Left Labeled */
  741. .ui.labeled.icon.buttons > .button > .icon,
  742. .ui.labeled.icon.button > .icon {
  743. position: absolute;
  744. height: 100%;
  745. line-height: 1;
  746. border-radius: 0px;
  747. border-top-left-radius: inherit;
  748. border-bottom-left-radius: inherit;
  749. text-align: center;
  750. margin: 0em;
  751. width: 2.57142857em;
  752. background-color: rgba(0, 0, 0, 0.05);
  753. color: '';
  754. box-shadow: -1px 0px 0px 0px transparent inset;
  755. }
  756. /* Left Labeled */
  757. .ui.labeled.icon.buttons > .button > .icon,
  758. .ui.labeled.icon.button > .icon {
  759. top: 0em;
  760. left: 0em;
  761. }
  762. /* Right Labeled */
  763. .ui[class*="right labeled"].icon.button {
  764. padding-right: 4.07142857em !important;
  765. padding-left: 1.5em !important;
  766. }
  767. .ui[class*="right labeled"].icon.button > .icon {
  768. left: auto;
  769. right: 0em;
  770. border-radius: 0px;
  771. border-top-right-radius: inherit;
  772. border-bottom-right-radius: inherit;
  773. box-shadow: 1px 0px 0px 0px transparent inset;
  774. }
  775. .ui.labeled.icon.buttons > .button > .icon:before,
  776. .ui.labeled.icon.button > .icon:before,
  777. .ui.labeled.icon.buttons > .button > .icon:after,
  778. .ui.labeled.icon.button > .icon:after {
  779. display: block;
  780. position: absolute;
  781. width: 100%;
  782. top: 50%;
  783. text-align: center;
  784. transform: translateY(-50%);
  785. }
  786. /* Loading */
  787. .ui.labeled.icon.button > .icon.loading {
  788. -webkit-animation: none;
  789. animation: none;
  790. }
  791. .ui.labeled.icon.button > .icon.loading:before {
  792. -webkit-animation: labeled-button-icon-loading 2s linear infinite;
  793. animation: labeled-button-icon-loading 2s linear infinite;
  794. }
  795. @-webkit-keyframes labeled-button-icon-loading {
  796. from {
  797. transform: translateY(-50%) rotate(0deg);
  798. }
  799. to {
  800. transform: translateY(-50%) rotate(360deg);
  801. }
  802. }
  803. @keyframes labeled-button-icon-loading {
  804. from {
  805. transform: translateY(-50%) rotate(0deg);
  806. }
  807. to {
  808. transform: translateY(-50%) rotate(360deg);
  809. }
  810. }
  811. .ui.labeled.icon.buttons .button > .icon {
  812. border-radius: 0em;
  813. }
  814. .ui.labeled.icon.buttons .button:first-child > .icon {
  815. border-top-left-radius: 0.28571429rem;
  816. border-bottom-left-radius: 0.28571429rem;
  817. }
  818. .ui.labeled.icon.buttons .button:last-child > .icon {
  819. border-top-right-radius: 0.28571429rem;
  820. border-bottom-right-radius: 0.28571429rem;
  821. }
  822. .ui.vertical.labeled.icon.buttons .button:first-child > .icon {
  823. border-radius: 0em;
  824. border-top-left-radius: 0.28571429rem;
  825. }
  826. .ui.vertical.labeled.icon.buttons .button:last-child > .icon {
  827. border-radius: 0em;
  828. border-bottom-left-radius: 0.28571429rem;
  829. }
  830. /* Fluid Labeled */
  831. .ui.fluid[class*="left labeled"].icon.button,
  832. .ui.fluid[class*="right labeled"].icon.button {
  833. padding-left: 1.5em !important;
  834. padding-right: 1.5em !important;
  835. }
  836. /*--------------
  837. Toggle
  838. ---------------*/
  839. /* Toggle (Modifies active state to give affordances) */
  840. .ui.toggle.buttons .active.button,
  841. .ui.buttons .button.toggle.active,
  842. .ui.button.toggle.active {
  843. background-color: #21BA45 !important;
  844. box-shadow: none !important;
  845. text-shadow: none;
  846. color: #FFFFFF !important;
  847. }
  848. .ui.button.toggle.active:hover {
  849. background-color: #16ab39 !important;
  850. text-shadow: none;
  851. color: #FFFFFF !important;
  852. }
  853. /*--------------
  854. Circular
  855. ---------------*/
  856. .ui.circular.button {
  857. border-radius: 10em;
  858. }
  859. .ui.circular.button > .icon {
  860. width: 1em;
  861. vertical-align: baseline;
  862. }
  863. /*-------------------
  864. Or Buttons
  865. --------------------*/
  866. .ui.buttons .or {
  867. position: relative;
  868. width: 0.3em;
  869. height: 2.57142857em;
  870. z-index: 3;
  871. }
  872. .ui.buttons .or:before {
  873. position: absolute;
  874. text-align: center;
  875. border-radius: 500rem;
  876. content: 'or';
  877. top: 50%;
  878. left: 50%;
  879. background-color: #FFFFFF;
  880. text-shadow: none;
  881. margin-top: -0.89285714em;
  882. margin-left: -0.89285714em;
  883. width: 1.78571429em;
  884. height: 1.78571429em;
  885. line-height: 1.78571429em;
  886. color: rgba(0, 0, 0, 0.4);
  887. font-style: normal;
  888. font-weight: bold;
  889. box-shadow: 0px 0px 0px 1px transparent inset;
  890. }
  891. .ui.buttons .or[data-text]:before {
  892. content: attr(data-text);
  893. }
  894. /* Fluid Or */
  895. .ui.fluid.buttons .or {
  896. width: 0em !important;
  897. }
  898. .ui.fluid.buttons .or:after {
  899. display: none;
  900. }
  901. /*-------------------
  902. Attached
  903. --------------------*/
  904. /* Singular */
  905. .ui.attached.button {
  906. position: relative;
  907. display: block;
  908. margin: 0em;
  909. border-radius: 0em;
  910. box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) !important;
  911. }
  912. /* Top / Bottom */
  913. .ui.attached.top.button {
  914. border-radius: 0.28571429rem 0.28571429rem 0em 0em;
  915. }
  916. .ui.attached.bottom.button {
  917. border-radius: 0em 0em 0.28571429rem 0.28571429rem;
  918. }
  919. /* Left / Right */
  920. .ui.left.attached.button {
  921. display: inline-block;
  922. border-left: none;
  923. text-align: right;
  924. padding-right: 0.75em;
  925. border-radius: 0.28571429rem 0em 0em 0.28571429rem;
  926. }
  927. .ui.right.attached.button {
  928. display: inline-block;
  929. text-align: left;
  930. padding-left: 0.75em;
  931. border-radius: 0em 0.28571429rem 0.28571429rem 0em;
  932. }
  933. /* Plural */
  934. .ui.attached.buttons {
  935. position: relative;
  936. display: flex;
  937. border-radius: 0em;
  938. width: auto !important;
  939. z-index: 2;
  940. margin-left: -1px;
  941. margin-right: -1px;
  942. }
  943. .ui.attached.buttons .button {
  944. margin: 0em;
  945. }
  946. .ui.attached.buttons .button:first-child {
  947. border-radius: 0em;
  948. }
  949. .ui.attached.buttons .button:last-child {
  950. border-radius: 0em;
  951. }
  952. /* Top / Bottom */
  953. .ui[class*="top attached"].buttons {
  954. margin-bottom: -1px;
  955. border-radius: 0.28571429rem 0.28571429rem 0em 0em;
  956. }
  957. .ui[class*="top attached"].buttons .button:first-child {
  958. border-radius: 0.28571429rem 0em 0em 0em;
  959. }
  960. .ui[class*="top attached"].buttons .button:last-child {
  961. border-radius: 0em 0.28571429rem 0em 0em;
  962. }
  963. .ui[class*="bottom attached"].buttons {
  964. margin-top: -1px;
  965. border-radius: 0em 0em 0.28571429rem 0.28571429rem;
  966. }
  967. .ui[class*="bottom attached"].buttons .button:first-child {
  968. border-radius: 0em 0em 0em 0.28571429rem;
  969. }
  970. .ui[class*="bottom attached"].buttons .button:last-child {
  971. border-radius: 0em 0em 0.28571429rem 0em;
  972. }
  973. /* Left / Right */
  974. .ui[class*="left attached"].buttons {
  975. display: inline-flex;
  976. margin-right: 0em;
  977. margin-left: -1px;
  978. border-radius: 0em 0.28571429rem 0.28571429rem 0em;
  979. }
  980. .ui[class*="left attached"].buttons .button:first-child {
  981. margin-left: -1px;
  982. border-radius: 0em 0.28571429rem 0em 0em;
  983. }
  984. .ui[class*="left attached"].buttons .button:last-child {
  985. margin-left: -1px;
  986. border-radius: 0em 0em 0.28571429rem 0em;
  987. }
  988. .ui[class*="right attached"].buttons {
  989. display: inline-flex;
  990. margin-left: 0em;
  991. margin-right: -1px;
  992. border-radius: 0.28571429rem 0em 0em 0.28571429rem;
  993. }
  994. .ui[class*="right attached"].buttons .button:first-child {
  995. margin-left: -1px;
  996. border-radius: 0.28571429rem 0em 0em 0em;
  997. }
  998. .ui[class*="right attached"].buttons .button:last-child {
  999. margin-left: -1px;
  1000. border-radius: 0em 0em 0em 0.28571429rem;
  1001. }
  1002. /*-------------------
  1003. Fluid
  1004. --------------------*/
  1005. .ui.fluid.buttons,
  1006. .ui.fluid.button {
  1007. width: 100%;
  1008. }
  1009. .ui.fluid.button {
  1010. display: block;
  1011. }
  1012. .ui.two.buttons {
  1013. width: 100%;
  1014. }
  1015. .ui.two.buttons > .button {
  1016. width: 50%;
  1017. }
  1018. .ui.three.buttons {
  1019. width: 100%;
  1020. }
  1021. .ui.three.buttons > .button {
  1022. width: 33.333%;
  1023. }
  1024. .ui.four.buttons {
  1025. width: 100%;
  1026. }
  1027. .ui.four.buttons > .button {
  1028. width: 25%;
  1029. }
  1030. .ui.five.buttons {
  1031. width: 100%;
  1032. }
  1033. .ui.five.buttons > .button {
  1034. width: 20%;
  1035. }
  1036. .ui.six.buttons {
  1037. width: 100%;
  1038. }
  1039. .ui.six.buttons > .button {
  1040. width: 16.666%;
  1041. }
  1042. .ui.seven.buttons {
  1043. width: 100%;
  1044. }
  1045. .ui.seven.buttons > .button {
  1046. width: 14.285%;
  1047. }
  1048. .ui.eight.buttons {
  1049. width: 100%;
  1050. }
  1051. .ui.eight.buttons > .button {
  1052. width: 12.5%;
  1053. }
  1054. .ui.nine.buttons {
  1055. width: 100%;
  1056. }
  1057. .ui.nine.buttons > .button {
  1058. width: 11.11%;
  1059. }
  1060. .ui.ten.buttons {
  1061. width: 100%;
  1062. }
  1063. .ui.ten.buttons > .button {
  1064. width: 10%;
  1065. }
  1066. .ui.eleven.buttons {
  1067. width: 100%;
  1068. }
  1069. .ui.eleven.buttons > .button {
  1070. width: 9.09%;
  1071. }
  1072. .ui.twelve.buttons {
  1073. width: 100%;
  1074. }
  1075. .ui.twelve.buttons > .button {
  1076. width: 8.3333%;
  1077. }
  1078. /* Fluid Vertical Buttons */
  1079. .ui.fluid.vertical.buttons,
  1080. .ui.fluid.vertical.buttons > .button {
  1081. display: flex;
  1082. width: auto;
  1083. }
  1084. .ui.two.vertical.buttons > .button {
  1085. height: 50%;
  1086. }
  1087. .ui.three.vertical.buttons > .button {
  1088. height: 33.333%;
  1089. }
  1090. .ui.four.vertical.buttons > .button {
  1091. height: 25%;
  1092. }
  1093. .ui.five.vertical.buttons > .button {
  1094. height: 20%;
  1095. }
  1096. .ui.six.vertical.buttons > .button {
  1097. height: 16.666%;
  1098. }
  1099. .ui.seven.vertical.buttons > .button {
  1100. height: 14.285%;
  1101. }
  1102. .ui.eight.vertical.buttons > .button {
  1103. height: 12.5%;
  1104. }
  1105. .ui.nine.vertical.buttons > .button {
  1106. height: 11.11%;
  1107. }
  1108. .ui.ten.vertical.buttons > .button {
  1109. height: 10%;
  1110. }
  1111. .ui.eleven.vertical.buttons > .button {
  1112. height: 9.09%;
  1113. }
  1114. .ui.twelve.vertical.buttons > .button {
  1115. height: 8.3333%;
  1116. }
  1117. /*-------------------
  1118. Colors
  1119. --------------------*/
  1120. /*--- Black ---*/
  1121. .ui.black.buttons .button,
  1122. .ui.black.button {
  1123. background-color: #1B1C1D;
  1124. color: #FFFFFF;
  1125. text-shadow: none;
  1126. background-image: none;
  1127. }
  1128. .ui.black.button {
  1129. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  1130. }
  1131. .ui.black.buttons .button:hover,
  1132. .ui.black.button:hover {
  1133. background-color: #27292a;
  1134. color: #FFFFFF;
  1135. text-shadow: none;
  1136. }
  1137. .ui.black.buttons .button:focus,
  1138. .ui.black.button:focus {
  1139. background-color: #2f3032;
  1140. color: #FFFFFF;
  1141. text-shadow: none;
  1142. }
  1143. .ui.black.buttons .button:active,
  1144. .ui.black.button:active {
  1145. background-color: #343637;
  1146. color: #FFFFFF;
  1147. text-shadow: none;
  1148. }
  1149. .ui.black.buttons .active.button,
  1150. .ui.black.buttons .active.button:active,
  1151. .ui.black.active.button,
  1152. .ui.black.button .active.button:active {
  1153. background-color: #0f0f10;
  1154. color: #FFFFFF;
  1155. text-shadow: none;
  1156. }
  1157. /* Basic */
  1158. .ui.basic.black.buttons .button,
  1159. .ui.basic.black.button {
  1160. box-shadow: 0px 0px 0px 1px #1B1C1D inset !important;
  1161. color: #1B1C1D !important;
  1162. }
  1163. .ui.basic.black.buttons .button:hover,
  1164. .ui.basic.black.button:hover {
  1165. background: transparent !important;
  1166. box-shadow: 0px 0px 0px 1px #27292a inset !important;
  1167. color: #27292a !important;
  1168. }
  1169. .ui.basic.black.buttons .button:focus,
  1170. .ui.basic.black.button:focus {
  1171. background: transparent !important;
  1172. box-shadow: 0px 0px 0px 1px #2f3032 inset !important;
  1173. color: #27292a !important;
  1174. }
  1175. .ui.basic.black.buttons .active.button,
  1176. .ui.basic.black.active.button {
  1177. background: transparent !important;
  1178. box-shadow: 0px 0px 0px 1px #0f0f10 inset !important;
  1179. color: #343637 !important;
  1180. }
  1181. .ui.basic.black.buttons .button:active,
  1182. .ui.basic.black.button:active {
  1183. box-shadow: 0px 0px 0px 1px #343637 inset !important;
  1184. color: #343637 !important;
  1185. }
  1186. .ui.buttons:not(.vertical) > .basic.black.button:not(:first-child) {
  1187. margin-left: -1px;
  1188. }
  1189. /* Inverted */
  1190. .ui.inverted.black.buttons .button,
  1191. .ui.inverted.black.button {
  1192. background-color: transparent;
  1193. box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important;
  1194. color: #FFFFFF;
  1195. }
  1196. .ui.inverted.black.buttons .button:hover,
  1197. .ui.inverted.black.button:hover,
  1198. .ui.inverted.black.buttons .button:focus,
  1199. .ui.inverted.black.button:focus,
  1200. .ui.inverted.black.buttons .button.active,
  1201. .ui.inverted.black.button.active,
  1202. .ui.inverted.black.buttons .button:active,
  1203. .ui.inverted.black.button:active {
  1204. box-shadow: none !important;
  1205. color: #FFFFFF;
  1206. }
  1207. .ui.inverted.black.buttons .button:hover,
  1208. .ui.inverted.black.button:hover {
  1209. background-color: #000000;
  1210. }
  1211. .ui.inverted.black.buttons .button:focus,
  1212. .ui.inverted.black.button:focus {
  1213. background-color: #000000;
  1214. }
  1215. .ui.inverted.black.buttons .active.button,
  1216. .ui.inverted.black.active.button {
  1217. background-color: #000000;
  1218. }
  1219. .ui.inverted.black.buttons .button:active,
  1220. .ui.inverted.black.button:active {
  1221. background-color: #000000;
  1222. }
  1223. /* Inverted Basic */
  1224. .ui.inverted.black.basic.buttons .button,
  1225. .ui.inverted.black.buttons .basic.button,
  1226. .ui.inverted.black.basic.button {
  1227. background-color: transparent;
  1228. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1229. color: #FFFFFF !important;
  1230. }
  1231. .ui.inverted.black.basic.buttons .button:hover,
  1232. .ui.inverted.black.buttons .basic.button:hover,
  1233. .ui.inverted.black.basic.button:hover {
  1234. box-shadow: 0px 0px 0px 2px #000000 inset !important;
  1235. color: #FFFFFF !important;
  1236. }
  1237. .ui.inverted.black.basic.buttons .button:focus,
  1238. .ui.inverted.black.basic.buttons .button:focus,
  1239. .ui.inverted.black.basic.button:focus {
  1240. box-shadow: 0px 0px 0px 2px #000000 inset !important;
  1241. color: #545454 !important;
  1242. }
  1243. .ui.inverted.black.basic.buttons .active.button,
  1244. .ui.inverted.black.buttons .basic.active.button,
  1245. .ui.inverted.black.basic.active.button {
  1246. box-shadow: 0px 0px 0px 2px #000000 inset !important;
  1247. color: #FFFFFF !important;
  1248. }
  1249. .ui.inverted.black.basic.buttons .button:active,
  1250. .ui.inverted.black.buttons .basic.button:active,
  1251. .ui.inverted.black.basic.button:active {
  1252. box-shadow: 0px 0px 0px 2px #000000 inset !important;
  1253. color: #FFFFFF !important;
  1254. }
  1255. /*--- Grey ---*/
  1256. .ui.grey.buttons .button,
  1257. .ui.grey.button {
  1258. background-color: #767676;
  1259. color: #FFFFFF;
  1260. text-shadow: none;
  1261. background-image: none;
  1262. }
  1263. .ui.grey.button {
  1264. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  1265. }
  1266. .ui.grey.buttons .button:hover,
  1267. .ui.grey.button:hover {
  1268. background-color: #838383;
  1269. color: #FFFFFF;
  1270. text-shadow: none;
  1271. }
  1272. .ui.grey.buttons .button:focus,
  1273. .ui.grey.button:focus {
  1274. background-color: #8a8a8a;
  1275. color: #FFFFFF;
  1276. text-shadow: none;
  1277. }
  1278. .ui.grey.buttons .button:active,
  1279. .ui.grey.button:active {
  1280. background-color: #909090;
  1281. color: #FFFFFF;
  1282. text-shadow: none;
  1283. }
  1284. .ui.grey.buttons .active.button,
  1285. .ui.grey.buttons .active.button:active,
  1286. .ui.grey.active.button,
  1287. .ui.grey.button .active.button:active {
  1288. background-color: #696969;
  1289. color: #FFFFFF;
  1290. text-shadow: none;
  1291. }
  1292. /* Basic */
  1293. .ui.basic.grey.buttons .button,
  1294. .ui.basic.grey.button {
  1295. box-shadow: 0px 0px 0px 1px #767676 inset !important;
  1296. color: #767676 !important;
  1297. }
  1298. .ui.basic.grey.buttons .button:hover,
  1299. .ui.basic.grey.button:hover {
  1300. background: transparent !important;
  1301. box-shadow: 0px 0px 0px 1px #838383 inset !important;
  1302. color: #838383 !important;
  1303. }
  1304. .ui.basic.grey.buttons .button:focus,
  1305. .ui.basic.grey.button:focus {
  1306. background: transparent !important;
  1307. box-shadow: 0px 0px 0px 1px #8a8a8a inset !important;
  1308. color: #838383 !important;
  1309. }
  1310. .ui.basic.grey.buttons .active.button,
  1311. .ui.basic.grey.active.button {
  1312. background: transparent !important;
  1313. box-shadow: 0px 0px 0px 1px #696969 inset !important;
  1314. color: #909090 !important;
  1315. }
  1316. .ui.basic.grey.buttons .button:active,
  1317. .ui.basic.grey.button:active {
  1318. box-shadow: 0px 0px 0px 1px #909090 inset !important;
  1319. color: #909090 !important;
  1320. }
  1321. .ui.buttons:not(.vertical) > .basic.grey.button:not(:first-child) {
  1322. margin-left: -1px;
  1323. }
  1324. /* Inverted */
  1325. .ui.inverted.grey.buttons .button,
  1326. .ui.inverted.grey.button {
  1327. background-color: transparent;
  1328. box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important;
  1329. color: #FFFFFF;
  1330. }
  1331. .ui.inverted.grey.buttons .button:hover,
  1332. .ui.inverted.grey.button:hover,
  1333. .ui.inverted.grey.buttons .button:focus,
  1334. .ui.inverted.grey.button:focus,
  1335. .ui.inverted.grey.buttons .button.active,
  1336. .ui.inverted.grey.button.active,
  1337. .ui.inverted.grey.buttons .button:active,
  1338. .ui.inverted.grey.button:active {
  1339. box-shadow: none !important;
  1340. color: rgba(0, 0, 0, 0.6);
  1341. }
  1342. .ui.inverted.grey.buttons .button:hover,
  1343. .ui.inverted.grey.button:hover {
  1344. background-color: #cfd0d2;
  1345. }
  1346. .ui.inverted.grey.buttons .button:focus,
  1347. .ui.inverted.grey.button:focus {
  1348. background-color: #c7c9cb;
  1349. }
  1350. .ui.inverted.grey.buttons .active.button,
  1351. .ui.inverted.grey.active.button {
  1352. background-color: #cfd0d2;
  1353. }
  1354. .ui.inverted.grey.buttons .button:active,
  1355. .ui.inverted.grey.button:active {
  1356. background-color: #c2c4c5;
  1357. }
  1358. /* Inverted Basic */
  1359. .ui.inverted.grey.basic.buttons .button,
  1360. .ui.inverted.grey.buttons .basic.button,
  1361. .ui.inverted.grey.basic.button {
  1362. background-color: transparent;
  1363. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1364. color: #FFFFFF !important;
  1365. }
  1366. .ui.inverted.grey.basic.buttons .button:hover,
  1367. .ui.inverted.grey.buttons .basic.button:hover,
  1368. .ui.inverted.grey.basic.button:hover {
  1369. box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
  1370. color: #FFFFFF !important;
  1371. }
  1372. .ui.inverted.grey.basic.buttons .button:focus,
  1373. .ui.inverted.grey.basic.buttons .button:focus,
  1374. .ui.inverted.grey.basic.button:focus {
  1375. box-shadow: 0px 0px 0px 2px #c7c9cb inset !important;
  1376. color: #DCDDDE !important;
  1377. }
  1378. .ui.inverted.grey.basic.buttons .active.button,
  1379. .ui.inverted.grey.buttons .basic.active.button,
  1380. .ui.inverted.grey.basic.active.button {
  1381. box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
  1382. color: #FFFFFF !important;
  1383. }
  1384. .ui.inverted.grey.basic.buttons .button:active,
  1385. .ui.inverted.grey.buttons .basic.button:active,
  1386. .ui.inverted.grey.basic.button:active {
  1387. box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important;
  1388. color: #FFFFFF !important;
  1389. }
  1390. /*--- Brown ---*/
  1391. .ui.brown.buttons .button,
  1392. .ui.brown.button {
  1393. background-color: #A5673F;
  1394. color: #FFFFFF;
  1395. text-shadow: none;
  1396. background-image: none;
  1397. }
  1398. .ui.brown.button {
  1399. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  1400. }
  1401. .ui.brown.buttons .button:hover,
  1402. .ui.brown.button:hover {
  1403. background-color: #975b33;
  1404. color: #FFFFFF;
  1405. text-shadow: none;
  1406. }
  1407. .ui.brown.buttons .button:focus,
  1408. .ui.brown.button:focus {
  1409. background-color: #90532b;
  1410. color: #FFFFFF;
  1411. text-shadow: none;
  1412. }
  1413. .ui.brown.buttons .button:active,
  1414. .ui.brown.button:active {
  1415. background-color: #805031;
  1416. color: #FFFFFF;
  1417. text-shadow: none;
  1418. }
  1419. .ui.brown.buttons .active.button,
  1420. .ui.brown.buttons .active.button:active,
  1421. .ui.brown.active.button,
  1422. .ui.brown.button .active.button:active {
  1423. background-color: #995a31;
  1424. color: #FFFFFF;
  1425. text-shadow: none;
  1426. }
  1427. /* Basic */
  1428. .ui.basic.brown.buttons .button,
  1429. .ui.basic.brown.button {
  1430. box-shadow: 0px 0px 0px 1px #A5673F inset !important;
  1431. color: #A5673F !important;
  1432. }
  1433. .ui.basic.brown.buttons .button:hover,
  1434. .ui.basic.brown.button:hover {
  1435. background: transparent !important;
  1436. box-shadow: 0px 0px 0px 1px #975b33 inset !important;
  1437. color: #975b33 !important;
  1438. }
  1439. .ui.basic.brown.buttons .button:focus,
  1440. .ui.basic.brown.button:focus {
  1441. background: transparent !important;
  1442. box-shadow: 0px 0px 0px 1px #90532b inset !important;
  1443. color: #975b33 !important;
  1444. }
  1445. .ui.basic.brown.buttons .active.button,
  1446. .ui.basic.brown.active.button {
  1447. background: transparent !important;
  1448. box-shadow: 0px 0px 0px 1px #995a31 inset !important;
  1449. color: #805031 !important;
  1450. }
  1451. .ui.basic.brown.buttons .button:active,
  1452. .ui.basic.brown.button:active {
  1453. box-shadow: 0px 0px 0px 1px #805031 inset !important;
  1454. color: #805031 !important;
  1455. }
  1456. .ui.buttons:not(.vertical) > .basic.brown.button:not(:first-child) {
  1457. margin-left: -1px;
  1458. }
  1459. /* Inverted */
  1460. .ui.inverted.brown.buttons .button,
  1461. .ui.inverted.brown.button {
  1462. background-color: transparent;
  1463. box-shadow: 0px 0px 0px 2px #D67C1C inset !important;
  1464. color: #D67C1C;
  1465. }
  1466. .ui.inverted.brown.buttons .button:hover,
  1467. .ui.inverted.brown.button:hover,
  1468. .ui.inverted.brown.buttons .button:focus,
  1469. .ui.inverted.brown.button:focus,
  1470. .ui.inverted.brown.buttons .button.active,
  1471. .ui.inverted.brown.button.active,
  1472. .ui.inverted.brown.buttons .button:active,
  1473. .ui.inverted.brown.button:active {
  1474. box-shadow: none !important;
  1475. color: #FFFFFF;
  1476. }
  1477. .ui.inverted.brown.buttons .button:hover,
  1478. .ui.inverted.brown.button:hover {
  1479. background-color: #c86f11;
  1480. }
  1481. .ui.inverted.brown.buttons .button:focus,
  1482. .ui.inverted.brown.button:focus {
  1483. background-color: #c16808;
  1484. }
  1485. .ui.inverted.brown.buttons .active.button,
  1486. .ui.inverted.brown.active.button {
  1487. background-color: #cc6f0d;
  1488. }
  1489. .ui.inverted.brown.buttons .button:active,
  1490. .ui.inverted.brown.button:active {
  1491. background-color: #a96216;
  1492. }
  1493. /* Inverted Basic */
  1494. .ui.inverted.brown.basic.buttons .button,
  1495. .ui.inverted.brown.buttons .basic.button,
  1496. .ui.inverted.brown.basic.button {
  1497. background-color: transparent;
  1498. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1499. color: #FFFFFF !important;
  1500. }
  1501. .ui.inverted.brown.basic.buttons .button:hover,
  1502. .ui.inverted.brown.buttons .basic.button:hover,
  1503. .ui.inverted.brown.basic.button:hover {
  1504. box-shadow: 0px 0px 0px 2px #c86f11 inset !important;
  1505. color: #D67C1C !important;
  1506. }
  1507. .ui.inverted.brown.basic.buttons .button:focus,
  1508. .ui.inverted.brown.basic.buttons .button:focus,
  1509. .ui.inverted.brown.basic.button:focus {
  1510. box-shadow: 0px 0px 0px 2px #c16808 inset !important;
  1511. color: #D67C1C !important;
  1512. }
  1513. .ui.inverted.brown.basic.buttons .active.button,
  1514. .ui.inverted.brown.buttons .basic.active.button,
  1515. .ui.inverted.brown.basic.active.button {
  1516. box-shadow: 0px 0px 0px 2px #cc6f0d inset !important;
  1517. color: #D67C1C !important;
  1518. }
  1519. .ui.inverted.brown.basic.buttons .button:active,
  1520. .ui.inverted.brown.buttons .basic.button:active,
  1521. .ui.inverted.brown.basic.button:active {
  1522. box-shadow: 0px 0px 0px 2px #a96216 inset !important;
  1523. color: #D67C1C !important;
  1524. }
  1525. /*--- Blue ---*/
  1526. .ui.blue.buttons .button,
  1527. .ui.blue.button {
  1528. background-color: #2185D0;
  1529. color: #FFFFFF;
  1530. text-shadow: none;
  1531. background-image: none;
  1532. }
  1533. .ui.blue.button {
  1534. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  1535. }
  1536. .ui.blue.buttons .button:hover,
  1537. .ui.blue.button:hover {
  1538. background-color: #1678c2;
  1539. color: #FFFFFF;
  1540. text-shadow: none;
  1541. }
  1542. .ui.blue.buttons .button:focus,
  1543. .ui.blue.button:focus {
  1544. background-color: #0d71bb;
  1545. color: #FFFFFF;
  1546. text-shadow: none;
  1547. }
  1548. .ui.blue.buttons .button:active,
  1549. .ui.blue.button:active {
  1550. background-color: #1a69a4;
  1551. color: #FFFFFF;
  1552. text-shadow: none;
  1553. }
  1554. .ui.blue.buttons .active.button,
  1555. .ui.blue.buttons .active.button:active,
  1556. .ui.blue.active.button,
  1557. .ui.blue.button .active.button:active {
  1558. background-color: #1279c6;
  1559. color: #FFFFFF;
  1560. text-shadow: none;
  1561. }
  1562. /* Basic */
  1563. .ui.basic.blue.buttons .button,
  1564. .ui.basic.blue.button {
  1565. box-shadow: 0px 0px 0px 1px #2185D0 inset !important;
  1566. color: #2185D0 !important;
  1567. }
  1568. .ui.basic.blue.buttons .button:hover,
  1569. .ui.basic.blue.button:hover {
  1570. background: transparent !important;
  1571. box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
  1572. color: #1678c2 !important;
  1573. }
  1574. .ui.basic.blue.buttons .button:focus,
  1575. .ui.basic.blue.button:focus {
  1576. background: transparent !important;
  1577. box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
  1578. color: #1678c2 !important;
  1579. }
  1580. .ui.basic.blue.buttons .active.button,
  1581. .ui.basic.blue.active.button {
  1582. background: transparent !important;
  1583. box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
  1584. color: #1a69a4 !important;
  1585. }
  1586. .ui.basic.blue.buttons .button:active,
  1587. .ui.basic.blue.button:active {
  1588. box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
  1589. color: #1a69a4 !important;
  1590. }
  1591. .ui.buttons:not(.vertical) > .basic.blue.button:not(:first-child) {
  1592. margin-left: -1px;
  1593. }
  1594. /* Inverted */
  1595. .ui.inverted.blue.buttons .button,
  1596. .ui.inverted.blue.button {
  1597. background-color: transparent;
  1598. box-shadow: 0px 0px 0px 2px #54C8FF inset !important;
  1599. color: #54C8FF;
  1600. }
  1601. .ui.inverted.blue.buttons .button:hover,
  1602. .ui.inverted.blue.button:hover,
  1603. .ui.inverted.blue.buttons .button:focus,
  1604. .ui.inverted.blue.button:focus,
  1605. .ui.inverted.blue.buttons .button.active,
  1606. .ui.inverted.blue.button.active,
  1607. .ui.inverted.blue.buttons .button:active,
  1608. .ui.inverted.blue.button:active {
  1609. box-shadow: none !important;
  1610. color: #FFFFFF;
  1611. }
  1612. .ui.inverted.blue.buttons .button:hover,
  1613. .ui.inverted.blue.button:hover {
  1614. background-color: #3ac0ff;
  1615. }
  1616. .ui.inverted.blue.buttons .button:focus,
  1617. .ui.inverted.blue.button:focus {
  1618. background-color: #2bbbff;
  1619. }
  1620. .ui.inverted.blue.buttons .active.button,
  1621. .ui.inverted.blue.active.button {
  1622. background-color: #3ac0ff;
  1623. }
  1624. .ui.inverted.blue.buttons .button:active,
  1625. .ui.inverted.blue.button:active {
  1626. background-color: #21b8ff;
  1627. }
  1628. /* Inverted Basic */
  1629. .ui.inverted.blue.basic.buttons .button,
  1630. .ui.inverted.blue.buttons .basic.button,
  1631. .ui.inverted.blue.basic.button {
  1632. background-color: transparent;
  1633. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1634. color: #FFFFFF !important;
  1635. }
  1636. .ui.inverted.blue.basic.buttons .button:hover,
  1637. .ui.inverted.blue.buttons .basic.button:hover,
  1638. .ui.inverted.blue.basic.button:hover {
  1639. box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
  1640. color: #54C8FF !important;
  1641. }
  1642. .ui.inverted.blue.basic.buttons .button:focus,
  1643. .ui.inverted.blue.basic.buttons .button:focus,
  1644. .ui.inverted.blue.basic.button:focus {
  1645. box-shadow: 0px 0px 0px 2px #2bbbff inset !important;
  1646. color: #54C8FF !important;
  1647. }
  1648. .ui.inverted.blue.basic.buttons .active.button,
  1649. .ui.inverted.blue.buttons .basic.active.button,
  1650. .ui.inverted.blue.basic.active.button {
  1651. box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
  1652. color: #54C8FF !important;
  1653. }
  1654. .ui.inverted.blue.basic.buttons .button:active,
  1655. .ui.inverted.blue.buttons .basic.button:active,
  1656. .ui.inverted.blue.basic.button:active {
  1657. box-shadow: 0px 0px 0px 2px #21b8ff inset !important;
  1658. color: #54C8FF !important;
  1659. }
  1660. /*--- Green ---*/
  1661. .ui.green.buttons .button,
  1662. .ui.green.button {
  1663. background-color: #21BA45;
  1664. color: #FFFFFF;
  1665. text-shadow: none;
  1666. background-image: none;
  1667. }
  1668. .ui.green.button {
  1669. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  1670. }
  1671. .ui.green.buttons .button:hover,
  1672. .ui.green.button:hover {
  1673. background-color: #16ab39;
  1674. color: #FFFFFF;
  1675. text-shadow: none;
  1676. }
  1677. .ui.green.buttons .button:focus,
  1678. .ui.green.button:focus {
  1679. background-color: #0ea432;
  1680. color: #FFFFFF;
  1681. text-shadow: none;
  1682. }
  1683. .ui.green.buttons .button:active,
  1684. .ui.green.button:active {
  1685. background-color: #198f35;
  1686. color: #FFFFFF;
  1687. text-shadow: none;
  1688. }
  1689. .ui.green.buttons .active.button,
  1690. .ui.green.buttons .active.button:active,
  1691. .ui.green.active.button,
  1692. .ui.green.button .active.button:active {
  1693. background-color: #13ae38;
  1694. color: #FFFFFF;
  1695. text-shadow: none;
  1696. }
  1697. /* Basic */
  1698. .ui.basic.green.buttons .button,
  1699. .ui.basic.green.button {
  1700. box-shadow: 0px 0px 0px 1px #21BA45 inset !important;
  1701. color: #21BA45 !important;
  1702. }
  1703. .ui.basic.green.buttons .button:hover,
  1704. .ui.basic.green.button:hover {
  1705. background: transparent !important;
  1706. box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
  1707. color: #16ab39 !important;
  1708. }
  1709. .ui.basic.green.buttons .button:focus,
  1710. .ui.basic.green.button:focus {
  1711. background: transparent !important;
  1712. box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
  1713. color: #16ab39 !important;
  1714. }
  1715. .ui.basic.green.buttons .active.button,
  1716. .ui.basic.green.active.button {
  1717. background: transparent !important;
  1718. box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
  1719. color: #198f35 !important;
  1720. }
  1721. .ui.basic.green.buttons .button:active,
  1722. .ui.basic.green.button:active {
  1723. box-shadow: 0px 0px 0px 1px #198f35 inset !important;
  1724. color: #198f35 !important;
  1725. }
  1726. .ui.buttons:not(.vertical) > .basic.green.button:not(:first-child) {
  1727. margin-left: -1px;
  1728. }
  1729. /* Inverted */
  1730. .ui.inverted.green.buttons .button,
  1731. .ui.inverted.green.button {
  1732. background-color: transparent;
  1733. box-shadow: 0px 0px 0px 2px #2ECC40 inset !important;
  1734. color: #2ECC40;
  1735. }
  1736. .ui.inverted.green.buttons .button:hover,
  1737. .ui.inverted.green.button:hover,
  1738. .ui.inverted.green.buttons .button:focus,
  1739. .ui.inverted.green.button:focus,
  1740. .ui.inverted.green.buttons .button.active,
  1741. .ui.inverted.green.button.active,
  1742. .ui.inverted.green.buttons .button:active,
  1743. .ui.inverted.green.button:active {
  1744. box-shadow: none !important;
  1745. color: #FFFFFF;
  1746. }
  1747. .ui.inverted.green.buttons .button:hover,
  1748. .ui.inverted.green.button:hover {
  1749. background-color: #22be34;
  1750. }
  1751. .ui.inverted.green.buttons .button:focus,
  1752. .ui.inverted.green.button:focus {
  1753. background-color: #19b82b;
  1754. }
  1755. .ui.inverted.green.buttons .active.button,
  1756. .ui.inverted.green.active.button {
  1757. background-color: #1fc231;
  1758. }
  1759. .ui.inverted.green.buttons .button:active,
  1760. .ui.inverted.green.button:active {
  1761. background-color: #25a233;
  1762. }
  1763. /* Inverted Basic */
  1764. .ui.inverted.green.basic.buttons .button,
  1765. .ui.inverted.green.buttons .basic.button,
  1766. .ui.inverted.green.basic.button {
  1767. background-color: transparent;
  1768. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1769. color: #FFFFFF !important;
  1770. }
  1771. .ui.inverted.green.basic.buttons .button:hover,
  1772. .ui.inverted.green.buttons .basic.button:hover,
  1773. .ui.inverted.green.basic.button:hover {
  1774. box-shadow: 0px 0px 0px 2px #22be34 inset !important;
  1775. color: #2ECC40 !important;
  1776. }
  1777. .ui.inverted.green.basic.buttons .button:focus,
  1778. .ui.inverted.green.basic.buttons .button:focus,
  1779. .ui.inverted.green.basic.button:focus {
  1780. box-shadow: 0px 0px 0px 2px #19b82b inset !important;
  1781. color: #2ECC40 !important;
  1782. }
  1783. .ui.inverted.green.basic.buttons .active.button,
  1784. .ui.inverted.green.buttons .basic.active.button,
  1785. .ui.inverted.green.basic.active.button {
  1786. box-shadow: 0px 0px 0px 2px #1fc231 inset !important;
  1787. color: #2ECC40 !important;
  1788. }
  1789. .ui.inverted.green.basic.buttons .button:active,
  1790. .ui.inverted.green.buttons .basic.button:active,
  1791. .ui.inverted.green.basic.button:active {
  1792. box-shadow: 0px 0px 0px 2px #25a233 inset !important;
  1793. color: #2ECC40 !important;
  1794. }
  1795. /*--- Orange ---*/
  1796. .ui.orange.buttons .button,
  1797. .ui.orange.button {
  1798. background-color: #F2711C;
  1799. color: #FFFFFF;
  1800. text-shadow: none;
  1801. background-image: none;
  1802. }
  1803. .ui.orange.button {
  1804. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  1805. }
  1806. .ui.orange.buttons .button:hover,
  1807. .ui.orange.button:hover {
  1808. background-color: #f26202;
  1809. color: #FFFFFF;
  1810. text-shadow: none;
  1811. }
  1812. .ui.orange.buttons .button:focus,
  1813. .ui.orange.button:focus {
  1814. background-color: #e55b00;
  1815. color: #FFFFFF;
  1816. text-shadow: none;
  1817. }
  1818. .ui.orange.buttons .button:active,
  1819. .ui.orange.button:active {
  1820. background-color: #cf590c;
  1821. color: #FFFFFF;
  1822. text-shadow: none;
  1823. }
  1824. .ui.orange.buttons .active.button,
  1825. .ui.orange.buttons .active.button:active,
  1826. .ui.orange.active.button,
  1827. .ui.orange.button .active.button:active {
  1828. background-color: #f56100;
  1829. color: #FFFFFF;
  1830. text-shadow: none;
  1831. }
  1832. /* Basic */
  1833. .ui.basic.orange.buttons .button,
  1834. .ui.basic.orange.button {
  1835. box-shadow: 0px 0px 0px 1px #F2711C inset !important;
  1836. color: #F2711C !important;
  1837. }
  1838. .ui.basic.orange.buttons .button:hover,
  1839. .ui.basic.orange.button:hover {
  1840. background: transparent !important;
  1841. box-shadow: 0px 0px 0px 1px #f26202 inset !important;
  1842. color: #f26202 !important;
  1843. }
  1844. .ui.basic.orange.buttons .button:focus,
  1845. .ui.basic.orange.button:focus {
  1846. background: transparent !important;
  1847. box-shadow: 0px 0px 0px 1px #e55b00 inset !important;
  1848. color: #f26202 !important;
  1849. }
  1850. .ui.basic.orange.buttons .active.button,
  1851. .ui.basic.orange.active.button {
  1852. background: transparent !important;
  1853. box-shadow: 0px 0px 0px 1px #f56100 inset !important;
  1854. color: #cf590c !important;
  1855. }
  1856. .ui.basic.orange.buttons .button:active,
  1857. .ui.basic.orange.button:active {
  1858. box-shadow: 0px 0px 0px 1px #cf590c inset !important;
  1859. color: #cf590c !important;
  1860. }
  1861. .ui.buttons:not(.vertical) > .basic.orange.button:not(:first-child) {
  1862. margin-left: -1px;
  1863. }
  1864. /* Inverted */
  1865. .ui.inverted.orange.buttons .button,
  1866. .ui.inverted.orange.button {
  1867. background-color: transparent;
  1868. box-shadow: 0px 0px 0px 2px #FF851B inset !important;
  1869. color: #FF851B;
  1870. }
  1871. .ui.inverted.orange.buttons .button:hover,
  1872. .ui.inverted.orange.button:hover,
  1873. .ui.inverted.orange.buttons .button:focus,
  1874. .ui.inverted.orange.button:focus,
  1875. .ui.inverted.orange.buttons .button.active,
  1876. .ui.inverted.orange.button.active,
  1877. .ui.inverted.orange.buttons .button:active,
  1878. .ui.inverted.orange.button:active {
  1879. box-shadow: none !important;
  1880. color: #FFFFFF;
  1881. }
  1882. .ui.inverted.orange.buttons .button:hover,
  1883. .ui.inverted.orange.button:hover {
  1884. background-color: #ff7701;
  1885. }
  1886. .ui.inverted.orange.buttons .button:focus,
  1887. .ui.inverted.orange.button:focus {
  1888. background-color: #f17000;
  1889. }
  1890. .ui.inverted.orange.buttons .active.button,
  1891. .ui.inverted.orange.active.button {
  1892. background-color: #ff7701;
  1893. }
  1894. .ui.inverted.orange.buttons .button:active,
  1895. .ui.inverted.orange.button:active {
  1896. background-color: #e76b00;
  1897. }
  1898. /* Inverted Basic */
  1899. .ui.inverted.orange.basic.buttons .button,
  1900. .ui.inverted.orange.buttons .basic.button,
  1901. .ui.inverted.orange.basic.button {
  1902. background-color: transparent;
  1903. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  1904. color: #FFFFFF !important;
  1905. }
  1906. .ui.inverted.orange.basic.buttons .button:hover,
  1907. .ui.inverted.orange.buttons .basic.button:hover,
  1908. .ui.inverted.orange.basic.button:hover {
  1909. box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
  1910. color: #FF851B !important;
  1911. }
  1912. .ui.inverted.orange.basic.buttons .button:focus,
  1913. .ui.inverted.orange.basic.buttons .button:focus,
  1914. .ui.inverted.orange.basic.button:focus {
  1915. box-shadow: 0px 0px 0px 2px #f17000 inset !important;
  1916. color: #FF851B !important;
  1917. }
  1918. .ui.inverted.orange.basic.buttons .active.button,
  1919. .ui.inverted.orange.buttons .basic.active.button,
  1920. .ui.inverted.orange.basic.active.button {
  1921. box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
  1922. color: #FF851B !important;
  1923. }
  1924. .ui.inverted.orange.basic.buttons .button:active,
  1925. .ui.inverted.orange.buttons .basic.button:active,
  1926. .ui.inverted.orange.basic.button:active {
  1927. box-shadow: 0px 0px 0px 2px #e76b00 inset !important;
  1928. color: #FF851B !important;
  1929. }
  1930. /*--- Pink ---*/
  1931. .ui.pink.buttons .button,
  1932. .ui.pink.button {
  1933. background-color: #E03997;
  1934. color: #FFFFFF;
  1935. text-shadow: none;
  1936. background-image: none;
  1937. }
  1938. .ui.pink.button {
  1939. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  1940. }
  1941. .ui.pink.buttons .button:hover,
  1942. .ui.pink.button:hover {
  1943. background-color: #e61a8d;
  1944. color: #FFFFFF;
  1945. text-shadow: none;
  1946. }
  1947. .ui.pink.buttons .button:focus,
  1948. .ui.pink.button:focus {
  1949. background-color: #e10f85;
  1950. color: #FFFFFF;
  1951. text-shadow: none;
  1952. }
  1953. .ui.pink.buttons .button:active,
  1954. .ui.pink.button:active {
  1955. background-color: #c71f7e;
  1956. color: #FFFFFF;
  1957. text-shadow: none;
  1958. }
  1959. .ui.pink.buttons .active.button,
  1960. .ui.pink.buttons .active.button:active,
  1961. .ui.pink.active.button,
  1962. .ui.pink.button .active.button:active {
  1963. background-color: #ea158d;
  1964. color: #FFFFFF;
  1965. text-shadow: none;
  1966. }
  1967. /* Basic */
  1968. .ui.basic.pink.buttons .button,
  1969. .ui.basic.pink.button {
  1970. box-shadow: 0px 0px 0px 1px #E03997 inset !important;
  1971. color: #E03997 !important;
  1972. }
  1973. .ui.basic.pink.buttons .button:hover,
  1974. .ui.basic.pink.button:hover {
  1975. background: transparent !important;
  1976. box-shadow: 0px 0px 0px 1px #e61a8d inset !important;
  1977. color: #e61a8d !important;
  1978. }
  1979. .ui.basic.pink.buttons .button:focus,
  1980. .ui.basic.pink.button:focus {
  1981. background: transparent !important;
  1982. box-shadow: 0px 0px 0px 1px #e10f85 inset !important;
  1983. color: #e61a8d !important;
  1984. }
  1985. .ui.basic.pink.buttons .active.button,
  1986. .ui.basic.pink.active.button {
  1987. background: transparent !important;
  1988. box-shadow: 0px 0px 0px 1px #ea158d inset !important;
  1989. color: #c71f7e !important;
  1990. }
  1991. .ui.basic.pink.buttons .button:active,
  1992. .ui.basic.pink.button:active {
  1993. box-shadow: 0px 0px 0px 1px #c71f7e inset !important;
  1994. color: #c71f7e !important;
  1995. }
  1996. .ui.buttons:not(.vertical) > .basic.pink.button:not(:first-child) {
  1997. margin-left: -1px;
  1998. }
  1999. /* Inverted */
  2000. .ui.inverted.pink.buttons .button,
  2001. .ui.inverted.pink.button {
  2002. background-color: transparent;
  2003. box-shadow: 0px 0px 0px 2px #FF8EDF inset !important;
  2004. color: #FF8EDF;
  2005. }
  2006. .ui.inverted.pink.buttons .button:hover,
  2007. .ui.inverted.pink.button:hover,
  2008. .ui.inverted.pink.buttons .button:focus,
  2009. .ui.inverted.pink.button:focus,
  2010. .ui.inverted.pink.buttons .button.active,
  2011. .ui.inverted.pink.button.active,
  2012. .ui.inverted.pink.buttons .button:active,
  2013. .ui.inverted.pink.button:active {
  2014. box-shadow: none !important;
  2015. color: #FFFFFF;
  2016. }
  2017. .ui.inverted.pink.buttons .button:hover,
  2018. .ui.inverted.pink.button:hover {
  2019. background-color: #ff74d8;
  2020. }
  2021. .ui.inverted.pink.buttons .button:focus,
  2022. .ui.inverted.pink.button:focus {
  2023. background-color: #ff65d3;
  2024. }
  2025. .ui.inverted.pink.buttons .active.button,
  2026. .ui.inverted.pink.active.button {
  2027. background-color: #ff74d8;
  2028. }
  2029. .ui.inverted.pink.buttons .button:active,
  2030. .ui.inverted.pink.button:active {
  2031. background-color: #ff5bd1;
  2032. }
  2033. /* Inverted Basic */
  2034. .ui.inverted.pink.basic.buttons .button,
  2035. .ui.inverted.pink.buttons .basic.button,
  2036. .ui.inverted.pink.basic.button {
  2037. background-color: transparent;
  2038. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  2039. color: #FFFFFF !important;
  2040. }
  2041. .ui.inverted.pink.basic.buttons .button:hover,
  2042. .ui.inverted.pink.buttons .basic.button:hover,
  2043. .ui.inverted.pink.basic.button:hover {
  2044. box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
  2045. color: #FF8EDF !important;
  2046. }
  2047. .ui.inverted.pink.basic.buttons .button:focus,
  2048. .ui.inverted.pink.basic.buttons .button:focus,
  2049. .ui.inverted.pink.basic.button:focus {
  2050. box-shadow: 0px 0px 0px 2px #ff65d3 inset !important;
  2051. color: #FF8EDF !important;
  2052. }
  2053. .ui.inverted.pink.basic.buttons .active.button,
  2054. .ui.inverted.pink.buttons .basic.active.button,
  2055. .ui.inverted.pink.basic.active.button {
  2056. box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
  2057. color: #FF8EDF !important;
  2058. }
  2059. .ui.inverted.pink.basic.buttons .button:active,
  2060. .ui.inverted.pink.buttons .basic.button:active,
  2061. .ui.inverted.pink.basic.button:active {
  2062. box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important;
  2063. color: #FF8EDF !important;
  2064. }
  2065. /*--- Violet ---*/
  2066. .ui.violet.buttons .button,
  2067. .ui.violet.button {
  2068. background-color: #6435C9;
  2069. color: #FFFFFF;
  2070. text-shadow: none;
  2071. background-image: none;
  2072. }
  2073. .ui.violet.button {
  2074. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  2075. }
  2076. .ui.violet.buttons .button:hover,
  2077. .ui.violet.button:hover {
  2078. background-color: #5829bb;
  2079. color: #FFFFFF;
  2080. text-shadow: none;
  2081. }
  2082. .ui.violet.buttons .button:focus,
  2083. .ui.violet.button:focus {
  2084. background-color: #4f20b5;
  2085. color: #FFFFFF;
  2086. text-shadow: none;
  2087. }
  2088. .ui.violet.buttons .button:active,
  2089. .ui.violet.button:active {
  2090. background-color: #502aa1;
  2091. color: #FFFFFF;
  2092. text-shadow: none;
  2093. }
  2094. .ui.violet.buttons .active.button,
  2095. .ui.violet.buttons .active.button:active,
  2096. .ui.violet.active.button,
  2097. .ui.violet.button .active.button:active {
  2098. background-color: #5626bf;
  2099. color: #FFFFFF;
  2100. text-shadow: none;
  2101. }
  2102. /* Basic */
  2103. .ui.basic.violet.buttons .button,
  2104. .ui.basic.violet.button {
  2105. box-shadow: 0px 0px 0px 1px #6435C9 inset !important;
  2106. color: #6435C9 !important;
  2107. }
  2108. .ui.basic.violet.buttons .button:hover,
  2109. .ui.basic.violet.button:hover {
  2110. background: transparent !important;
  2111. box-shadow: 0px 0px 0px 1px #5829bb inset !important;
  2112. color: #5829bb !important;
  2113. }
  2114. .ui.basic.violet.buttons .button:focus,
  2115. .ui.basic.violet.button:focus {
  2116. background: transparent !important;
  2117. box-shadow: 0px 0px 0px 1px #4f20b5 inset !important;
  2118. color: #5829bb !important;
  2119. }
  2120. .ui.basic.violet.buttons .active.button,
  2121. .ui.basic.violet.active.button {
  2122. background: transparent !important;
  2123. box-shadow: 0px 0px 0px 1px #5626bf inset !important;
  2124. color: #502aa1 !important;
  2125. }
  2126. .ui.basic.violet.buttons .button:active,
  2127. .ui.basic.violet.button:active {
  2128. box-shadow: 0px 0px 0px 1px #502aa1 inset !important;
  2129. color: #502aa1 !important;
  2130. }
  2131. .ui.buttons:not(.vertical) > .basic.violet.button:not(:first-child) {
  2132. margin-left: -1px;
  2133. }
  2134. /* Inverted */
  2135. .ui.inverted.violet.buttons .button,
  2136. .ui.inverted.violet.button {
  2137. background-color: transparent;
  2138. box-shadow: 0px 0px 0px 2px #A291FB inset !important;
  2139. color: #A291FB;
  2140. }
  2141. .ui.inverted.violet.buttons .button:hover,
  2142. .ui.inverted.violet.button:hover,
  2143. .ui.inverted.violet.buttons .button:focus,
  2144. .ui.inverted.violet.button:focus,
  2145. .ui.inverted.violet.buttons .button.active,
  2146. .ui.inverted.violet.button.active,
  2147. .ui.inverted.violet.buttons .button:active,
  2148. .ui.inverted.violet.button:active {
  2149. box-shadow: none !important;
  2150. color: #FFFFFF;
  2151. }
  2152. .ui.inverted.violet.buttons .button:hover,
  2153. .ui.inverted.violet.button:hover {
  2154. background-color: #8a73ff;
  2155. }
  2156. .ui.inverted.violet.buttons .button:focus,
  2157. .ui.inverted.violet.button:focus {
  2158. background-color: #7d64ff;
  2159. }
  2160. .ui.inverted.violet.buttons .active.button,
  2161. .ui.inverted.violet.active.button {
  2162. background-color: #8a73ff;
  2163. }
  2164. .ui.inverted.violet.buttons .button:active,
  2165. .ui.inverted.violet.button:active {
  2166. background-color: #7860f9;
  2167. }
  2168. /* Inverted Basic */
  2169. .ui.inverted.violet.basic.buttons .button,
  2170. .ui.inverted.violet.buttons .basic.button,
  2171. .ui.inverted.violet.basic.button {
  2172. background-color: transparent;
  2173. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  2174. color: #FFFFFF !important;
  2175. }
  2176. .ui.inverted.violet.basic.buttons .button:hover,
  2177. .ui.inverted.violet.buttons .basic.button:hover,
  2178. .ui.inverted.violet.basic.button:hover {
  2179. box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
  2180. color: #A291FB !important;
  2181. }
  2182. .ui.inverted.violet.basic.buttons .button:focus,
  2183. .ui.inverted.violet.basic.buttons .button:focus,
  2184. .ui.inverted.violet.basic.button:focus {
  2185. box-shadow: 0px 0px 0px 2px #7d64ff inset !important;
  2186. color: #A291FB !important;
  2187. }
  2188. .ui.inverted.violet.basic.buttons .active.button,
  2189. .ui.inverted.violet.buttons .basic.active.button,
  2190. .ui.inverted.violet.basic.active.button {
  2191. box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
  2192. color: #A291FB !important;
  2193. }
  2194. .ui.inverted.violet.basic.buttons .button:active,
  2195. .ui.inverted.violet.buttons .basic.button:active,
  2196. .ui.inverted.violet.basic.button:active {
  2197. box-shadow: 0px 0px 0px 2px #7860f9 inset !important;
  2198. color: #A291FB !important;
  2199. }
  2200. /*--- Purple ---*/
  2201. .ui.purple.buttons .button,
  2202. .ui.purple.button {
  2203. background-color: #A333C8;
  2204. color: #FFFFFF;
  2205. text-shadow: none;
  2206. background-image: none;
  2207. }
  2208. .ui.purple.button {
  2209. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  2210. }
  2211. .ui.purple.buttons .button:hover,
  2212. .ui.purple.button:hover {
  2213. background-color: #9627ba;
  2214. color: #FFFFFF;
  2215. text-shadow: none;
  2216. }
  2217. .ui.purple.buttons .button:focus,
  2218. .ui.purple.button:focus {
  2219. background-color: #8f1eb4;
  2220. color: #FFFFFF;
  2221. text-shadow: none;
  2222. }
  2223. .ui.purple.buttons .button:active,
  2224. .ui.purple.button:active {
  2225. background-color: #82299f;
  2226. color: #FFFFFF;
  2227. text-shadow: none;
  2228. }
  2229. .ui.purple.buttons .active.button,
  2230. .ui.purple.buttons .active.button:active,
  2231. .ui.purple.active.button,
  2232. .ui.purple.button .active.button:active {
  2233. background-color: #9724be;
  2234. color: #FFFFFF;
  2235. text-shadow: none;
  2236. }
  2237. /* Basic */
  2238. .ui.basic.purple.buttons .button,
  2239. .ui.basic.purple.button {
  2240. box-shadow: 0px 0px 0px 1px #A333C8 inset !important;
  2241. color: #A333C8 !important;
  2242. }
  2243. .ui.basic.purple.buttons .button:hover,
  2244. .ui.basic.purple.button:hover {
  2245. background: transparent !important;
  2246. box-shadow: 0px 0px 0px 1px #9627ba inset !important;
  2247. color: #9627ba !important;
  2248. }
  2249. .ui.basic.purple.buttons .button:focus,
  2250. .ui.basic.purple.button:focus {
  2251. background: transparent !important;
  2252. box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important;
  2253. color: #9627ba !important;
  2254. }
  2255. .ui.basic.purple.buttons .active.button,
  2256. .ui.basic.purple.active.button {
  2257. background: transparent !important;
  2258. box-shadow: 0px 0px 0px 1px #9724be inset !important;
  2259. color: #82299f !important;
  2260. }
  2261. .ui.basic.purple.buttons .button:active,
  2262. .ui.basic.purple.button:active {
  2263. box-shadow: 0px 0px 0px 1px #82299f inset !important;
  2264. color: #82299f !important;
  2265. }
  2266. .ui.buttons:not(.vertical) > .basic.purple.button:not(:first-child) {
  2267. margin-left: -1px;
  2268. }
  2269. /* Inverted */
  2270. .ui.inverted.purple.buttons .button,
  2271. .ui.inverted.purple.button {
  2272. background-color: transparent;
  2273. box-shadow: 0px 0px 0px 2px #DC73FF inset !important;
  2274. color: #DC73FF;
  2275. }
  2276. .ui.inverted.purple.buttons .button:hover,
  2277. .ui.inverted.purple.button:hover,
  2278. .ui.inverted.purple.buttons .button:focus,
  2279. .ui.inverted.purple.button:focus,
  2280. .ui.inverted.purple.buttons .button.active,
  2281. .ui.inverted.purple.button.active,
  2282. .ui.inverted.purple.buttons .button:active,
  2283. .ui.inverted.purple.button:active {
  2284. box-shadow: none !important;
  2285. color: #FFFFFF;
  2286. }
  2287. .ui.inverted.purple.buttons .button:hover,
  2288. .ui.inverted.purple.button:hover {
  2289. background-color: #d65aff;
  2290. }
  2291. .ui.inverted.purple.buttons .button:focus,
  2292. .ui.inverted.purple.button:focus {
  2293. background-color: #d24aff;
  2294. }
  2295. .ui.inverted.purple.buttons .active.button,
  2296. .ui.inverted.purple.active.button {
  2297. background-color: #d65aff;
  2298. }
  2299. .ui.inverted.purple.buttons .button:active,
  2300. .ui.inverted.purple.button:active {
  2301. background-color: #cf40ff;
  2302. }
  2303. /* Inverted Basic */
  2304. .ui.inverted.purple.basic.buttons .button,
  2305. .ui.inverted.purple.buttons .basic.button,
  2306. .ui.inverted.purple.basic.button {
  2307. background-color: transparent;
  2308. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  2309. color: #FFFFFF !important;
  2310. }
  2311. .ui.inverted.purple.basic.buttons .button:hover,
  2312. .ui.inverted.purple.buttons .basic.button:hover,
  2313. .ui.inverted.purple.basic.button:hover {
  2314. box-shadow: 0px 0px 0px 2px #d65aff inset !important;
  2315. color: #DC73FF !important;
  2316. }
  2317. .ui.inverted.purple.basic.buttons .button:focus,
  2318. .ui.inverted.purple.basic.buttons .button:focus,
  2319. .ui.inverted.purple.basic.button:focus {
  2320. box-shadow: 0px 0px 0px 2px #d24aff inset !important;
  2321. color: #DC73FF !important;
  2322. }
  2323. .ui.inverted.purple.basic.buttons .active.button,
  2324. .ui.inverted.purple.buttons .basic.active.button,
  2325. .ui.inverted.purple.basic.active.button {
  2326. box-shadow: 0px 0px 0px 2px #d65aff inset !important;
  2327. color: #DC73FF !important;
  2328. }
  2329. .ui.inverted.purple.basic.buttons .button:active,
  2330. .ui.inverted.purple.buttons .basic.button:active,
  2331. .ui.inverted.purple.basic.button:active {
  2332. box-shadow: 0px 0px 0px 2px #cf40ff inset !important;
  2333. color: #DC73FF !important;
  2334. }
  2335. /*--- Red ---*/
  2336. .ui.red.buttons .button,
  2337. .ui.red.button {
  2338. background-color: #DB2828;
  2339. color: #FFFFFF;
  2340. text-shadow: none;
  2341. background-image: none;
  2342. }
  2343. .ui.red.button {
  2344. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  2345. }
  2346. .ui.red.buttons .button:hover,
  2347. .ui.red.button:hover {
  2348. background-color: #d01919;
  2349. color: #FFFFFF;
  2350. text-shadow: none;
  2351. }
  2352. .ui.red.buttons .button:focus,
  2353. .ui.red.button:focus {
  2354. background-color: #ca1010;
  2355. color: #FFFFFF;
  2356. text-shadow: none;
  2357. }
  2358. .ui.red.buttons .button:active,
  2359. .ui.red.button:active {
  2360. background-color: #b21e1e;
  2361. color: #FFFFFF;
  2362. text-shadow: none;
  2363. }
  2364. .ui.red.buttons .active.button,
  2365. .ui.red.buttons .active.button:active,
  2366. .ui.red.active.button,
  2367. .ui.red.button .active.button:active {
  2368. background-color: #d41515;
  2369. color: #FFFFFF;
  2370. text-shadow: none;
  2371. }
  2372. /* Basic */
  2373. .ui.basic.red.buttons .button,
  2374. .ui.basic.red.button {
  2375. box-shadow: 0px 0px 0px 1px #DB2828 inset !important;
  2376. color: #DB2828 !important;
  2377. }
  2378. .ui.basic.red.buttons .button:hover,
  2379. .ui.basic.red.button:hover {
  2380. background: transparent !important;
  2381. box-shadow: 0px 0px 0px 1px #d01919 inset !important;
  2382. color: #d01919 !important;
  2383. }
  2384. .ui.basic.red.buttons .button:focus,
  2385. .ui.basic.red.button:focus {
  2386. background: transparent !important;
  2387. box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
  2388. color: #d01919 !important;
  2389. }
  2390. .ui.basic.red.buttons .active.button,
  2391. .ui.basic.red.active.button {
  2392. background: transparent !important;
  2393. box-shadow: 0px 0px 0px 1px #d41515 inset !important;
  2394. color: #b21e1e !important;
  2395. }
  2396. .ui.basic.red.buttons .button:active,
  2397. .ui.basic.red.button:active {
  2398. box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
  2399. color: #b21e1e !important;
  2400. }
  2401. .ui.buttons:not(.vertical) > .basic.red.button:not(:first-child) {
  2402. margin-left: -1px;
  2403. }
  2404. /* Inverted */
  2405. .ui.inverted.red.buttons .button,
  2406. .ui.inverted.red.button {
  2407. background-color: transparent;
  2408. box-shadow: 0px 0px 0px 2px #FF695E inset !important;
  2409. color: #FF695E;
  2410. }
  2411. .ui.inverted.red.buttons .button:hover,
  2412. .ui.inverted.red.button:hover,
  2413. .ui.inverted.red.buttons .button:focus,
  2414. .ui.inverted.red.button:focus,
  2415. .ui.inverted.red.buttons .button.active,
  2416. .ui.inverted.red.button.active,
  2417. .ui.inverted.red.buttons .button:active,
  2418. .ui.inverted.red.button:active {
  2419. box-shadow: none !important;
  2420. color: #FFFFFF;
  2421. }
  2422. .ui.inverted.red.buttons .button:hover,
  2423. .ui.inverted.red.button:hover {
  2424. background-color: #ff5144;
  2425. }
  2426. .ui.inverted.red.buttons .button:focus,
  2427. .ui.inverted.red.button:focus {
  2428. background-color: #ff4335;
  2429. }
  2430. .ui.inverted.red.buttons .active.button,
  2431. .ui.inverted.red.active.button {
  2432. background-color: #ff5144;
  2433. }
  2434. .ui.inverted.red.buttons .button:active,
  2435. .ui.inverted.red.button:active {
  2436. background-color: #ff392b;
  2437. }
  2438. /* Inverted Basic */
  2439. .ui.inverted.red.basic.buttons .button,
  2440. .ui.inverted.red.buttons .basic.button,
  2441. .ui.inverted.red.basic.button {
  2442. background-color: transparent;
  2443. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  2444. color: #FFFFFF !important;
  2445. }
  2446. .ui.inverted.red.basic.buttons .button:hover,
  2447. .ui.inverted.red.buttons .basic.button:hover,
  2448. .ui.inverted.red.basic.button:hover {
  2449. box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
  2450. color: #FF695E !important;
  2451. }
  2452. .ui.inverted.red.basic.buttons .button:focus,
  2453. .ui.inverted.red.basic.buttons .button:focus,
  2454. .ui.inverted.red.basic.button:focus {
  2455. box-shadow: 0px 0px 0px 2px #ff4335 inset !important;
  2456. color: #FF695E !important;
  2457. }
  2458. .ui.inverted.red.basic.buttons .active.button,
  2459. .ui.inverted.red.buttons .basic.active.button,
  2460. .ui.inverted.red.basic.active.button {
  2461. box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
  2462. color: #FF695E !important;
  2463. }
  2464. .ui.inverted.red.basic.buttons .button:active,
  2465. .ui.inverted.red.buttons .basic.button:active,
  2466. .ui.inverted.red.basic.button:active {
  2467. box-shadow: 0px 0px 0px 2px #ff392b inset !important;
  2468. color: #FF695E !important;
  2469. }
  2470. /*--- Teal ---*/
  2471. .ui.teal.buttons .button,
  2472. .ui.teal.button {
  2473. background-color: #00B5AD;
  2474. color: #FFFFFF;
  2475. text-shadow: none;
  2476. background-image: none;
  2477. }
  2478. .ui.teal.button {
  2479. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  2480. }
  2481. .ui.teal.buttons .button:hover,
  2482. .ui.teal.button:hover {
  2483. background-color: #009c95;
  2484. color: #FFFFFF;
  2485. text-shadow: none;
  2486. }
  2487. .ui.teal.buttons .button:focus,
  2488. .ui.teal.button:focus {
  2489. background-color: #008c86;
  2490. color: #FFFFFF;
  2491. text-shadow: none;
  2492. }
  2493. .ui.teal.buttons .button:active,
  2494. .ui.teal.button:active {
  2495. background-color: #00827c;
  2496. color: #FFFFFF;
  2497. text-shadow: none;
  2498. }
  2499. .ui.teal.buttons .active.button,
  2500. .ui.teal.buttons .active.button:active,
  2501. .ui.teal.active.button,
  2502. .ui.teal.button .active.button:active {
  2503. background-color: #009c95;
  2504. color: #FFFFFF;
  2505. text-shadow: none;
  2506. }
  2507. /* Basic */
  2508. .ui.basic.teal.buttons .button,
  2509. .ui.basic.teal.button {
  2510. box-shadow: 0px 0px 0px 1px #00B5AD inset !important;
  2511. color: #00B5AD !important;
  2512. }
  2513. .ui.basic.teal.buttons .button:hover,
  2514. .ui.basic.teal.button:hover {
  2515. background: transparent !important;
  2516. box-shadow: 0px 0px 0px 1px #009c95 inset !important;
  2517. color: #009c95 !important;
  2518. }
  2519. .ui.basic.teal.buttons .button:focus,
  2520. .ui.basic.teal.button:focus {
  2521. background: transparent !important;
  2522. box-shadow: 0px 0px 0px 1px #008c86 inset !important;
  2523. color: #009c95 !important;
  2524. }
  2525. .ui.basic.teal.buttons .active.button,
  2526. .ui.basic.teal.active.button {
  2527. background: transparent !important;
  2528. box-shadow: 0px 0px 0px 1px #009c95 inset !important;
  2529. color: #00827c !important;
  2530. }
  2531. .ui.basic.teal.buttons .button:active,
  2532. .ui.basic.teal.button:active {
  2533. box-shadow: 0px 0px 0px 1px #00827c inset !important;
  2534. color: #00827c !important;
  2535. }
  2536. .ui.buttons:not(.vertical) > .basic.teal.button:not(:first-child) {
  2537. margin-left: -1px;
  2538. }
  2539. /* Inverted */
  2540. .ui.inverted.teal.buttons .button,
  2541. .ui.inverted.teal.button {
  2542. background-color: transparent;
  2543. box-shadow: 0px 0px 0px 2px #6DFFFF inset !important;
  2544. color: #6DFFFF;
  2545. }
  2546. .ui.inverted.teal.buttons .button:hover,
  2547. .ui.inverted.teal.button:hover,
  2548. .ui.inverted.teal.buttons .button:focus,
  2549. .ui.inverted.teal.button:focus,
  2550. .ui.inverted.teal.buttons .button.active,
  2551. .ui.inverted.teal.button.active,
  2552. .ui.inverted.teal.buttons .button:active,
  2553. .ui.inverted.teal.button:active {
  2554. box-shadow: none !important;
  2555. color: rgba(0, 0, 0, 0.6);
  2556. }
  2557. .ui.inverted.teal.buttons .button:hover,
  2558. .ui.inverted.teal.button:hover {
  2559. background-color: #54ffff;
  2560. }
  2561. .ui.inverted.teal.buttons .button:focus,
  2562. .ui.inverted.teal.button:focus {
  2563. background-color: #44ffff;
  2564. }
  2565. .ui.inverted.teal.buttons .active.button,
  2566. .ui.inverted.teal.active.button {
  2567. background-color: #54ffff;
  2568. }
  2569. .ui.inverted.teal.buttons .button:active,
  2570. .ui.inverted.teal.button:active {
  2571. background-color: #3affff;
  2572. }
  2573. /* Inverted Basic */
  2574. .ui.inverted.teal.basic.buttons .button,
  2575. .ui.inverted.teal.buttons .basic.button,
  2576. .ui.inverted.teal.basic.button {
  2577. background-color: transparent;
  2578. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  2579. color: #FFFFFF !important;
  2580. }
  2581. .ui.inverted.teal.basic.buttons .button:hover,
  2582. .ui.inverted.teal.buttons .basic.button:hover,
  2583. .ui.inverted.teal.basic.button:hover {
  2584. box-shadow: 0px 0px 0px 2px #54ffff inset !important;
  2585. color: #6DFFFF !important;
  2586. }
  2587. .ui.inverted.teal.basic.buttons .button:focus,
  2588. .ui.inverted.teal.basic.buttons .button:focus,
  2589. .ui.inverted.teal.basic.button:focus {
  2590. box-shadow: 0px 0px 0px 2px #44ffff inset !important;
  2591. color: #6DFFFF !important;
  2592. }
  2593. .ui.inverted.teal.basic.buttons .active.button,
  2594. .ui.inverted.teal.buttons .basic.active.button,
  2595. .ui.inverted.teal.basic.active.button {
  2596. box-shadow: 0px 0px 0px 2px #54ffff inset !important;
  2597. color: #6DFFFF !important;
  2598. }
  2599. .ui.inverted.teal.basic.buttons .button:active,
  2600. .ui.inverted.teal.buttons .basic.button:active,
  2601. .ui.inverted.teal.basic.button:active {
  2602. box-shadow: 0px 0px 0px 2px #3affff inset !important;
  2603. color: #6DFFFF !important;
  2604. }
  2605. /*--- Olive ---*/
  2606. .ui.olive.buttons .button,
  2607. .ui.olive.button {
  2608. background-color: #B5CC18;
  2609. color: #FFFFFF;
  2610. text-shadow: none;
  2611. background-image: none;
  2612. }
  2613. .ui.olive.button {
  2614. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  2615. }
  2616. .ui.olive.buttons .button:hover,
  2617. .ui.olive.button:hover {
  2618. background-color: #a7bd0d;
  2619. color: #FFFFFF;
  2620. text-shadow: none;
  2621. }
  2622. .ui.olive.buttons .button:focus,
  2623. .ui.olive.button:focus {
  2624. background-color: #a0b605;
  2625. color: #FFFFFF;
  2626. text-shadow: none;
  2627. }
  2628. .ui.olive.buttons .button:active,
  2629. .ui.olive.button:active {
  2630. background-color: #8d9e13;
  2631. color: #FFFFFF;
  2632. text-shadow: none;
  2633. }
  2634. .ui.olive.buttons .active.button,
  2635. .ui.olive.buttons .active.button:active,
  2636. .ui.olive.active.button,
  2637. .ui.olive.button .active.button:active {
  2638. background-color: #aac109;
  2639. color: #FFFFFF;
  2640. text-shadow: none;
  2641. }
  2642. /* Basic */
  2643. .ui.basic.olive.buttons .button,
  2644. .ui.basic.olive.button {
  2645. box-shadow: 0px 0px 0px 1px #B5CC18 inset !important;
  2646. color: #B5CC18 !important;
  2647. }
  2648. .ui.basic.olive.buttons .button:hover,
  2649. .ui.basic.olive.button:hover {
  2650. background: transparent !important;
  2651. box-shadow: 0px 0px 0px 1px #a7bd0d inset !important;
  2652. color: #a7bd0d !important;
  2653. }
  2654. .ui.basic.olive.buttons .button:focus,
  2655. .ui.basic.olive.button:focus {
  2656. background: transparent !important;
  2657. box-shadow: 0px 0px 0px 1px #a0b605 inset !important;
  2658. color: #a7bd0d !important;
  2659. }
  2660. .ui.basic.olive.buttons .active.button,
  2661. .ui.basic.olive.active.button {
  2662. background: transparent !important;
  2663. box-shadow: 0px 0px 0px 1px #aac109 inset !important;
  2664. color: #8d9e13 !important;
  2665. }
  2666. .ui.basic.olive.buttons .button:active,
  2667. .ui.basic.olive.button:active {
  2668. box-shadow: 0px 0px 0px 1px #8d9e13 inset !important;
  2669. color: #8d9e13 !important;
  2670. }
  2671. .ui.buttons:not(.vertical) > .basic.olive.button:not(:first-child) {
  2672. margin-left: -1px;
  2673. }
  2674. /* Inverted */
  2675. .ui.inverted.olive.buttons .button,
  2676. .ui.inverted.olive.button {
  2677. background-color: transparent;
  2678. box-shadow: 0px 0px 0px 2px #D9E778 inset !important;
  2679. color: #D9E778;
  2680. }
  2681. .ui.inverted.olive.buttons .button:hover,
  2682. .ui.inverted.olive.button:hover,
  2683. .ui.inverted.olive.buttons .button:focus,
  2684. .ui.inverted.olive.button:focus,
  2685. .ui.inverted.olive.buttons .button.active,
  2686. .ui.inverted.olive.button.active,
  2687. .ui.inverted.olive.buttons .button:active,
  2688. .ui.inverted.olive.button:active {
  2689. box-shadow: none !important;
  2690. color: rgba(0, 0, 0, 0.6);
  2691. }
  2692. .ui.inverted.olive.buttons .button:hover,
  2693. .ui.inverted.olive.button:hover {
  2694. background-color: #d8ea5c;
  2695. }
  2696. .ui.inverted.olive.buttons .button:focus,
  2697. .ui.inverted.olive.button:focus {
  2698. background-color: #daef47;
  2699. }
  2700. .ui.inverted.olive.buttons .active.button,
  2701. .ui.inverted.olive.active.button {
  2702. background-color: #daed59;
  2703. }
  2704. .ui.inverted.olive.buttons .button:active,
  2705. .ui.inverted.olive.button:active {
  2706. background-color: #cddf4d;
  2707. }
  2708. /* Inverted Basic */
  2709. .ui.inverted.olive.basic.buttons .button,
  2710. .ui.inverted.olive.buttons .basic.button,
  2711. .ui.inverted.olive.basic.button {
  2712. background-color: transparent;
  2713. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  2714. color: #FFFFFF !important;
  2715. }
  2716. .ui.inverted.olive.basic.buttons .button:hover,
  2717. .ui.inverted.olive.buttons .basic.button:hover,
  2718. .ui.inverted.olive.basic.button:hover {
  2719. box-shadow: 0px 0px 0px 2px #d8ea5c inset !important;
  2720. color: #D9E778 !important;
  2721. }
  2722. .ui.inverted.olive.basic.buttons .button:focus,
  2723. .ui.inverted.olive.basic.buttons .button:focus,
  2724. .ui.inverted.olive.basic.button:focus {
  2725. box-shadow: 0px 0px 0px 2px #daef47 inset !important;
  2726. color: #D9E778 !important;
  2727. }
  2728. .ui.inverted.olive.basic.buttons .active.button,
  2729. .ui.inverted.olive.buttons .basic.active.button,
  2730. .ui.inverted.olive.basic.active.button {
  2731. box-shadow: 0px 0px 0px 2px #daed59 inset !important;
  2732. color: #D9E778 !important;
  2733. }
  2734. .ui.inverted.olive.basic.buttons .button:active,
  2735. .ui.inverted.olive.buttons .basic.button:active,
  2736. .ui.inverted.olive.basic.button:active {
  2737. box-shadow: 0px 0px 0px 2px #cddf4d inset !important;
  2738. color: #D9E778 !important;
  2739. }
  2740. /*--- Yellow ---*/
  2741. .ui.yellow.buttons .button,
  2742. .ui.yellow.button {
  2743. background-color: #FBBD08;
  2744. color: #FFFFFF;
  2745. text-shadow: none;
  2746. background-image: none;
  2747. }
  2748. .ui.yellow.button {
  2749. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  2750. }
  2751. .ui.yellow.buttons .button:hover,
  2752. .ui.yellow.button:hover {
  2753. background-color: #eaae00;
  2754. color: #FFFFFF;
  2755. text-shadow: none;
  2756. }
  2757. .ui.yellow.buttons .button:focus,
  2758. .ui.yellow.button:focus {
  2759. background-color: #daa300;
  2760. color: #FFFFFF;
  2761. text-shadow: none;
  2762. }
  2763. .ui.yellow.buttons .button:active,
  2764. .ui.yellow.button:active {
  2765. background-color: #cd9903;
  2766. color: #FFFFFF;
  2767. text-shadow: none;
  2768. }
  2769. .ui.yellow.buttons .active.button,
  2770. .ui.yellow.buttons .active.button:active,
  2771. .ui.yellow.active.button,
  2772. .ui.yellow.button .active.button:active {
  2773. background-color: #eaae00;
  2774. color: #FFFFFF;
  2775. text-shadow: none;
  2776. }
  2777. /* Basic */
  2778. .ui.basic.yellow.buttons .button,
  2779. .ui.basic.yellow.button {
  2780. box-shadow: 0px 0px 0px 1px #FBBD08 inset !important;
  2781. color: #FBBD08 !important;
  2782. }
  2783. .ui.basic.yellow.buttons .button:hover,
  2784. .ui.basic.yellow.button:hover {
  2785. background: transparent !important;
  2786. box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
  2787. color: #eaae00 !important;
  2788. }
  2789. .ui.basic.yellow.buttons .button:focus,
  2790. .ui.basic.yellow.button:focus {
  2791. background: transparent !important;
  2792. box-shadow: 0px 0px 0px 1px #daa300 inset !important;
  2793. color: #eaae00 !important;
  2794. }
  2795. .ui.basic.yellow.buttons .active.button,
  2796. .ui.basic.yellow.active.button {
  2797. background: transparent !important;
  2798. box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
  2799. color: #cd9903 !important;
  2800. }
  2801. .ui.basic.yellow.buttons .button:active,
  2802. .ui.basic.yellow.button:active {
  2803. box-shadow: 0px 0px 0px 1px #cd9903 inset !important;
  2804. color: #cd9903 !important;
  2805. }
  2806. .ui.buttons:not(.vertical) > .basic.yellow.button:not(:first-child) {
  2807. margin-left: -1px;
  2808. }
  2809. /* Inverted */
  2810. .ui.inverted.yellow.buttons .button,
  2811. .ui.inverted.yellow.button {
  2812. background-color: transparent;
  2813. box-shadow: 0px 0px 0px 2px #FFE21F inset !important;
  2814. color: #FFE21F;
  2815. }
  2816. .ui.inverted.yellow.buttons .button:hover,
  2817. .ui.inverted.yellow.button:hover,
  2818. .ui.inverted.yellow.buttons .button:focus,
  2819. .ui.inverted.yellow.button:focus,
  2820. .ui.inverted.yellow.buttons .button.active,
  2821. .ui.inverted.yellow.button.active,
  2822. .ui.inverted.yellow.buttons .button:active,
  2823. .ui.inverted.yellow.button:active {
  2824. box-shadow: none !important;
  2825. color: rgba(0, 0, 0, 0.6);
  2826. }
  2827. .ui.inverted.yellow.buttons .button:hover,
  2828. .ui.inverted.yellow.button:hover {
  2829. background-color: #ffdf05;
  2830. }
  2831. .ui.inverted.yellow.buttons .button:focus,
  2832. .ui.inverted.yellow.button:focus {
  2833. background-color: #f5d500;
  2834. }
  2835. .ui.inverted.yellow.buttons .active.button,
  2836. .ui.inverted.yellow.active.button {
  2837. background-color: #ffdf05;
  2838. }
  2839. .ui.inverted.yellow.buttons .button:active,
  2840. .ui.inverted.yellow.button:active {
  2841. background-color: #ebcd00;
  2842. }
  2843. /* Inverted Basic */
  2844. .ui.inverted.yellow.basic.buttons .button,
  2845. .ui.inverted.yellow.buttons .basic.button,
  2846. .ui.inverted.yellow.basic.button {
  2847. background-color: transparent;
  2848. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  2849. color: #FFFFFF !important;
  2850. }
  2851. .ui.inverted.yellow.basic.buttons .button:hover,
  2852. .ui.inverted.yellow.buttons .basic.button:hover,
  2853. .ui.inverted.yellow.basic.button:hover {
  2854. box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
  2855. color: #FFE21F !important;
  2856. }
  2857. .ui.inverted.yellow.basic.buttons .button:focus,
  2858. .ui.inverted.yellow.basic.buttons .button:focus,
  2859. .ui.inverted.yellow.basic.button:focus {
  2860. box-shadow: 0px 0px 0px 2px #f5d500 inset !important;
  2861. color: #FFE21F !important;
  2862. }
  2863. .ui.inverted.yellow.basic.buttons .active.button,
  2864. .ui.inverted.yellow.buttons .basic.active.button,
  2865. .ui.inverted.yellow.basic.active.button {
  2866. box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
  2867. color: #FFE21F !important;
  2868. }
  2869. .ui.inverted.yellow.basic.buttons .button:active,
  2870. .ui.inverted.yellow.buttons .basic.button:active,
  2871. .ui.inverted.yellow.basic.button:active {
  2872. box-shadow: 0px 0px 0px 2px #ebcd00 inset !important;
  2873. color: #FFE21F !important;
  2874. }
  2875. /*-------------------
  2876. Primary
  2877. --------------------*/
  2878. /*--- Standard ---*/
  2879. .ui.primary.buttons .button,
  2880. .ui.primary.button {
  2881. background-color: #2185D0;
  2882. color: #FFFFFF;
  2883. text-shadow: none;
  2884. background-image: none;
  2885. }
  2886. .ui.primary.button {
  2887. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  2888. }
  2889. .ui.primary.buttons .button:hover,
  2890. .ui.primary.button:hover {
  2891. background-color: #1678c2;
  2892. color: #FFFFFF;
  2893. text-shadow: none;
  2894. }
  2895. .ui.primary.buttons .button:focus,
  2896. .ui.primary.button:focus {
  2897. background-color: #0d71bb;
  2898. color: #FFFFFF;
  2899. text-shadow: none;
  2900. }
  2901. .ui.primary.buttons .button:active,
  2902. .ui.primary.button:active {
  2903. background-color: #1a69a4;
  2904. color: #FFFFFF;
  2905. text-shadow: none;
  2906. }
  2907. .ui.primary.buttons .active.button,
  2908. .ui.primary.buttons .active.button:active,
  2909. .ui.primary.active.button,
  2910. .ui.primary.button .active.button:active {
  2911. background-color: #1279c6;
  2912. color: #FFFFFF;
  2913. text-shadow: none;
  2914. }
  2915. /* Basic */
  2916. .ui.basic.primary.buttons .button,
  2917. .ui.basic.primary.button {
  2918. box-shadow: 0px 0px 0px 1px #2185D0 inset !important;
  2919. color: #2185D0 !important;
  2920. }
  2921. .ui.basic.primary.buttons .button:hover,
  2922. .ui.basic.primary.button:hover {
  2923. background: transparent !important;
  2924. box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
  2925. color: #1678c2 !important;
  2926. }
  2927. .ui.basic.primary.buttons .button:focus,
  2928. .ui.basic.primary.button:focus {
  2929. background: transparent !important;
  2930. box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
  2931. color: #1678c2 !important;
  2932. }
  2933. .ui.basic.primary.buttons .active.button,
  2934. .ui.basic.primary.active.button {
  2935. background: transparent !important;
  2936. box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
  2937. color: #1a69a4 !important;
  2938. }
  2939. .ui.basic.primary.buttons .button:active,
  2940. .ui.basic.primary.button:active {
  2941. box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
  2942. color: #1a69a4 !important;
  2943. }
  2944. .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
  2945. margin-left: -1px;
  2946. }
  2947. /* Inverted */
  2948. .ui.inverted.primary.buttons .button,
  2949. .ui.inverted.primary.button {
  2950. background-color: transparent;
  2951. box-shadow: 0px 0px 0px 2px #54C8FF inset !important;
  2952. color: #54C8FF;
  2953. }
  2954. .ui.inverted.primary.buttons .button:hover,
  2955. .ui.inverted.primary.button:hover,
  2956. .ui.inverted.primary.buttons .button:focus,
  2957. .ui.inverted.primary.button:focus,
  2958. .ui.inverted.primary.buttons .button.active,
  2959. .ui.inverted.primary.button.active,
  2960. .ui.inverted.primary.buttons .button:active,
  2961. .ui.inverted.primary.button:active {
  2962. box-shadow: none !important;
  2963. color: #FFFFFF;
  2964. }
  2965. .ui.inverted.primary.buttons .button:hover,
  2966. .ui.inverted.primary.button:hover {
  2967. background-color: #3ac0ff;
  2968. }
  2969. .ui.inverted.primary.buttons .button:focus,
  2970. .ui.inverted.primary.button:focus {
  2971. background-color: #2bbbff;
  2972. }
  2973. .ui.inverted.primary.buttons .active.button,
  2974. .ui.inverted.primary.active.button {
  2975. background-color: #3ac0ff;
  2976. }
  2977. .ui.inverted.primary.buttons .button:active,
  2978. .ui.inverted.primary.button:active {
  2979. background-color: #21b8ff;
  2980. }
  2981. /* Inverted Basic */
  2982. .ui.inverted.primary.basic.buttons .button,
  2983. .ui.inverted.primary.buttons .basic.button,
  2984. .ui.inverted.primary.basic.button {
  2985. background-color: transparent;
  2986. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  2987. color: #FFFFFF !important;
  2988. }
  2989. .ui.inverted.primary.basic.buttons .button:hover,
  2990. .ui.inverted.primary.buttons .basic.button:hover,
  2991. .ui.inverted.primary.basic.button:hover {
  2992. box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
  2993. color: #54C8FF !important;
  2994. }
  2995. .ui.inverted.primary.basic.buttons .button:focus,
  2996. .ui.inverted.primary.basic.buttons .button:focus,
  2997. .ui.inverted.primary.basic.button:focus {
  2998. box-shadow: 0px 0px 0px 2px #2bbbff inset !important;
  2999. color: #54C8FF !important;
  3000. }
  3001. .ui.inverted.primary.basic.buttons .active.button,
  3002. .ui.inverted.primary.buttons .basic.active.button,
  3003. .ui.inverted.primary.basic.active.button {
  3004. box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
  3005. color: #54C8FF !important;
  3006. }
  3007. .ui.inverted.primary.basic.buttons .button:active,
  3008. .ui.inverted.primary.buttons .basic.button:active,
  3009. .ui.inverted.primary.basic.button:active {
  3010. box-shadow: 0px 0px 0px 2px #21b8ff inset !important;
  3011. color: #54C8FF !important;
  3012. }
  3013. /*-------------------
  3014. Secondary
  3015. --------------------*/
  3016. /* Standard */
  3017. .ui.secondary.buttons .button,
  3018. .ui.secondary.button {
  3019. background-color: #1B1C1D;
  3020. color: #FFFFFF;
  3021. text-shadow: none;
  3022. background-image: none;
  3023. }
  3024. .ui.secondary.button {
  3025. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  3026. }
  3027. .ui.secondary.buttons .button:hover,
  3028. .ui.secondary.button:hover {
  3029. background-color: #27292a;
  3030. color: #FFFFFF;
  3031. text-shadow: none;
  3032. }
  3033. .ui.secondary.buttons .button:focus,
  3034. .ui.secondary.button:focus {
  3035. background-color: #2e3032;
  3036. color: #FFFFFF;
  3037. text-shadow: none;
  3038. }
  3039. .ui.secondary.buttons .button:active,
  3040. .ui.secondary.button:active {
  3041. background-color: #343637;
  3042. color: #FFFFFF;
  3043. text-shadow: none;
  3044. }
  3045. .ui.secondary.buttons .active.button,
  3046. .ui.secondary.buttons .active.button:active,
  3047. .ui.secondary.active.button,
  3048. .ui.secondary.button .active.button:active {
  3049. background-color: #27292a;
  3050. color: #FFFFFF;
  3051. text-shadow: none;
  3052. }
  3053. /* Basic */
  3054. .ui.basic.secondary.buttons .button,
  3055. .ui.basic.secondary.button {
  3056. box-shadow: 0px 0px 0px 1px #1B1C1D inset !important;
  3057. color: #1B1C1D !important;
  3058. }
  3059. .ui.basic.secondary.buttons .button:hover,
  3060. .ui.basic.secondary.button:hover {
  3061. background: transparent !important;
  3062. box-shadow: 0px 0px 0px 1px #27292a inset !important;
  3063. color: #27292a !important;
  3064. }
  3065. .ui.basic.secondary.buttons .button:focus,
  3066. .ui.basic.secondary.button:focus {
  3067. background: transparent !important;
  3068. box-shadow: 0px 0px 0px 1px #2e3032 inset !important;
  3069. color: #27292a !important;
  3070. }
  3071. .ui.basic.secondary.buttons .active.button,
  3072. .ui.basic.secondary.active.button {
  3073. background: transparent !important;
  3074. box-shadow: 0px 0px 0px 1px #27292a inset !important;
  3075. color: #343637 !important;
  3076. }
  3077. .ui.basic.secondary.buttons .button:active,
  3078. .ui.basic.secondary.button:active {
  3079. box-shadow: 0px 0px 0px 1px #343637 inset !important;
  3080. color: #343637 !important;
  3081. }
  3082. .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
  3083. margin-left: -1px;
  3084. }
  3085. /* Inverted */
  3086. .ui.inverted.secondary.buttons .button,
  3087. .ui.inverted.secondary.button {
  3088. background-color: transparent;
  3089. box-shadow: 0px 0px 0px 2px #545454 inset !important;
  3090. color: #545454;
  3091. }
  3092. .ui.inverted.secondary.buttons .button:hover,
  3093. .ui.inverted.secondary.button:hover,
  3094. .ui.inverted.secondary.buttons .button:focus,
  3095. .ui.inverted.secondary.button:focus,
  3096. .ui.inverted.secondary.buttons .button.active,
  3097. .ui.inverted.secondary.button.active,
  3098. .ui.inverted.secondary.buttons .button:active,
  3099. .ui.inverted.secondary.button:active {
  3100. box-shadow: none !important;
  3101. color: #FFFFFF;
  3102. }
  3103. .ui.inverted.secondary.buttons .button:hover,
  3104. .ui.inverted.secondary.button:hover {
  3105. background-color: #616161;
  3106. }
  3107. .ui.inverted.secondary.buttons .button:focus,
  3108. .ui.inverted.secondary.button:focus {
  3109. background-color: #686868;
  3110. }
  3111. .ui.inverted.secondary.buttons .active.button,
  3112. .ui.inverted.secondary.active.button {
  3113. background-color: #616161;
  3114. }
  3115. .ui.inverted.secondary.buttons .button:active,
  3116. .ui.inverted.secondary.button:active {
  3117. background-color: #6e6e6e;
  3118. }
  3119. /* Inverted Basic */
  3120. .ui.inverted.secondary.basic.buttons .button,
  3121. .ui.inverted.secondary.buttons .basic.button,
  3122. .ui.inverted.secondary.basic.button {
  3123. background-color: transparent;
  3124. box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  3125. color: #FFFFFF !important;
  3126. }
  3127. .ui.inverted.secondary.basic.buttons .button:hover,
  3128. .ui.inverted.secondary.buttons .basic.button:hover,
  3129. .ui.inverted.secondary.basic.button:hover {
  3130. box-shadow: 0px 0px 0px 2px #616161 inset !important;
  3131. color: #545454 !important;
  3132. }
  3133. .ui.inverted.secondary.basic.buttons .button:focus,
  3134. .ui.inverted.secondary.basic.buttons .button:focus,
  3135. .ui.inverted.secondary.basic.button:focus {
  3136. box-shadow: 0px 0px 0px 2px #686868 inset !important;
  3137. color: #545454 !important;
  3138. }
  3139. .ui.inverted.secondary.basic.buttons .active.button,
  3140. .ui.inverted.secondary.buttons .basic.active.button,
  3141. .ui.inverted.secondary.basic.active.button {
  3142. box-shadow: 0px 0px 0px 2px #616161 inset !important;
  3143. color: #545454 !important;
  3144. }
  3145. .ui.inverted.secondary.basic.buttons .button:active,
  3146. .ui.inverted.secondary.buttons .basic.button:active,
  3147. .ui.inverted.secondary.basic.button:active {
  3148. box-shadow: 0px 0px 0px 2px #6e6e6e inset !important;
  3149. color: #545454 !important;
  3150. }
  3151. /*---------------
  3152. Positive
  3153. ----------------*/
  3154. /* Standard */
  3155. .ui.positive.buttons .button,
  3156. .ui.positive.button {
  3157. background-color: #21BA45;
  3158. color: #FFFFFF;
  3159. text-shadow: none;
  3160. background-image: none;
  3161. }
  3162. .ui.positive.button {
  3163. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  3164. }
  3165. .ui.positive.buttons .button:hover,
  3166. .ui.positive.button:hover {
  3167. background-color: #16ab39;
  3168. color: #FFFFFF;
  3169. text-shadow: none;
  3170. }
  3171. .ui.positive.buttons .button:focus,
  3172. .ui.positive.button:focus {
  3173. background-color: #0ea432;
  3174. color: #FFFFFF;
  3175. text-shadow: none;
  3176. }
  3177. .ui.positive.buttons .button:active,
  3178. .ui.positive.button:active {
  3179. background-color: #198f35;
  3180. color: #FFFFFF;
  3181. text-shadow: none;
  3182. }
  3183. .ui.positive.buttons .active.button,
  3184. .ui.positive.buttons .active.button:active,
  3185. .ui.positive.active.button,
  3186. .ui.positive.button .active.button:active {
  3187. background-color: #13ae38;
  3188. color: #FFFFFF;
  3189. text-shadow: none;
  3190. }
  3191. /* Basic */
  3192. .ui.basic.positive.buttons .button,
  3193. .ui.basic.positive.button {
  3194. box-shadow: 0px 0px 0px 1px #21BA45 inset !important;
  3195. color: #21BA45 !important;
  3196. }
  3197. .ui.basic.positive.buttons .button:hover,
  3198. .ui.basic.positive.button:hover {
  3199. background: transparent !important;
  3200. box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
  3201. color: #16ab39 !important;
  3202. }
  3203. .ui.basic.positive.buttons .button:focus,
  3204. .ui.basic.positive.button:focus {
  3205. background: transparent !important;
  3206. box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
  3207. color: #16ab39 !important;
  3208. }
  3209. .ui.basic.positive.buttons .active.button,
  3210. .ui.basic.positive.active.button {
  3211. background: transparent !important;
  3212. box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
  3213. color: #198f35 !important;
  3214. }
  3215. .ui.basic.positive.buttons .button:active,
  3216. .ui.basic.positive.button:active {
  3217. box-shadow: 0px 0px 0px 1px #198f35 inset !important;
  3218. color: #198f35 !important;
  3219. }
  3220. .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
  3221. margin-left: -1px;
  3222. }
  3223. /*---------------
  3224. Negative
  3225. ----------------*/
  3226. /* Standard */
  3227. .ui.negative.buttons .button,
  3228. .ui.negative.button {
  3229. background-color: #DB2828;
  3230. color: #FFFFFF;
  3231. text-shadow: none;
  3232. background-image: none;
  3233. }
  3234. .ui.negative.button {
  3235. box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  3236. }
  3237. .ui.negative.buttons .button:hover,
  3238. .ui.negative.button:hover {
  3239. background-color: #d01919;
  3240. color: #FFFFFF;
  3241. text-shadow: none;
  3242. }
  3243. .ui.negative.buttons .button:focus,
  3244. .ui.negative.button:focus {
  3245. background-color: #ca1010;
  3246. color: #FFFFFF;
  3247. text-shadow: none;
  3248. }
  3249. .ui.negative.buttons .button:active,
  3250. .ui.negative.button:active {
  3251. background-color: #b21e1e;
  3252. color: #FFFFFF;
  3253. text-shadow: none;
  3254. }
  3255. .ui.negative.buttons .active.button,
  3256. .ui.negative.buttons .active.button:active,
  3257. .ui.negative.active.button,
  3258. .ui.negative.button .active.button:active {
  3259. background-color: #d41515;
  3260. color: #FFFFFF;
  3261. text-shadow: none;
  3262. }
  3263. /* Basic */
  3264. .ui.basic.negative.buttons .button,
  3265. .ui.basic.negative.button {
  3266. box-shadow: 0px 0px 0px 1px #DB2828 inset !important;
  3267. color: #DB2828 !important;
  3268. }
  3269. .ui.basic.negative.buttons .button:hover,
  3270. .ui.basic.negative.button:hover {
  3271. background: transparent !important;
  3272. box-shadow: 0px 0px 0px 1px #d01919 inset !important;
  3273. color: #d01919 !important;
  3274. }
  3275. .ui.basic.negative.buttons .button:focus,
  3276. .ui.basic.negative.button:focus {
  3277. background: transparent !important;
  3278. box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
  3279. color: #d01919 !important;
  3280. }
  3281. .ui.basic.negative.buttons .active.button,
  3282. .ui.basic.negative.active.button {
  3283. background: transparent !important;
  3284. box-shadow: 0px 0px 0px 1px #d41515 inset !important;
  3285. color: #b21e1e !important;
  3286. }
  3287. .ui.basic.negative.buttons .button:active,
  3288. .ui.basic.negative.button:active {
  3289. box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
  3290. color: #b21e1e !important;
  3291. }
  3292. .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
  3293. margin-left: -1px;
  3294. }
  3295. /*******************************
  3296. Groups
  3297. *******************************/
  3298. .ui.buttons {
  3299. display: inline-flex;
  3300. flex-direction: row;
  3301. font-size: 0em;
  3302. vertical-align: baseline;
  3303. margin: 0em 0.25em 0em 0em;
  3304. }
  3305. .ui.buttons:not(.basic):not(.inverted) {
  3306. box-shadow: none;
  3307. }
  3308. /* Clearfix */
  3309. .ui.buttons:after {
  3310. content: ".";
  3311. display: block;
  3312. height: 0;
  3313. clear: both;
  3314. visibility: hidden;
  3315. }
  3316. /* Standard Group */
  3317. .ui.buttons .button {
  3318. flex: 1 0 auto;
  3319. margin: 0em;
  3320. border-radius: 0em;
  3321. margin: 0px 0px 0px 0px;
  3322. }
  3323. .ui.buttons > .ui.button:not(.basic):not(.inverted),
  3324. .ui.buttons:not(.basic):not(.inverted) > .button {
  3325. box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  3326. }
  3327. .ui.buttons .button:first-child {
  3328. border-left: none;
  3329. margin-left: 0em;
  3330. border-top-left-radius: 0.28571429rem;
  3331. border-bottom-left-radius: 0.28571429rem;
  3332. }
  3333. .ui.buttons .button:last-child {
  3334. border-top-right-radius: 0.28571429rem;
  3335. border-bottom-right-radius: 0.28571429rem;
  3336. }
  3337. /* Vertical Style */
  3338. .ui.vertical.buttons {
  3339. display: inline-flex;
  3340. flex-direction: column;
  3341. }
  3342. .ui.vertical.buttons .button {
  3343. display: block;
  3344. float: none;
  3345. width: 100%;
  3346. margin: 0px 0px 0px 0px;
  3347. box-shadow: none;
  3348. border-radius: 0em;
  3349. }
  3350. .ui.vertical.buttons .button:first-child {
  3351. border-top-left-radius: 0.28571429rem;
  3352. border-top-right-radius: 0.28571429rem;
  3353. }
  3354. .ui.vertical.buttons .button:last-child {
  3355. margin-bottom: 0px;
  3356. border-bottom-left-radius: 0.28571429rem;
  3357. border-bottom-right-radius: 0.28571429rem;
  3358. }
  3359. .ui.vertical.buttons .button:only-child {
  3360. border-radius: 0.28571429rem;
  3361. }
  3362. /*******************************
  3363. Theme Overrides
  3364. *******************************/
  3365. /*******************************
  3366. Site Overrides
  3367. *******************************/