fomantic-ui-sass 2.6.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (165) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +27 -0
  3. data/.rspec +1 -0
  4. data/.travis.yml +5 -0
  5. data/CHANGELOG.md +370 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +22 -0
  8. data/README.md +177 -0
  9. data/Rakefile +8 -0
  10. data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
  11. data/app/assets/fonts/semantic-ui/brand-icons.svg +1008 -0
  12. data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
  13. data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
  14. data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
  15. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  16. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  17. data/app/assets/fonts/semantic-ui/icons.svg +1518 -0
  18. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  19. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  20. data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
  21. data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
  22. data/app/assets/fonts/semantic-ui/outline-icons.svg +366 -0
  23. data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
  24. data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
  25. data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
  26. data/app/assets/images/semantic-ui/flags.png +0 -0
  27. data/app/assets/javascripts/semantic-ui.js +27 -0
  28. data/app/assets/javascripts/semantic-ui/accordion.js +613 -0
  29. data/app/assets/javascripts/semantic-ui/api.js +1167 -0
  30. data/app/assets/javascripts/semantic-ui/calendar.js +1476 -0
  31. data/app/assets/javascripts/semantic-ui/checkbox.js +828 -0
  32. data/app/assets/javascripts/semantic-ui/colorize.js +280 -0
  33. data/app/assets/javascripts/semantic-ui/dimmer.js +735 -0
  34. data/app/assets/javascripts/semantic-ui/dropdown.js +4030 -0
  35. data/app/assets/javascripts/semantic-ui/embed.js +706 -0
  36. data/app/assets/javascripts/semantic-ui/form.js +1707 -0
  37. data/app/assets/javascripts/semantic-ui/modal.js +1090 -0
  38. data/app/assets/javascripts/semantic-ui/nag.js +507 -0
  39. data/app/assets/javascripts/semantic-ui/popup.js +1532 -0
  40. data/app/assets/javascripts/semantic-ui/progress.js +923 -0
  41. data/app/assets/javascripts/semantic-ui/range.js +278 -0
  42. data/app/assets/javascripts/semantic-ui/rating.js +511 -0
  43. data/app/assets/javascripts/semantic-ui/search.js +1515 -0
  44. data/app/assets/javascripts/semantic-ui/shape.js +921 -0
  45. data/app/assets/javascripts/semantic-ui/sidebar.js +1033 -0
  46. data/app/assets/javascripts/semantic-ui/site.js +490 -0
  47. data/app/assets/javascripts/semantic-ui/state.js +708 -0
  48. data/app/assets/javascripts/semantic-ui/sticky.js +959 -0
  49. data/app/assets/javascripts/semantic-ui/tab.js +952 -0
  50. data/app/assets/javascripts/semantic-ui/toast.js +592 -0
  51. data/app/assets/javascripts/semantic-ui/transition.js +1106 -0
  52. data/app/assets/javascripts/semantic-ui/video.js +532 -0
  53. data/app/assets/javascripts/semantic-ui/visibility.js +1311 -0
  54. data/app/assets/javascripts/semantic-ui/visit.js +525 -0
  55. data/app/assets/stylesheets/semantic-ui.scss +5 -0
  56. data/app/assets/stylesheets/semantic-ui/collections/_all.scss +6 -0
  57. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +124 -0
  58. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +1158 -0
  59. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +2093 -0
  60. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +2193 -0
  61. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +606 -0
  62. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1117 -0
  63. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +16 -0
  64. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +4530 -0
  65. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +145 -0
  66. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +259 -0
  67. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1036 -0
  68. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +762 -0
  69. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +6330 -0
  70. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +310 -0
  71. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +519 -0
  72. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1395 -0
  73. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +959 -0
  74. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +458 -0
  75. data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +242 -0
  76. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +152 -0
  77. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +295 -0
  78. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +884 -0
  79. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +675 -0
  80. data/app/assets/stylesheets/semantic-ui/globals/_all.scss +3 -0
  81. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +485 -0
  82. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +206 -0
  83. data/app/assets/stylesheets/semantic-ui/globals/_variables.scss +4 -0
  84. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +247 -0
  85. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +20 -0
  86. data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +165 -0
  87. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +718 -0
  88. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +464 -0
  89. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1745 -0
  90. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +165 -0
  91. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +646 -0
  92. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +148 -0
  93. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +789 -0
  94. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +523 -0
  95. data/app/assets/stylesheets/semantic-ui/modules/_range.scss +192 -0
  96. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +263 -0
  97. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +445 -0
  98. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +154 -0
  99. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +626 -0
  100. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +78 -0
  101. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +92 -0
  102. data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +291 -0
  103. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +2059 -0
  104. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +125 -0
  105. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +275 -0
  106. data/app/assets/stylesheets/semantic-ui/views/_all.scss +6 -0
  107. data/app/assets/stylesheets/semantic-ui/views/_card.scss +1124 -0
  108. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +296 -0
  109. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +314 -0
  110. data/app/assets/stylesheets/semantic-ui/views/_item.scss +555 -0
  111. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +583 -0
  112. data/app/helpers/semantic_breadcrumbs_helper.rb +10 -0
  113. data/app/helpers/semantic_flash_helper.rb +22 -0
  114. data/app/helpers/semantic_icon_helper.rb +8 -0
  115. data/app/views/semantic/_breadcrumbs.html.erb +12 -0
  116. data/fomantic-ui-sass.gemspec +31 -0
  117. data/lib/fomantic-ui-sass.rb +62 -0
  118. data/lib/fomantic/ui/sass/breadcrumbs.rb +41 -0
  119. data/lib/fomantic/ui/sass/engine.rb +23 -0
  120. data/lib/fomantic/ui/sass/version.rb +8 -0
  121. data/spec/dummy/README.rdoc +28 -0
  122. data/spec/dummy/Rakefile +6 -0
  123. data/spec/dummy/app/assets/images/.keep +0 -0
  124. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  125. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  126. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  127. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  128. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  129. data/spec/dummy/app/mailers/.keep +0 -0
  130. data/spec/dummy/app/models/.keep +0 -0
  131. data/spec/dummy/app/models/concerns/.keep +0 -0
  132. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  133. data/spec/dummy/bin/bundle +3 -0
  134. data/spec/dummy/bin/rails +4 -0
  135. data/spec/dummy/bin/rake +4 -0
  136. data/spec/dummy/config.ru +4 -0
  137. data/spec/dummy/config/application.rb +28 -0
  138. data/spec/dummy/config/boot.rb +5 -0
  139. data/spec/dummy/config/environment.rb +5 -0
  140. data/spec/dummy/config/environments/development.rb +29 -0
  141. data/spec/dummy/config/environments/production.rb +80 -0
  142. data/spec/dummy/config/environments/test.rb +36 -0
  143. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  144. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  145. data/spec/dummy/config/initializers/inflections.rb +16 -0
  146. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  147. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  148. data/spec/dummy/config/initializers/session_store.rb +3 -0
  149. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  150. data/spec/dummy/config/locales/en.yml +23 -0
  151. data/spec/dummy/config/routes.rb +2 -0
  152. data/spec/dummy/lib/assets/.keep +0 -0
  153. data/spec/dummy/log/.keep +0 -0
  154. data/spec/dummy/public/404.html +58 -0
  155. data/spec/dummy/public/422.html +58 -0
  156. data/spec/dummy/public/500.html +57 -0
  157. data/spec/dummy/public/favicon.ico +0 -0
  158. data/spec/helpers/semantic_breadcrumbs_helper_spec.rb +38 -0
  159. data/spec/helpers/semantic_flash_helper_spec.rb +36 -0
  160. data/spec/helpers/semantic_icon_helper_spec.rb +48 -0
  161. data/spec/spec_helper.rb +17 -0
  162. data/tasks/converter.rb +216 -0
  163. data/templates/project/manifest.rb +29 -0
  164. data/templates/project/styles.scss +1 -0
  165. metadata +390 -0
@@ -0,0 +1,16 @@
1
+ @import 'button';
2
+ @import 'container';
3
+ @import 'divider';
4
+ @import 'flag';
5
+ @import 'header';
6
+ @import 'icon';
7
+ @import 'image';
8
+ @import 'input';
9
+ @import 'label';
10
+ @import 'list';
11
+ @import 'loader';
12
+ @import 'placeholder';
13
+ @import 'rail';
14
+ @import 'reveal';
15
+ @import 'segment';
16
+ @import 'step';
@@ -0,0 +1,4530 @@
1
+ /*!
2
+ * # Semantic UI 2.6.4 - 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
+
12
+ /*******************************
13
+ Button
14
+ *******************************/
15
+
16
+ .ui.button {
17
+ cursor: pointer;
18
+ display: inline-block;
19
+ min-height: 1em;
20
+ outline: none;
21
+ border: none;
22
+ vertical-align: baseline;
23
+ background: #E0E1E2 none;
24
+ color: rgba(0, 0, 0, 0.6);
25
+ font-family: $font-family;
26
+ margin: 0em 0.25em 0em 0em;
27
+ padding: 0.78571429em 1.5em 0.78571429em;
28
+ text-transform: none;
29
+ text-shadow: none;
30
+ font-weight: bold;
31
+ line-height: 1em;
32
+ font-style: normal;
33
+ text-align: center;
34
+ text-decoration: none;
35
+ border-radius: 0.28571429rem;
36
+ -webkit-box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
37
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
38
+ -webkit-user-select: none;
39
+ -moz-user-select: none;
40
+ -ms-user-select: none;
41
+ user-select: none;
42
+ -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
43
+ transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
44
+ transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
45
+ transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
46
+ will-change: '';
47
+ -webkit-tap-highlight-color: transparent;
48
+ }
49
+
50
+
51
+ /*******************************
52
+ States
53
+ *******************************/
54
+
55
+
56
+ /*--------------
57
+ Hover
58
+ ---------------*/
59
+
60
+ .ui.button:hover {
61
+ background-color: #CACBCD;
62
+ background-image: none;
63
+ -webkit-box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
64
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
65
+ color: rgba(0, 0, 0, 0.8);
66
+ }
67
+ .ui.button:hover .icon {
68
+ opacity: 0.85;
69
+ }
70
+
71
+ /*--------------
72
+ Focus
73
+ ---------------*/
74
+
75
+ .ui.button:focus {
76
+ background-color: #CACBCD;
77
+ color: rgba(0, 0, 0, 0.8);
78
+ background-image: '' !important;
79
+ -webkit-box-shadow: '' !important;
80
+ box-shadow: '' !important;
81
+ }
82
+ .ui.button:focus .icon {
83
+ opacity: 0.85;
84
+ }
85
+
86
+ /*--------------
87
+ Down
88
+ ---------------*/
89
+
90
+ .ui.button:active,
91
+ .ui.active.button:active {
92
+ background-color: #BABBBC;
93
+ background-image: '';
94
+ color: rgba(0, 0, 0, 0.9);
95
+ -webkit-box-shadow: 0px 0px 0px 1px transparent inset, none;
96
+ box-shadow: 0px 0px 0px 1px transparent inset, none;
97
+ }
98
+
99
+ /*--------------
100
+ Active
101
+ ---------------*/
102
+
103
+ .ui.active.button {
104
+ background-color: #C0C1C2;
105
+ background-image: none;
106
+ -webkit-box-shadow: 0px 0px 0px 1px transparent inset;
107
+ box-shadow: 0px 0px 0px 1px transparent inset;
108
+ color: rgba(0, 0, 0, 0.95);
109
+ }
110
+ .ui.active.button:hover {
111
+ background-color: #C0C1C2;
112
+ background-image: none;
113
+ color: rgba(0, 0, 0, 0.95);
114
+ }
115
+ .ui.active.button:active {
116
+ background-color: #C0C1C2;
117
+ background-image: none;
118
+ }
119
+
120
+ /*--------------
121
+ Loading
122
+ ---------------*/
123
+
124
+
125
+ /* Specificity hack */
126
+ .ui.loading.loading.loading.loading.loading.loading.button {
127
+ position: relative;
128
+ cursor: default;
129
+ text-shadow: none !important;
130
+ color: transparent !important;
131
+ opacity: 1;
132
+ pointer-events: auto;
133
+ -webkit-transition: all 0s linear, opacity 0.1s ease;
134
+ transition: all 0s linear, opacity 0.1s ease;
135
+ }
136
+ .ui.loading.button:before {
137
+ position: absolute;
138
+ content: '';
139
+ top: 50%;
140
+ left: 50%;
141
+ margin: -0.64285714em 0em 0em -0.64285714em;
142
+ width: 1.28571429em;
143
+ height: 1.28571429em;
144
+ border-radius: 500rem;
145
+ border: 0.2em solid rgba(0, 0, 0, 0.15);
146
+ }
147
+ .ui.loading.button:after {
148
+ position: absolute;
149
+ content: '';
150
+ top: 50%;
151
+ left: 50%;
152
+ margin: -0.64285714em 0em 0em -0.64285714em;
153
+ width: 1.28571429em;
154
+ height: 1.28571429em;
155
+ -webkit-animation: button-spin 0.6s linear;
156
+ animation: button-spin 0.6s linear;
157
+ -webkit-animation-iteration-count: infinite;
158
+ animation-iteration-count: infinite;
159
+ border-radius: 500rem;
160
+ border-color: #FFFFFF transparent transparent;
161
+ border-style: solid;
162
+ border-width: 0.2em;
163
+ -webkit-box-shadow: 0px 0px 0px 1px transparent;
164
+ box-shadow: 0px 0px 0px 1px transparent;
165
+ }
166
+ .ui.labeled.icon.loading.button .icon {
167
+ background-color: transparent;
168
+ -webkit-box-shadow: none;
169
+ box-shadow: none;
170
+ }
171
+ @-webkit-keyframes button-spin {
172
+ from {
173
+ -webkit-transform: rotate(0deg);
174
+ transform: rotate(0deg);
175
+ }
176
+ to {
177
+ -webkit-transform: rotate(360deg);
178
+ transform: rotate(360deg);
179
+ }
180
+ }
181
+ @keyframes button-spin {
182
+ from {
183
+ -webkit-transform: rotate(0deg);
184
+ transform: rotate(0deg);
185
+ }
186
+ to {
187
+ -webkit-transform: rotate(360deg);
188
+ transform: rotate(360deg);
189
+ }
190
+ }
191
+ .ui.basic.loading.button:not(.inverted):before {
192
+ border-color: rgba(0, 0, 0, 0.1);
193
+ }
194
+ .ui.basic.loading.button:not(.inverted):after {
195
+ border-top-color: #767676;
196
+ }
197
+
198
+ /*-------------------
199
+ Disabled
200
+ --------------------*/
201
+
202
+ .ui.buttons .disabled.button,
203
+ .ui.disabled.button,
204
+ .ui.button:disabled,
205
+ .ui.disabled.button:hover,
206
+ .ui.disabled.active.button {
207
+ cursor: default;
208
+ opacity: 0.45 !important;
209
+ background-image: none !important;
210
+ -webkit-box-shadow: none !important;
211
+ box-shadow: none !important;
212
+ pointer-events: none !important;
213
+ }
214
+
215
+ /* Basic Group With Disabled */
216
+ .ui.basic.buttons .ui.disabled.button {
217
+ border-color: rgba(34, 36, 38, 0.5);
218
+ }
219
+
220
+
221
+ /*******************************
222
+ Types
223
+ *******************************/
224
+
225
+
226
+ /*-------------------
227
+ Animated
228
+ --------------------*/
229
+
230
+ .ui.animated.button {
231
+ position: relative;
232
+ overflow: hidden;
233
+ padding-right: 0em !important;
234
+ vertical-align: middle;
235
+ z-index: 1;
236
+ }
237
+ .ui.animated.button .content {
238
+ will-change: transform, opacity;
239
+ }
240
+ .ui.animated.button .visible.content {
241
+ position: relative;
242
+ margin-right: 1.5em;
243
+ }
244
+ .ui.animated.button .hidden.content {
245
+ position: absolute;
246
+ width: 100%;
247
+ }
248
+
249
+ /* Horizontal */
250
+ .ui.animated.button .visible.content,
251
+ .ui.animated.button .hidden.content {
252
+ -webkit-transition: right 0.3s ease 0s;
253
+ transition: right 0.3s ease 0s;
254
+ }
255
+ .ui.animated.button .visible.content {
256
+ left: auto;
257
+ right: 0%;
258
+ }
259
+ .ui.animated.button .hidden.content {
260
+ top: 50%;
261
+ left: auto;
262
+ right: -100%;
263
+ margin-top: -0.5em;
264
+ }
265
+ .ui.animated.button:focus .visible.content,
266
+ .ui.animated.button:hover .visible.content {
267
+ left: auto;
268
+ right: 200%;
269
+ }
270
+ .ui.animated.button:focus .hidden.content,
271
+ .ui.animated.button:hover .hidden.content {
272
+ left: auto;
273
+ right: 0%;
274
+ }
275
+
276
+ /* Vertical */
277
+ .ui.vertical.animated.button .visible.content,
278
+ .ui.vertical.animated.button .hidden.content {
279
+ -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
280
+ transition: top 0.3s ease, -webkit-transform 0.3s ease;
281
+ transition: top 0.3s ease, transform 0.3s ease;
282
+ transition: top 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
283
+ }
284
+ .ui.vertical.animated.button .visible.content {
285
+ -webkit-transform: translateY(0%);
286
+ transform: translateY(0%);
287
+ right: auto;
288
+ }
289
+ .ui.vertical.animated.button .hidden.content {
290
+ top: -50%;
291
+ left: 0%;
292
+ right: auto;
293
+ }
294
+ .ui.vertical.animated.button:focus .visible.content,
295
+ .ui.vertical.animated.button:hover .visible.content {
296
+ -webkit-transform: translateY(200%);
297
+ transform: translateY(200%);
298
+ right: auto;
299
+ }
300
+ .ui.vertical.animated.button:focus .hidden.content,
301
+ .ui.vertical.animated.button:hover .hidden.content {
302
+ top: 50%;
303
+ right: auto;
304
+ }
305
+
306
+ /* Fade */
307
+ .ui.fade.animated.button .visible.content,
308
+ .ui.fade.animated.button .hidden.content {
309
+ -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
310
+ transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
311
+ transition: opacity 0.3s ease, transform 0.3s ease;
312
+ transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
313
+ }
314
+ .ui.fade.animated.button .visible.content {
315
+ left: auto;
316
+ right: auto;
317
+ opacity: 1;
318
+ -webkit-transform: scale(1);
319
+ transform: scale(1);
320
+ }
321
+ .ui.fade.animated.button .hidden.content {
322
+ opacity: 0;
323
+ left: 0%;
324
+ right: auto;
325
+ -webkit-transform: scale(1.5);
326
+ transform: scale(1.5);
327
+ }
328
+ .ui.fade.animated.button:focus .visible.content,
329
+ .ui.fade.animated.button:hover .visible.content {
330
+ left: auto;
331
+ right: auto;
332
+ opacity: 0;
333
+ -webkit-transform: scale(0.75);
334
+ transform: scale(0.75);
335
+ }
336
+ .ui.fade.animated.button:focus .hidden.content,
337
+ .ui.fade.animated.button:hover .hidden.content {
338
+ left: 0%;
339
+ right: auto;
340
+ opacity: 1;
341
+ -webkit-transform: scale(1);
342
+ transform: scale(1);
343
+ }
344
+
345
+ /*-------------------
346
+ Inverted
347
+ --------------------*/
348
+
349
+ .ui.inverted.button {
350
+ -webkit-box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
351
+ box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
352
+ background: transparent none;
353
+ color: #FFFFFF;
354
+ text-shadow: none !important;
355
+ }
356
+
357
+ /* Group */
358
+ .ui.inverted.buttons .button {
359
+ margin: 0px 0px 0px -2px;
360
+ }
361
+ .ui.inverted.buttons .button:first-child {
362
+ margin-left: 0em;
363
+ }
364
+ .ui.inverted.vertical.buttons .button {
365
+ margin: 0px 0px -2px 0px;
366
+ }
367
+ .ui.inverted.vertical.buttons .button:first-child {
368
+ margin-top: 0em;
369
+ }
370
+
371
+ /* States */
372
+
373
+ /* Hover */
374
+ .ui.inverted.button:hover {
375
+ background: #FFFFFF;
376
+ -webkit-box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
377
+ box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
378
+ color: rgba(0, 0, 0, 0.8);
379
+ }
380
+
381
+ /* Active / Focus */
382
+ .ui.inverted.button:focus,
383
+ .ui.inverted.button.active {
384
+ background: #FFFFFF;
385
+ -webkit-box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
386
+ box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
387
+ color: rgba(0, 0, 0, 0.8);
388
+ }
389
+
390
+ /* Active Focus */
391
+ .ui.inverted.button.active:focus {
392
+ background: #DCDDDE;
393
+ -webkit-box-shadow: 0px 0px 0px 2px #DCDDDE inset !important;
394
+ box-shadow: 0px 0px 0px 2px #DCDDDE inset !important;
395
+ color: rgba(0, 0, 0, 0.8);
396
+ }
397
+
398
+ /*-------------------
399
+ Labeled Button
400
+ --------------------*/
401
+
402
+ .ui.labeled.button:not(.icon) {
403
+ display: -webkit-inline-box;
404
+ display: -ms-inline-flexbox;
405
+ display: inline-flex;
406
+ -webkit-box-orient: horizontal;
407
+ -webkit-box-direction: normal;
408
+ -ms-flex-direction: row;
409
+ flex-direction: row;
410
+ background: none !important;
411
+ padding: 0px !important;
412
+ border: none !important;
413
+ -webkit-box-shadow: none !important;
414
+ box-shadow: none !important;
415
+ }
416
+ .ui.labeled.button > .button {
417
+ margin: 0px;
418
+ }
419
+ .ui.labeled.button > .label {
420
+ display: -webkit-box;
421
+ display: -ms-flexbox;
422
+ display: flex;
423
+ -webkit-box-align: center;
424
+ -ms-flex-align: center;
425
+ align-items: center;
426
+ margin: 0px 0px 0px -1px !important;
427
+ font-size: 1em;
428
+ padding: '';
429
+ border-color: rgba(34, 36, 38, 0.15);
430
+ }
431
+
432
+ /* Tag */
433
+ .ui.labeled.button > .tag.label:before {
434
+ width: 1.85em;
435
+ height: 1.85em;
436
+ }
437
+
438
+ /* Right */
439
+ .ui.labeled.button:not([class*="left labeled"]) > .button {
440
+ border-top-right-radius: 0px;
441
+ border-bottom-right-radius: 0px;
442
+ }
443
+ .ui.labeled.button:not([class*="left labeled"]) > .label {
444
+ border-top-left-radius: 0px;
445
+ border-bottom-left-radius: 0px;
446
+ }
447
+
448
+ /* Left Side */
449
+ .ui[class*="left labeled"].button > .button {
450
+ border-top-left-radius: 0px;
451
+ border-bottom-left-radius: 0px;
452
+ }
453
+ .ui[class*="left labeled"].button > .label {
454
+ border-top-right-radius: 0px;
455
+ border-bottom-right-radius: 0px;
456
+ }
457
+
458
+ /*-------------------
459
+ Social
460
+ --------------------*/
461
+
462
+
463
+ /* Facebook */
464
+ .ui.facebook.button {
465
+ background-color: #3B5998;
466
+ color: #FFFFFF;
467
+ text-shadow: none;
468
+ background-image: none;
469
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
470
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
471
+ }
472
+ .ui.facebook.button:hover {
473
+ background-color: #304d8a;
474
+ color: #FFFFFF;
475
+ text-shadow: none;
476
+ }
477
+ .ui.facebook.button:active {
478
+ background-color: #2d4373;
479
+ color: #FFFFFF;
480
+ text-shadow: none;
481
+ }
482
+
483
+ /* Twitter */
484
+ .ui.twitter.button {
485
+ background-color: #1DA1F2;
486
+ color: #FFFFFF;
487
+ text-shadow: none;
488
+ background-image: none;
489
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
490
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
491
+ }
492
+ .ui.twitter.button:hover {
493
+ background-color: #0298f3;
494
+ color: #FFFFFF;
495
+ text-shadow: none;
496
+ }
497
+ .ui.twitter.button:active {
498
+ background-color: #0c85d0;
499
+ color: #FFFFFF;
500
+ text-shadow: none;
501
+ }
502
+
503
+ /* Google Plus */
504
+ .ui.google.plus.button {
505
+ background-color: #DD4B39;
506
+ color: #FFFFFF;
507
+ text-shadow: none;
508
+ background-image: none;
509
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
510
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
511
+ }
512
+ .ui.google.plus.button:hover {
513
+ background-color: #e0321c;
514
+ color: #FFFFFF;
515
+ text-shadow: none;
516
+ }
517
+ .ui.google.plus.button:active {
518
+ background-color: #c23321;
519
+ color: #FFFFFF;
520
+ text-shadow: none;
521
+ }
522
+
523
+ /* Linked In */
524
+ .ui.linkedin.button {
525
+ background-color: #0077B5;
526
+ color: #FFFFFF;
527
+ text-shadow: none;
528
+ }
529
+ .ui.linkedin.button:hover {
530
+ background-color: #00669c;
531
+ color: #FFFFFF;
532
+ text-shadow: none;
533
+ }
534
+ .ui.linkedin.button:active {
535
+ background-color: #005582;
536
+ color: #FFFFFF;
537
+ text-shadow: none;
538
+ }
539
+
540
+ /* YouTube */
541
+ .ui.youtube.button {
542
+ background-color: #FF0000;
543
+ color: #FFFFFF;
544
+ text-shadow: none;
545
+ background-image: none;
546
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
547
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
548
+ }
549
+ .ui.youtube.button:hover {
550
+ background-color: #e60000;
551
+ color: #FFFFFF;
552
+ text-shadow: none;
553
+ }
554
+ .ui.youtube.button:active {
555
+ background-color: #cc0000;
556
+ color: #FFFFFF;
557
+ text-shadow: none;
558
+ }
559
+
560
+ /* Instagram */
561
+ .ui.instagram.button {
562
+ background-color: #49769C;
563
+ color: #FFFFFF;
564
+ text-shadow: none;
565
+ background-image: none;
566
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
567
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
568
+ }
569
+ .ui.instagram.button:hover {
570
+ background-color: #3d698e;
571
+ color: #FFFFFF;
572
+ text-shadow: none;
573
+ }
574
+ .ui.instagram.button:active {
575
+ background-color: #395c79;
576
+ color: #FFFFFF;
577
+ text-shadow: none;
578
+ }
579
+
580
+ /* Pinterest */
581
+ .ui.pinterest.button {
582
+ background-color: #BD081C;
583
+ color: #FFFFFF;
584
+ text-shadow: none;
585
+ background-image: none;
586
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
587
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
588
+ }
589
+ .ui.pinterest.button:hover {
590
+ background-color: #ac0013;
591
+ color: #FFFFFF;
592
+ text-shadow: none;
593
+ }
594
+ .ui.pinterest.button:active {
595
+ background-color: #8c0615;
596
+ color: #FFFFFF;
597
+ text-shadow: none;
598
+ }
599
+
600
+ /* VK */
601
+ .ui.vk.button {
602
+ background-color: #45668E;
603
+ color: #FFFFFF;
604
+ background-image: none;
605
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
606
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
607
+ }
608
+ .ui.vk.button:hover {
609
+ background-color: #395980;
610
+ color: #FFFFFF;
611
+ }
612
+ .ui.vk.button:active {
613
+ background-color: #344d6c;
614
+ color: #FFFFFF;
615
+ }
616
+
617
+ /* WhatsApp */
618
+ .ui.whatsapp.button {
619
+ background-color: #25D366;
620
+ color: #FFFFFF;
621
+ background-image: none;
622
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
623
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
624
+ }
625
+ .ui.whatsapp.button:hover {
626
+ background-color: #19c55a;
627
+ color: #FFFFFF;
628
+ }
629
+ .ui.whatsapp.button:active {
630
+ background-color: #1da851;
631
+ color: #FFFFFF;
632
+ }
633
+
634
+ /* Telegram */
635
+ .ui.telegram.button {
636
+ background-color: #0088CC;
637
+ color: #FFFFFF;
638
+ background-image: none;
639
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
640
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
641
+ }
642
+ .ui.telegram.button:hover {
643
+ background-color: #0077b3;
644
+ color: #FFFFFF;
645
+ }
646
+ .ui.telegram.button:active {
647
+ background-color: #006699;
648
+ color: #FFFFFF;
649
+ }
650
+
651
+ /*--------------
652
+ Icon
653
+ ---------------*/
654
+
655
+ .ui.button > .icon:not(.button) {
656
+ height: 0.85714286em;
657
+ opacity: 0.8;
658
+ margin: 0em 0.42857143em 0em -0.21428571em;
659
+ -webkit-transition: opacity 0.1s ease;
660
+ transition: opacity 0.1s ease;
661
+ vertical-align: '';
662
+ color: '';
663
+ }
664
+ .ui.button:not(.icon) > .icon:not(.button):not(.dropdown),
665
+ .ui.button:not(.icon) > .icons:not(.button):not(.dropdown) {
666
+ margin: 0em 0.42857143em 0em -0.21428571em;
667
+ }
668
+ .ui.button:not(.icon) > .right.icon:not(.button):not(.dropdown) {
669
+ margin: 0em -0.21428571em 0em 0.42857143em;
670
+ }
671
+
672
+
673
+ /*******************************
674
+ Variations
675
+ *******************************/
676
+
677
+
678
+ /*-------------------
679
+ Floated
680
+ --------------------*/
681
+
682
+ .ui[class*="left floated"].buttons,
683
+ .ui[class*="left floated"].button {
684
+ float: left;
685
+ margin-left: 0em;
686
+ margin-right: 0.25em;
687
+ }
688
+ .ui[class*="right floated"].buttons,
689
+ .ui[class*="right floated"].button {
690
+ float: right;
691
+ margin-right: 0em;
692
+ margin-left: 0.25em;
693
+ }
694
+
695
+ /*-------------------
696
+ Compact
697
+ --------------------*/
698
+
699
+ .ui.compact.buttons .button,
700
+ .ui.compact.button {
701
+ padding: 0.58928571em 1.125em 0.58928571em;
702
+ }
703
+ .ui.compact.icon.buttons .button,
704
+ .ui.compact.icon.button {
705
+ padding: 0.58928571em 0.58928571em 0.58928571em;
706
+ }
707
+ .ui.compact.labeled.icon.buttons .button,
708
+ .ui.compact.labeled.icon.button {
709
+ padding: 0.58928571em 3.69642857em 0.58928571em;
710
+ }
711
+
712
+ /*-------------------
713
+ Sizes
714
+ --------------------*/
715
+
716
+ .ui.mini.buttons .button,
717
+ .ui.mini.buttons .or,
718
+ .ui.mini.button {
719
+ font-size: 0.78571429rem;
720
+ }
721
+ .ui.tiny.buttons .button,
722
+ .ui.tiny.buttons .or,
723
+ .ui.tiny.button {
724
+ font-size: 0.85714286rem;
725
+ }
726
+ .ui.small.buttons .button,
727
+ .ui.small.buttons .or,
728
+ .ui.small.button {
729
+ font-size: 0.92857143rem;
730
+ }
731
+ .ui.buttons .button,
732
+ .ui.buttons .or,
733
+ .ui.button {
734
+ font-size: 1rem;
735
+ }
736
+ .ui.large.buttons .button,
737
+ .ui.large.buttons .or,
738
+ .ui.large.button {
739
+ font-size: 1.14285714rem;
740
+ }
741
+ .ui.big.buttons .button,
742
+ .ui.big.buttons .or,
743
+ .ui.big.button {
744
+ font-size: 1.28571429rem;
745
+ }
746
+ .ui.huge.buttons .button,
747
+ .ui.huge.buttons .or,
748
+ .ui.huge.button {
749
+ font-size: 1.42857143rem;
750
+ }
751
+ .ui.massive.buttons .button,
752
+ .ui.massive.buttons .or,
753
+ .ui.massive.button {
754
+ font-size: 1.71428571rem;
755
+ }
756
+
757
+ /* Dropdown coupled buttons sizes */
758
+ .ui.mini.buttons .dropdown {
759
+ font-size: 0.78571429rem;
760
+ }
761
+ .ui.mini.buttons .dropdown .menu > .item {
762
+ font-size: 0.78571429rem;
763
+ }
764
+ .ui.tiny.buttons .dropdown {
765
+ font-size: 0.85714286rem;
766
+ }
767
+ .ui.tiny.buttons .dropdown .menu > .item {
768
+ font-size: 0.85714286rem;
769
+ }
770
+ .ui.small.buttons .dropdown {
771
+ font-size: 0.92857143rem;
772
+ }
773
+ .ui.small.buttons .dropdown .menu > .item {
774
+ font-size: 0.92857143rem;
775
+ }
776
+ .ui.large.buttons .dropdown {
777
+ font-size: 1.14285714rem;
778
+ }
779
+ .ui.large.buttons .dropdown .menu > .item {
780
+ font-size: 1.14285714rem;
781
+ }
782
+ .ui.big.buttons .dropdown {
783
+ font-size: 1.28571429rem;
784
+ }
785
+ .ui.big.buttons .dropdown .menu > .item {
786
+ font-size: 1.28571429rem;
787
+ }
788
+ .ui.huge.buttons .dropdown {
789
+ font-size: 1.42857143rem;
790
+ }
791
+ .ui.huge.buttons .dropdown .menu > .item {
792
+ font-size: 1.42857143rem;
793
+ }
794
+ .ui.massive.buttons .dropdown {
795
+ font-size: 1.71428571rem;
796
+ }
797
+ .ui.massive.buttons .dropdown .menu > .item {
798
+ font-size: 1.71428571rem;
799
+ }
800
+
801
+ /*--------------
802
+ Icon Only
803
+ ---------------*/
804
+
805
+ .ui.icon.buttons .button,
806
+ .ui.icon.button {
807
+ padding: 0.78571429em 0.78571429em 0.78571429em;
808
+ }
809
+ .ui.icon.buttons .button > .icon,
810
+ .ui.icon.button > .icon {
811
+ opacity: 0.9;
812
+ margin: 0em !important;
813
+ vertical-align: top;
814
+ }
815
+
816
+ /*-------------------
817
+ Basic
818
+ --------------------*/
819
+
820
+ .ui.basic.buttons .button,
821
+ .ui.basic.button {
822
+ background: transparent none !important;
823
+ color: rgba(0, 0, 0, 0.6) !important;
824
+ font-weight: normal;
825
+ border-radius: 0.28571429rem;
826
+ text-transform: none;
827
+ text-shadow: none !important;
828
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
829
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
830
+ }
831
+ .ui.basic.buttons {
832
+ -webkit-box-shadow: none;
833
+ box-shadow: none;
834
+ border: 1px solid rgba(34, 36, 38, 0.15);
835
+ border-radius: 0.28571429rem;
836
+ }
837
+ .ui.basic.buttons .button {
838
+ border-radius: 0em;
839
+ }
840
+ .ui.basic.buttons .button:hover,
841
+ .ui.basic.button:hover {
842
+ background: #FFFFFF !important;
843
+ color: rgba(0, 0, 0, 0.8) !important;
844
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset;
845
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset;
846
+ }
847
+ .ui.basic.buttons .button:focus,
848
+ .ui.basic.button:focus {
849
+ background: #FFFFFF !important;
850
+ color: rgba(0, 0, 0, 0.8) !important;
851
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset;
852
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset;
853
+ }
854
+ .ui.basic.buttons .button:active,
855
+ .ui.basic.button:active {
856
+ background: #F8F8F8 !important;
857
+ color: rgba(0, 0, 0, 0.9) !important;
858
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset;
859
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset;
860
+ }
861
+ .ui.basic.buttons .active.button,
862
+ .ui.basic.active.button {
863
+ background: rgba(0, 0, 0, 0.05) !important;
864
+ -webkit-box-shadow: '' !important;
865
+ box-shadow: '' !important;
866
+ color: rgba(0, 0, 0, 0.95) !important;
867
+ }
868
+ .ui.basic.buttons .active.button:hover,
869
+ .ui.basic.active.button:hover {
870
+ background-color: rgba(0, 0, 0, 0.05);
871
+ }
872
+
873
+ /* Vertical */
874
+ .ui.basic.buttons .button:hover {
875
+ -webkit-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;
876
+ 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;
877
+ }
878
+ .ui.basic.buttons .button:active {
879
+ -webkit-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;
880
+ 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;
881
+ }
882
+ .ui.basic.buttons .active.button {
883
+ -webkit-box-shadow: '' !important;
884
+ box-shadow: '' !important;
885
+ }
886
+
887
+ /* Standard Basic Inverted */
888
+ .ui.basic.inverted.buttons .button,
889
+ .ui.basic.inverted.button {
890
+ background-color: transparent !important;
891
+ color: #F9FAFB !important;
892
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
893
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
894
+ }
895
+ .ui.basic.inverted.buttons .button:hover,
896
+ .ui.basic.inverted.button:hover {
897
+ color: #FFFFFF !important;
898
+ -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset !important;
899
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
900
+ }
901
+ .ui.basic.inverted.buttons .button:focus,
902
+ .ui.basic.inverted.button:focus {
903
+ color: #FFFFFF !important;
904
+ -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset !important;
905
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
906
+ }
907
+ .ui.basic.inverted.buttons .button:active,
908
+ .ui.basic.inverted.button:active {
909
+ background-color: rgba(255, 255, 255, 0.08) !important;
910
+ color: #FFFFFF !important;
911
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important;
912
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important;
913
+ }
914
+ .ui.basic.inverted.buttons .active.button,
915
+ .ui.basic.inverted.active.button {
916
+ background-color: rgba(255, 255, 255, 0.08);
917
+ color: #FFFFFF;
918
+ text-shadow: none;
919
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset;
920
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset;
921
+ }
922
+ .ui.basic.inverted.buttons .active.button:hover,
923
+ .ui.basic.inverted.active.button:hover {
924
+ background-color: rgba(255, 255, 255, 0.15);
925
+ -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset !important;
926
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
927
+ }
928
+
929
+ /* Basic Group */
930
+ .ui.basic.buttons .button {
931
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
932
+ -webkit-box-shadow: none;
933
+ box-shadow: none;
934
+ }
935
+ .ui.basic.vertical.buttons .button {
936
+ border-left: none;
937
+ border-left-width: 0px;
938
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
939
+ }
940
+ .ui.basic.vertical.buttons .button:first-child {
941
+ border-top-width: 0px;
942
+ }
943
+
944
+ /*-------------------
945
+ Tertiary
946
+ --------------------*/
947
+
948
+
949
+ /* Overline Mixin */
950
+ .ui.tertiary.button {
951
+ -webkit-box-shadow: none !important;
952
+ box-shadow: none !important;
953
+ -webkit-transition: color 0.1s ease !important;
954
+ transition: color 0.1s ease !important;
955
+ border-radius: 0;
956
+ margin: 0.28571429em 0.25em 0.28571429em 0 !important;
957
+ padding: 0.5em !important;
958
+ color: rgba(0, 0, 0, 0.6) !important;
959
+ background: none !important;
960
+ }
961
+ .ui.tertiary.button:hover {
962
+ -webkit-box-shadow: none !important;
963
+ box-shadow: none !important;
964
+ -webkit-box-shadow: inset 0 -0.2em 0 #666666 !important;
965
+ box-shadow: inset 0 -0.2em 0 #666666 !important;
966
+ color: #333333 !important;
967
+ background: none !important;
968
+ }
969
+ .ui.tertiary.button:focus {
970
+ -webkit-box-shadow: inset 0 -0.2em 0 #666666 !important;
971
+ box-shadow: inset 0 -0.2em 0 #666666 !important;
972
+ color: #333333 !important;
973
+ background: none !important;
974
+ }
975
+ .ui.tertiary.button:active {
976
+ -webkit-box-shadow: none !important;
977
+ box-shadow: none !important;
978
+ -webkit-box-shadow: inset 0 -0.2em 0 #999999 !important;
979
+ box-shadow: inset 0 -0.2em 0 #999999 !important;
980
+ border-radius: 0.28571429rem 0.28571429rem 0 0;
981
+ color: #666666 !important;
982
+ background: none !important;
983
+ }
984
+
985
+ /*--------------
986
+ Labeled Icon
987
+ ---------------*/
988
+
989
+ .ui.labeled.icon.buttons .button,
990
+ .ui.labeled.icon.button {
991
+ position: relative;
992
+ padding-left: 4.07142857em !important;
993
+ padding-right: 1.5em !important;
994
+ }
995
+
996
+ /* Left Labeled */
997
+ .ui.labeled.icon.buttons > .button > .icon,
998
+ .ui.labeled.icon.button > .icon {
999
+ position: absolute;
1000
+ top: 0em;
1001
+ left: 0em;
1002
+ height: 100%;
1003
+ line-height: 1;
1004
+ border-radius: 0px;
1005
+ border-top-left-radius: inherit;
1006
+ border-bottom-left-radius: inherit;
1007
+ text-align: center;
1008
+ margin: 0em;
1009
+ width: 2.57142857em;
1010
+ background-color: rgba(0, 0, 0, 0.05);
1011
+ color: '';
1012
+ -webkit-box-shadow: -1px 0px 0px 0px transparent inset;
1013
+ box-shadow: -1px 0px 0px 0px transparent inset;
1014
+ }
1015
+
1016
+ /* Right Labeled */
1017
+ .ui[class*="right labeled"].icon.button {
1018
+ padding-right: 4.07142857em !important;
1019
+ padding-left: 1.5em !important;
1020
+ }
1021
+ .ui[class*="right labeled"].icon.button > .icon {
1022
+ left: auto;
1023
+ right: 0em;
1024
+ border-radius: 0px;
1025
+ border-top-right-radius: inherit;
1026
+ border-bottom-right-radius: inherit;
1027
+ -webkit-box-shadow: 1px 0px 0px 0px transparent inset;
1028
+ box-shadow: 1px 0px 0px 0px transparent inset;
1029
+ }
1030
+ .ui.labeled.icon.buttons > .button > .icon:before,
1031
+ .ui.labeled.icon.button > .icon:before,
1032
+ .ui.labeled.icon.buttons > .button > .icon:after,
1033
+ .ui.labeled.icon.button > .icon:after {
1034
+ display: block;
1035
+ position: absolute;
1036
+ width: 100%;
1037
+ top: 50%;
1038
+ text-align: center;
1039
+ -webkit-transform: translateY(-50%);
1040
+ transform: translateY(-50%);
1041
+ }
1042
+ .ui.labeled.icon.buttons .button > .icon {
1043
+ border-radius: 0em;
1044
+ }
1045
+ .ui.labeled.icon.buttons .button:first-child > .icon {
1046
+ border-top-left-radius: 0.28571429rem;
1047
+ border-bottom-left-radius: 0.28571429rem;
1048
+ }
1049
+ .ui.labeled.icon.buttons .button:last-child > .icon {
1050
+ border-top-right-radius: 0.28571429rem;
1051
+ border-bottom-right-radius: 0.28571429rem;
1052
+ }
1053
+ .ui.vertical.labeled.icon.buttons .button:first-child > .icon {
1054
+ border-radius: 0em;
1055
+ border-top-left-radius: 0.28571429rem;
1056
+ }
1057
+ .ui.vertical.labeled.icon.buttons .button:last-child > .icon {
1058
+ border-radius: 0em;
1059
+ border-bottom-left-radius: 0.28571429rem;
1060
+ }
1061
+
1062
+ /* Fluid Labeled */
1063
+ .ui.fluid[class*="left labeled"].icon.button,
1064
+ .ui.fluid[class*="right labeled"].icon.button {
1065
+ padding-left: 1.5em !important;
1066
+ padding-right: 1.5em !important;
1067
+ }
1068
+
1069
+ /*--------------
1070
+ Toggle
1071
+ ---------------*/
1072
+
1073
+
1074
+ /* Toggle (Modifies active state to give affordances) */
1075
+ .ui.toggle.buttons .active.button,
1076
+ .ui.buttons .button.toggle.active,
1077
+ .ui.button.toggle.active {
1078
+ background-color: #21BA45 !important;
1079
+ -webkit-box-shadow: none !important;
1080
+ box-shadow: none !important;
1081
+ text-shadow: none;
1082
+ color: #FFFFFF !important;
1083
+ }
1084
+ .ui.button.toggle.active:hover {
1085
+ background-color: #16ab39 !important;
1086
+ text-shadow: none;
1087
+ color: #FFFFFF !important;
1088
+ }
1089
+
1090
+ /*--------------
1091
+ Circular
1092
+ ---------------*/
1093
+
1094
+ .ui.circular.button {
1095
+ border-radius: 10em;
1096
+ }
1097
+ .ui.circular.button > .icon {
1098
+ width: 1em;
1099
+ vertical-align: baseline;
1100
+ }
1101
+
1102
+ /*-------------------
1103
+ Or Buttons
1104
+ --------------------*/
1105
+
1106
+ .ui.buttons .or {
1107
+ position: relative;
1108
+ width: 0.3em;
1109
+ height: 2.57142857em;
1110
+ z-index: 3;
1111
+ }
1112
+ .ui.buttons .or:before {
1113
+ position: absolute;
1114
+ text-align: center;
1115
+ border-radius: 500rem;
1116
+ content: 'or';
1117
+ top: 50%;
1118
+ left: 50%;
1119
+ background-color: #FFFFFF;
1120
+ text-shadow: none;
1121
+ margin-top: -0.89285714em;
1122
+ margin-left: -0.89285714em;
1123
+ width: 1.78571429em;
1124
+ height: 1.78571429em;
1125
+ line-height: 1.78571429em;
1126
+ color: rgba(0, 0, 0, 0.4);
1127
+ font-style: normal;
1128
+ font-weight: bold;
1129
+ -webkit-box-shadow: 0px 0px 0px 1px transparent inset;
1130
+ box-shadow: 0px 0px 0px 1px transparent inset;
1131
+ }
1132
+ .ui.buttons .or[data-text]:before {
1133
+ content: attr(data-text);
1134
+ }
1135
+
1136
+ /* Fluid Or */
1137
+ .ui.fluid.buttons .or {
1138
+ width: 0em !important;
1139
+ }
1140
+ .ui.fluid.buttons .or:after {
1141
+ display: none;
1142
+ }
1143
+
1144
+ /*-------------------
1145
+ Attached
1146
+ --------------------*/
1147
+
1148
+
1149
+ /* Singular */
1150
+ .ui.attached.button {
1151
+ position: relative;
1152
+ display: block;
1153
+ margin: 0em;
1154
+ border-radius: 0em;
1155
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) !important;
1156
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) !important;
1157
+ }
1158
+
1159
+ /* Top / Bottom */
1160
+ .ui.attached.top.button {
1161
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
1162
+ }
1163
+ .ui.attached.bottom.button {
1164
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
1165
+ }
1166
+
1167
+ /* Left / Right */
1168
+ .ui.left.attached.button {
1169
+ display: inline-block;
1170
+ border-left: none;
1171
+ text-align: right;
1172
+ padding-right: 0.75em;
1173
+ border-radius: 0.28571429rem 0em 0em 0.28571429rem;
1174
+ }
1175
+ .ui.right.attached.button {
1176
+ display: inline-block;
1177
+ text-align: left;
1178
+ padding-left: 0.75em;
1179
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
1180
+ }
1181
+
1182
+ /* Plural */
1183
+ .ui.attached.buttons {
1184
+ position: relative;
1185
+ display: -webkit-box;
1186
+ display: -ms-flexbox;
1187
+ display: flex;
1188
+ border-radius: 0em;
1189
+ width: auto !important;
1190
+ z-index: 2;
1191
+ margin-left: -1px;
1192
+ margin-right: -1px;
1193
+ }
1194
+ .ui.attached.buttons .button {
1195
+ margin: 0em;
1196
+ }
1197
+ .ui.attached.buttons .button:first-child {
1198
+ border-radius: 0em;
1199
+ }
1200
+ .ui.attached.buttons .button:last-child {
1201
+ border-radius: 0em;
1202
+ }
1203
+
1204
+ /* Top / Bottom */
1205
+ .ui[class*="top attached"].buttons {
1206
+ margin-bottom: -1px;
1207
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
1208
+ }
1209
+ .ui[class*="top attached"].buttons .button:first-child {
1210
+ border-radius: 0.28571429rem 0em 0em 0em;
1211
+ }
1212
+ .ui[class*="top attached"].buttons .button:last-child {
1213
+ border-radius: 0em 0.28571429rem 0em 0em;
1214
+ }
1215
+ .ui[class*="bottom attached"].buttons {
1216
+ margin-top: -1px;
1217
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
1218
+ }
1219
+ .ui[class*="bottom attached"].buttons .button:first-child {
1220
+ border-radius: 0em 0em 0em 0.28571429rem;
1221
+ }
1222
+ .ui[class*="bottom attached"].buttons .button:last-child {
1223
+ border-radius: 0em 0em 0.28571429rem 0em;
1224
+ }
1225
+
1226
+ /* Left / Right */
1227
+ .ui[class*="left attached"].buttons {
1228
+ display: -webkit-inline-box;
1229
+ display: -ms-inline-flexbox;
1230
+ display: inline-flex;
1231
+ margin-right: 0em;
1232
+ margin-left: -1px;
1233
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
1234
+ }
1235
+ .ui[class*="left attached"].buttons .button:first-child {
1236
+ margin-left: -1px;
1237
+ border-radius: 0em 0.28571429rem 0em 0em;
1238
+ }
1239
+ .ui[class*="left attached"].buttons .button:last-child {
1240
+ margin-left: -1px;
1241
+ border-radius: 0em 0em 0.28571429rem 0em;
1242
+ }
1243
+ .ui[class*="right attached"].buttons {
1244
+ display: -webkit-inline-box;
1245
+ display: -ms-inline-flexbox;
1246
+ display: inline-flex;
1247
+ margin-left: 0em;
1248
+ margin-right: -1px;
1249
+ border-radius: 0.28571429rem 0em 0em 0.28571429rem;
1250
+ }
1251
+ .ui[class*="right attached"].buttons .button:first-child {
1252
+ margin-left: -1px;
1253
+ border-radius: 0.28571429rem 0em 0em 0em;
1254
+ }
1255
+ .ui[class*="right attached"].buttons .button:last-child {
1256
+ margin-left: -1px;
1257
+ border-radius: 0em 0em 0em 0.28571429rem;
1258
+ }
1259
+
1260
+ /*-------------------
1261
+ Fluid
1262
+ --------------------*/
1263
+
1264
+ .ui.fluid.buttons,
1265
+ .ui.fluid.button {
1266
+ width: 100%;
1267
+ }
1268
+ .ui.fluid.button {
1269
+ display: block;
1270
+ }
1271
+ .ui.two.buttons {
1272
+ width: 100%;
1273
+ }
1274
+ .ui.two.buttons > .button {
1275
+ width: 50%;
1276
+ }
1277
+ .ui.three.buttons {
1278
+ width: 100%;
1279
+ }
1280
+ .ui.three.buttons > .button {
1281
+ width: 33.333%;
1282
+ }
1283
+ .ui.four.buttons {
1284
+ width: 100%;
1285
+ }
1286
+ .ui.four.buttons > .button {
1287
+ width: 25%;
1288
+ }
1289
+ .ui.five.buttons {
1290
+ width: 100%;
1291
+ }
1292
+ .ui.five.buttons > .button {
1293
+ width: 20%;
1294
+ }
1295
+ .ui.six.buttons {
1296
+ width: 100%;
1297
+ }
1298
+ .ui.six.buttons > .button {
1299
+ width: 16.666%;
1300
+ }
1301
+ .ui.seven.buttons {
1302
+ width: 100%;
1303
+ }
1304
+ .ui.seven.buttons > .button {
1305
+ width: 14.285%;
1306
+ }
1307
+ .ui.eight.buttons {
1308
+ width: 100%;
1309
+ }
1310
+ .ui.eight.buttons > .button {
1311
+ width: 12.500%;
1312
+ }
1313
+ .ui.nine.buttons {
1314
+ width: 100%;
1315
+ }
1316
+ .ui.nine.buttons > .button {
1317
+ width: 11.11%;
1318
+ }
1319
+ .ui.ten.buttons {
1320
+ width: 100%;
1321
+ }
1322
+ .ui.ten.buttons > .button {
1323
+ width: 10%;
1324
+ }
1325
+ .ui.eleven.buttons {
1326
+ width: 100%;
1327
+ }
1328
+ .ui.eleven.buttons > .button {
1329
+ width: 9.09%;
1330
+ }
1331
+ .ui.twelve.buttons {
1332
+ width: 100%;
1333
+ }
1334
+ .ui.twelve.buttons > .button {
1335
+ width: 8.3333%;
1336
+ }
1337
+
1338
+ /* Fluid Vertical Buttons */
1339
+ .ui.fluid.vertical.buttons,
1340
+ .ui.fluid.vertical.buttons > .button {
1341
+ display: -webkit-box;
1342
+ display: -ms-flexbox;
1343
+ display: flex;
1344
+ width: auto;
1345
+ }
1346
+ .ui.two.vertical.buttons > .button {
1347
+ height: 50%;
1348
+ }
1349
+ .ui.three.vertical.buttons > .button {
1350
+ height: 33.333%;
1351
+ }
1352
+ .ui.four.vertical.buttons > .button {
1353
+ height: 25%;
1354
+ }
1355
+ .ui.five.vertical.buttons > .button {
1356
+ height: 20%;
1357
+ }
1358
+ .ui.six.vertical.buttons > .button {
1359
+ height: 16.666%;
1360
+ }
1361
+ .ui.seven.vertical.buttons > .button {
1362
+ height: 14.285%;
1363
+ }
1364
+ .ui.eight.vertical.buttons > .button {
1365
+ height: 12.500%;
1366
+ }
1367
+ .ui.nine.vertical.buttons > .button {
1368
+ height: 11.11%;
1369
+ }
1370
+ .ui.ten.vertical.buttons > .button {
1371
+ height: 10%;
1372
+ }
1373
+ .ui.eleven.vertical.buttons > .button {
1374
+ height: 9.09%;
1375
+ }
1376
+ .ui.twelve.vertical.buttons > .button {
1377
+ height: 8.3333%;
1378
+ }
1379
+
1380
+ /*-------------------
1381
+ Colors
1382
+ --------------------*/
1383
+
1384
+
1385
+ /*--- Black ---*/
1386
+
1387
+ .ui.black.buttons .button,
1388
+ .ui.black.button {
1389
+ background-color: #1B1C1D;
1390
+ color: #FFFFFF;
1391
+ text-shadow: none;
1392
+ background-image: none;
1393
+ }
1394
+ .ui.black.button {
1395
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1396
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1397
+ }
1398
+ .ui.black.buttons .button:hover,
1399
+ .ui.black.button:hover {
1400
+ background-color: #27292a;
1401
+ color: #FFFFFF;
1402
+ text-shadow: none;
1403
+ }
1404
+ .ui.black.buttons .button:focus,
1405
+ .ui.black.button:focus {
1406
+ background-color: #2f3032;
1407
+ color: #FFFFFF;
1408
+ text-shadow: none;
1409
+ }
1410
+ .ui.black.buttons .button:active,
1411
+ .ui.black.button:active {
1412
+ background-color: #343637;
1413
+ color: #FFFFFF;
1414
+ text-shadow: none;
1415
+ }
1416
+ .ui.black.buttons .active.button,
1417
+ .ui.black.buttons .active.button:active,
1418
+ .ui.black.active.button,
1419
+ .ui.black.button .active.button:active {
1420
+ background-color: #0f0f10;
1421
+ color: #FFFFFF;
1422
+ text-shadow: none;
1423
+ }
1424
+
1425
+ /* Basic */
1426
+ .ui.basic.black.buttons .button,
1427
+ .ui.basic.black.button {
1428
+ -webkit-box-shadow: 0px 0px 0px 1px #1B1C1D inset !important;
1429
+ box-shadow: 0px 0px 0px 1px #1B1C1D inset !important;
1430
+ color: #1B1C1D !important;
1431
+ }
1432
+ .ui.basic.black.buttons .button:hover,
1433
+ .ui.basic.black.button:hover {
1434
+ background: transparent !important;
1435
+ -webkit-box-shadow: 0px 0px 0px 1px #27292a inset !important;
1436
+ box-shadow: 0px 0px 0px 1px #27292a inset !important;
1437
+ color: #27292a !important;
1438
+ }
1439
+ .ui.basic.black.buttons .button:focus,
1440
+ .ui.basic.black.button:focus {
1441
+ background: transparent !important;
1442
+ -webkit-box-shadow: 0px 0px 0px 1px #2f3032 inset !important;
1443
+ box-shadow: 0px 0px 0px 1px #2f3032 inset !important;
1444
+ color: #27292a !important;
1445
+ }
1446
+ .ui.basic.black.buttons .active.button,
1447
+ .ui.basic.black.active.button {
1448
+ background: transparent !important;
1449
+ -webkit-box-shadow: 0px 0px 0px 1px #0f0f10 inset !important;
1450
+ box-shadow: 0px 0px 0px 1px #0f0f10 inset !important;
1451
+ color: #343637 !important;
1452
+ }
1453
+ .ui.basic.black.buttons .button:active,
1454
+ .ui.basic.black.button:active {
1455
+ -webkit-box-shadow: 0px 0px 0px 1px #343637 inset !important;
1456
+ box-shadow: 0px 0px 0px 1px #343637 inset !important;
1457
+ color: #343637 !important;
1458
+ }
1459
+ .ui.buttons:not(.vertical) > .basic.black.button:not(:first-child) {
1460
+ margin-left: -1px;
1461
+ }
1462
+
1463
+ /* Inverted */
1464
+ .ui.inverted.black.buttons .button,
1465
+ .ui.inverted.black.button {
1466
+ background-color: transparent;
1467
+ -webkit-box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important;
1468
+ box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important;
1469
+ color: #FFFFFF;
1470
+ }
1471
+ .ui.inverted.black.buttons .button:hover,
1472
+ .ui.inverted.black.button:hover,
1473
+ .ui.inverted.black.buttons .button:focus,
1474
+ .ui.inverted.black.button:focus,
1475
+ .ui.inverted.black.buttons .button.active,
1476
+ .ui.inverted.black.button.active,
1477
+ .ui.inverted.black.buttons .button:active,
1478
+ .ui.inverted.black.button:active {
1479
+ -webkit-box-shadow: none !important;
1480
+ box-shadow: none !important;
1481
+ color: #FFFFFF;
1482
+ }
1483
+ .ui.inverted.black.buttons .button:hover,
1484
+ .ui.inverted.black.button:hover {
1485
+ background-color: #000000;
1486
+ }
1487
+ .ui.inverted.black.buttons .button:focus,
1488
+ .ui.inverted.black.button:focus {
1489
+ background-color: #000000;
1490
+ }
1491
+ .ui.inverted.black.buttons .active.button,
1492
+ .ui.inverted.black.active.button {
1493
+ background-color: #000000;
1494
+ }
1495
+ .ui.inverted.black.buttons .button:active,
1496
+ .ui.inverted.black.button:active {
1497
+ background-color: #000000;
1498
+ }
1499
+
1500
+ /* Inverted Basic */
1501
+ .ui.inverted.black.basic.buttons .button,
1502
+ .ui.inverted.black.buttons .basic.button,
1503
+ .ui.inverted.black.basic.button {
1504
+ background-color: transparent;
1505
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1506
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1507
+ color: #FFFFFF !important;
1508
+ }
1509
+ .ui.inverted.black.basic.buttons .button:hover,
1510
+ .ui.inverted.black.buttons .basic.button:hover,
1511
+ .ui.inverted.black.basic.button:hover {
1512
+ -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important;
1513
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1514
+ color: #FFFFFF !important;
1515
+ }
1516
+ .ui.inverted.black.basic.buttons .button:focus,
1517
+ .ui.inverted.black.basic.buttons .button:focus,
1518
+ .ui.inverted.black.basic.button:focus {
1519
+ -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important;
1520
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1521
+ color: #545454 !important;
1522
+ }
1523
+ .ui.inverted.black.basic.buttons .active.button,
1524
+ .ui.inverted.black.buttons .basic.active.button,
1525
+ .ui.inverted.black.basic.active.button {
1526
+ -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important;
1527
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1528
+ color: #FFFFFF !important;
1529
+ }
1530
+ .ui.inverted.black.basic.buttons .button:active,
1531
+ .ui.inverted.black.buttons .basic.button:active,
1532
+ .ui.inverted.black.basic.button:active {
1533
+ -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important;
1534
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1535
+ color: #FFFFFF !important;
1536
+ }
1537
+
1538
+ /* Tertiary */
1539
+ .ui.tertiary.black.buttons .button,
1540
+ .ui.tertiary.black.buttons .tertiary.button,
1541
+ .ui.tertiary.black.button {
1542
+ -webkit-box-shadow: none !important;
1543
+ box-shadow: none !important;
1544
+ color: #1B1C1D !important;
1545
+ }
1546
+ .ui.tertiary.black.buttons .button:hover,
1547
+ .ui.tertiary.black.buttons button:hover,
1548
+ .ui.tertiary.black.button:hover {
1549
+ -webkit-box-shadow: none !important;
1550
+ box-shadow: none !important;
1551
+ -webkit-box-shadow: inset 0 -0.2em 0 #8b8f93 !important;
1552
+ box-shadow: inset 0 -0.2em 0 #8b8f93 !important;
1553
+ color: #585c5f !important;
1554
+ }
1555
+ .ui.tertiary.black.buttons .button:focus,
1556
+ .ui.tertiary.black.buttons .tertiary.button:focus,
1557
+ .ui.tertiary.black.button:focus {
1558
+ -webkit-box-shadow: none !important;
1559
+ box-shadow: none !important;
1560
+ -webkit-box-shadow: inset 0 -0.2em 0 #93969a !important;
1561
+ box-shadow: inset 0 -0.2em 0 #93969a !important;
1562
+ color: #606367 !important;
1563
+ }
1564
+ .ui.tertiary.black.buttons .active.button,
1565
+ .ui.tertiary.black.buttons .tertiary.active.button,
1566
+ .ui.tertiary.black.active.button,
1567
+ .ui.tertiary.black.buttons .button:active,
1568
+ .ui.tertiary.black.buttons .tertiary.button:active,
1569
+ .ui.tertiary.black.button:active {
1570
+ -webkit-box-shadow: none !important;
1571
+ box-shadow: none !important;
1572
+ -webkit-box-shadow: inset 0 -0.2em 0 #404245 !important;
1573
+ box-shadow: inset 0 -0.2em 0 #404245 !important;
1574
+ color: #0f0f10 !important;
1575
+ }
1576
+
1577
+ /*--- Grey ---*/
1578
+
1579
+ .ui.grey.buttons .button,
1580
+ .ui.grey.button {
1581
+ background-color: #767676;
1582
+ color: #FFFFFF;
1583
+ text-shadow: none;
1584
+ background-image: none;
1585
+ }
1586
+ .ui.grey.button {
1587
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1588
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1589
+ }
1590
+ .ui.grey.buttons .button:hover,
1591
+ .ui.grey.button:hover {
1592
+ background-color: #838383;
1593
+ color: #FFFFFF;
1594
+ text-shadow: none;
1595
+ }
1596
+ .ui.grey.buttons .button:focus,
1597
+ .ui.grey.button:focus {
1598
+ background-color: #8a8a8a;
1599
+ color: #FFFFFF;
1600
+ text-shadow: none;
1601
+ }
1602
+ .ui.grey.buttons .button:active,
1603
+ .ui.grey.button:active {
1604
+ background-color: #909090;
1605
+ color: #FFFFFF;
1606
+ text-shadow: none;
1607
+ }
1608
+ .ui.grey.buttons .active.button,
1609
+ .ui.grey.buttons .active.button:active,
1610
+ .ui.grey.active.button,
1611
+ .ui.grey.button .active.button:active {
1612
+ background-color: #696969;
1613
+ color: #FFFFFF;
1614
+ text-shadow: none;
1615
+ }
1616
+
1617
+ /* Basic */
1618
+ .ui.basic.grey.buttons .button,
1619
+ .ui.basic.grey.button {
1620
+ -webkit-box-shadow: 0px 0px 0px 1px #767676 inset !important;
1621
+ box-shadow: 0px 0px 0px 1px #767676 inset !important;
1622
+ color: #767676 !important;
1623
+ }
1624
+ .ui.basic.grey.buttons .button:hover,
1625
+ .ui.basic.grey.button:hover {
1626
+ background: transparent !important;
1627
+ -webkit-box-shadow: 0px 0px 0px 1px #838383 inset !important;
1628
+ box-shadow: 0px 0px 0px 1px #838383 inset !important;
1629
+ color: #838383 !important;
1630
+ }
1631
+ .ui.basic.grey.buttons .button:focus,
1632
+ .ui.basic.grey.button:focus {
1633
+ background: transparent !important;
1634
+ -webkit-box-shadow: 0px 0px 0px 1px #8a8a8a inset !important;
1635
+ box-shadow: 0px 0px 0px 1px #8a8a8a inset !important;
1636
+ color: #838383 !important;
1637
+ }
1638
+ .ui.basic.grey.buttons .active.button,
1639
+ .ui.basic.grey.active.button {
1640
+ background: transparent !important;
1641
+ -webkit-box-shadow: 0px 0px 0px 1px #696969 inset !important;
1642
+ box-shadow: 0px 0px 0px 1px #696969 inset !important;
1643
+ color: #909090 !important;
1644
+ }
1645
+ .ui.basic.grey.buttons .button:active,
1646
+ .ui.basic.grey.button:active {
1647
+ -webkit-box-shadow: 0px 0px 0px 1px #909090 inset !important;
1648
+ box-shadow: 0px 0px 0px 1px #909090 inset !important;
1649
+ color: #909090 !important;
1650
+ }
1651
+ .ui.buttons:not(.vertical) > .basic.grey.button:not(:first-child) {
1652
+ margin-left: -1px;
1653
+ }
1654
+
1655
+ /* Inverted */
1656
+ .ui.inverted.grey.buttons .button,
1657
+ .ui.inverted.grey.button {
1658
+ background-color: transparent;
1659
+ -webkit-box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important;
1660
+ box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important;
1661
+ color: #FFFFFF;
1662
+ }
1663
+ .ui.inverted.grey.buttons .button:hover,
1664
+ .ui.inverted.grey.button:hover,
1665
+ .ui.inverted.grey.buttons .button:focus,
1666
+ .ui.inverted.grey.button:focus,
1667
+ .ui.inverted.grey.buttons .button.active,
1668
+ .ui.inverted.grey.button.active,
1669
+ .ui.inverted.grey.buttons .button:active,
1670
+ .ui.inverted.grey.button:active {
1671
+ -webkit-box-shadow: none !important;
1672
+ box-shadow: none !important;
1673
+ color: rgba(0, 0, 0, 0.6);
1674
+ }
1675
+ .ui.inverted.grey.buttons .button:hover,
1676
+ .ui.inverted.grey.button:hover {
1677
+ background-color: #cfd0d2;
1678
+ }
1679
+ .ui.inverted.grey.buttons .button:focus,
1680
+ .ui.inverted.grey.button:focus {
1681
+ background-color: #c7c9cb;
1682
+ }
1683
+ .ui.inverted.grey.buttons .active.button,
1684
+ .ui.inverted.grey.active.button {
1685
+ background-color: #cfd0d2;
1686
+ }
1687
+ .ui.inverted.grey.buttons .button:active,
1688
+ .ui.inverted.grey.button:active {
1689
+ background-color: #c2c4c5;
1690
+ }
1691
+
1692
+ /* Inverted Basic */
1693
+ .ui.inverted.grey.basic.buttons .button,
1694
+ .ui.inverted.grey.buttons .basic.button,
1695
+ .ui.inverted.grey.basic.button {
1696
+ background-color: transparent;
1697
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1698
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1699
+ color: #FFFFFF !important;
1700
+ }
1701
+ .ui.inverted.grey.basic.buttons .button:hover,
1702
+ .ui.inverted.grey.buttons .basic.button:hover,
1703
+ .ui.inverted.grey.basic.button:hover {
1704
+ -webkit-box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
1705
+ box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
1706
+ color: #FFFFFF !important;
1707
+ }
1708
+ .ui.inverted.grey.basic.buttons .button:focus,
1709
+ .ui.inverted.grey.basic.buttons .button:focus,
1710
+ .ui.inverted.grey.basic.button:focus {
1711
+ -webkit-box-shadow: 0px 0px 0px 2px #c7c9cb inset !important;
1712
+ box-shadow: 0px 0px 0px 2px #c7c9cb inset !important;
1713
+ color: #DCDDDE !important;
1714
+ }
1715
+ .ui.inverted.grey.basic.buttons .active.button,
1716
+ .ui.inverted.grey.buttons .basic.active.button,
1717
+ .ui.inverted.grey.basic.active.button {
1718
+ -webkit-box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
1719
+ box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
1720
+ color: #FFFFFF !important;
1721
+ }
1722
+ .ui.inverted.grey.basic.buttons .button:active,
1723
+ .ui.inverted.grey.buttons .basic.button:active,
1724
+ .ui.inverted.grey.basic.button:active {
1725
+ -webkit-box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important;
1726
+ box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important;
1727
+ color: #FFFFFF !important;
1728
+ }
1729
+
1730
+ /* Tertiary */
1731
+ .ui.tertiary.grey.buttons .button,
1732
+ .ui.tertiary.grey.buttons .tertiary.button,
1733
+ .ui.tertiary.grey.button {
1734
+ -webkit-box-shadow: none !important;
1735
+ box-shadow: none !important;
1736
+ color: #767676 !important;
1737
+ }
1738
+ .ui.tertiary.grey.buttons .button:hover,
1739
+ .ui.tertiary.grey.buttons button:hover,
1740
+ .ui.tertiary.grey.button:hover {
1741
+ -webkit-box-shadow: none !important;
1742
+ box-shadow: none !important;
1743
+ -webkit-box-shadow: inset 0 -0.2em 0 #838383 !important;
1744
+ box-shadow: inset 0 -0.2em 0 #838383 !important;
1745
+ color: #838383 !important;
1746
+ }
1747
+ .ui.tertiary.grey.buttons .button:focus,
1748
+ .ui.tertiary.grey.buttons .tertiary.button:focus,
1749
+ .ui.tertiary.grey.button:focus {
1750
+ -webkit-box-shadow: none !important;
1751
+ box-shadow: none !important;
1752
+ -webkit-box-shadow: inset 0 -0.2em 0 #8a8a8a !important;
1753
+ box-shadow: inset 0 -0.2em 0 #8a8a8a !important;
1754
+ color: #8a8a8a !important;
1755
+ }
1756
+ .ui.tertiary.grey.buttons .active.button,
1757
+ .ui.tertiary.grey.buttons .tertiary.active.button,
1758
+ .ui.tertiary.grey.active.button,
1759
+ .ui.tertiary.grey.buttons .button:active,
1760
+ .ui.tertiary.grey.buttons .tertiary.button:active,
1761
+ .ui.tertiary.grey.button:active {
1762
+ -webkit-box-shadow: none !important;
1763
+ box-shadow: none !important;
1764
+ -webkit-box-shadow: inset 0 -0.2em 0 #7e5454 !important;
1765
+ box-shadow: inset 0 -0.2em 0 #7e5454 !important;
1766
+ color: #696969 !important;
1767
+ }
1768
+
1769
+ /*--- Brown ---*/
1770
+
1771
+ .ui.brown.buttons .button,
1772
+ .ui.brown.button {
1773
+ background-color: #A5673F;
1774
+ color: #FFFFFF;
1775
+ text-shadow: none;
1776
+ background-image: none;
1777
+ }
1778
+ .ui.brown.button {
1779
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1780
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1781
+ }
1782
+ .ui.brown.buttons .button:hover,
1783
+ .ui.brown.button:hover {
1784
+ background-color: #975b33;
1785
+ color: #FFFFFF;
1786
+ text-shadow: none;
1787
+ }
1788
+ .ui.brown.buttons .button:focus,
1789
+ .ui.brown.button:focus {
1790
+ background-color: #90532b;
1791
+ color: #FFFFFF;
1792
+ text-shadow: none;
1793
+ }
1794
+ .ui.brown.buttons .button:active,
1795
+ .ui.brown.button:active {
1796
+ background-color: #805031;
1797
+ color: #FFFFFF;
1798
+ text-shadow: none;
1799
+ }
1800
+ .ui.brown.buttons .active.button,
1801
+ .ui.brown.buttons .active.button:active,
1802
+ .ui.brown.active.button,
1803
+ .ui.brown.button .active.button:active {
1804
+ background-color: #995a31;
1805
+ color: #FFFFFF;
1806
+ text-shadow: none;
1807
+ }
1808
+
1809
+ /* Basic */
1810
+ .ui.basic.brown.buttons .button,
1811
+ .ui.basic.brown.button {
1812
+ -webkit-box-shadow: 0px 0px 0px 1px #A5673F inset !important;
1813
+ box-shadow: 0px 0px 0px 1px #A5673F inset !important;
1814
+ color: #A5673F !important;
1815
+ }
1816
+ .ui.basic.brown.buttons .button:hover,
1817
+ .ui.basic.brown.button:hover {
1818
+ background: transparent !important;
1819
+ -webkit-box-shadow: 0px 0px 0px 1px #975b33 inset !important;
1820
+ box-shadow: 0px 0px 0px 1px #975b33 inset !important;
1821
+ color: #975b33 !important;
1822
+ }
1823
+ .ui.basic.brown.buttons .button:focus,
1824
+ .ui.basic.brown.button:focus {
1825
+ background: transparent !important;
1826
+ -webkit-box-shadow: 0px 0px 0px 1px #90532b inset !important;
1827
+ box-shadow: 0px 0px 0px 1px #90532b inset !important;
1828
+ color: #975b33 !important;
1829
+ }
1830
+ .ui.basic.brown.buttons .active.button,
1831
+ .ui.basic.brown.active.button {
1832
+ background: transparent !important;
1833
+ -webkit-box-shadow: 0px 0px 0px 1px #995a31 inset !important;
1834
+ box-shadow: 0px 0px 0px 1px #995a31 inset !important;
1835
+ color: #805031 !important;
1836
+ }
1837
+ .ui.basic.brown.buttons .button:active,
1838
+ .ui.basic.brown.button:active {
1839
+ -webkit-box-shadow: 0px 0px 0px 1px #805031 inset !important;
1840
+ box-shadow: 0px 0px 0px 1px #805031 inset !important;
1841
+ color: #805031 !important;
1842
+ }
1843
+ .ui.buttons:not(.vertical) > .basic.brown.button:not(:first-child) {
1844
+ margin-left: -1px;
1845
+ }
1846
+
1847
+ /* Inverted */
1848
+ .ui.inverted.brown.buttons .button,
1849
+ .ui.inverted.brown.button {
1850
+ background-color: transparent;
1851
+ -webkit-box-shadow: 0px 0px 0px 2px #D67C1C inset !important;
1852
+ box-shadow: 0px 0px 0px 2px #D67C1C inset !important;
1853
+ color: #D67C1C;
1854
+ }
1855
+ .ui.inverted.brown.buttons .button:hover,
1856
+ .ui.inverted.brown.button:hover,
1857
+ .ui.inverted.brown.buttons .button:focus,
1858
+ .ui.inverted.brown.button:focus,
1859
+ .ui.inverted.brown.buttons .button.active,
1860
+ .ui.inverted.brown.button.active,
1861
+ .ui.inverted.brown.buttons .button:active,
1862
+ .ui.inverted.brown.button:active {
1863
+ -webkit-box-shadow: none !important;
1864
+ box-shadow: none !important;
1865
+ color: #FFFFFF;
1866
+ }
1867
+ .ui.inverted.brown.buttons .button:hover,
1868
+ .ui.inverted.brown.button:hover {
1869
+ background-color: #c86f11;
1870
+ }
1871
+ .ui.inverted.brown.buttons .button:focus,
1872
+ .ui.inverted.brown.button:focus {
1873
+ background-color: #c16808;
1874
+ }
1875
+ .ui.inverted.brown.buttons .active.button,
1876
+ .ui.inverted.brown.active.button {
1877
+ background-color: #cc6f0d;
1878
+ }
1879
+ .ui.inverted.brown.buttons .button:active,
1880
+ .ui.inverted.brown.button:active {
1881
+ background-color: #a96216;
1882
+ }
1883
+
1884
+ /* Inverted Basic */
1885
+ .ui.inverted.brown.basic.buttons .button,
1886
+ .ui.inverted.brown.buttons .basic.button,
1887
+ .ui.inverted.brown.basic.button {
1888
+ background-color: transparent;
1889
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1890
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1891
+ color: #FFFFFF !important;
1892
+ }
1893
+ .ui.inverted.brown.basic.buttons .button:hover,
1894
+ .ui.inverted.brown.buttons .basic.button:hover,
1895
+ .ui.inverted.brown.basic.button:hover {
1896
+ -webkit-box-shadow: 0px 0px 0px 2px #c86f11 inset !important;
1897
+ box-shadow: 0px 0px 0px 2px #c86f11 inset !important;
1898
+ color: #D67C1C !important;
1899
+ }
1900
+ .ui.inverted.brown.basic.buttons .button:focus,
1901
+ .ui.inverted.brown.basic.buttons .button:focus,
1902
+ .ui.inverted.brown.basic.button:focus {
1903
+ -webkit-box-shadow: 0px 0px 0px 2px #c16808 inset !important;
1904
+ box-shadow: 0px 0px 0px 2px #c16808 inset !important;
1905
+ color: #D67C1C !important;
1906
+ }
1907
+ .ui.inverted.brown.basic.buttons .active.button,
1908
+ .ui.inverted.brown.buttons .basic.active.button,
1909
+ .ui.inverted.brown.basic.active.button {
1910
+ -webkit-box-shadow: 0px 0px 0px 2px #cc6f0d inset !important;
1911
+ box-shadow: 0px 0px 0px 2px #cc6f0d inset !important;
1912
+ color: #D67C1C !important;
1913
+ }
1914
+ .ui.inverted.brown.basic.buttons .button:active,
1915
+ .ui.inverted.brown.buttons .basic.button:active,
1916
+ .ui.inverted.brown.basic.button:active {
1917
+ -webkit-box-shadow: 0px 0px 0px 2px #a96216 inset !important;
1918
+ box-shadow: 0px 0px 0px 2px #a96216 inset !important;
1919
+ color: #D67C1C !important;
1920
+ }
1921
+
1922
+ /* Tertiary */
1923
+ .ui.tertiary.brown.buttons .button,
1924
+ .ui.tertiary.brown.buttons .tertiary.button,
1925
+ .ui.tertiary.brown.button {
1926
+ -webkit-box-shadow: none !important;
1927
+ box-shadow: none !important;
1928
+ color: #A5673F !important;
1929
+ }
1930
+ .ui.tertiary.brown.buttons .button:hover,
1931
+ .ui.tertiary.brown.buttons button:hover,
1932
+ .ui.tertiary.brown.button:hover {
1933
+ -webkit-box-shadow: none !important;
1934
+ box-shadow: none !important;
1935
+ -webkit-box-shadow: inset 0 -0.2em 0 #835f48 !important;
1936
+ box-shadow: inset 0 -0.2em 0 #835f48 !important;
1937
+ color: #835f48 !important;
1938
+ }
1939
+ .ui.tertiary.brown.buttons .button:focus,
1940
+ .ui.tertiary.brown.buttons .tertiary.button:focus,
1941
+ .ui.tertiary.brown.button:focus {
1942
+ -webkit-box-shadow: none !important;
1943
+ box-shadow: none !important;
1944
+ -webkit-box-shadow: inset 0 -0.2em 0 #7d573e !important;
1945
+ box-shadow: inset 0 -0.2em 0 #7d573e !important;
1946
+ color: #7d573e !important;
1947
+ }
1948
+ .ui.tertiary.brown.buttons .active.button,
1949
+ .ui.tertiary.brown.buttons .tertiary.active.button,
1950
+ .ui.tertiary.brown.active.button,
1951
+ .ui.tertiary.brown.buttons .button:active,
1952
+ .ui.tertiary.brown.buttons .tertiary.button:active,
1953
+ .ui.tertiary.brown.button:active {
1954
+ -webkit-box-shadow: none !important;
1955
+ box-shadow: none !important;
1956
+ -webkit-box-shadow: inset 0 -0.2em 0 #ae561d !important;
1957
+ box-shadow: inset 0 -0.2em 0 #ae561d !important;
1958
+ color: #995a31 !important;
1959
+ }
1960
+
1961
+ /*--- Blue ---*/
1962
+
1963
+ .ui.blue.buttons .button,
1964
+ .ui.blue.button {
1965
+ background-color: #2185D0;
1966
+ color: #FFFFFF;
1967
+ text-shadow: none;
1968
+ background-image: none;
1969
+ }
1970
+ .ui.blue.button {
1971
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1972
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1973
+ }
1974
+ .ui.blue.buttons .button:hover,
1975
+ .ui.blue.button:hover {
1976
+ background-color: #1678c2;
1977
+ color: #FFFFFF;
1978
+ text-shadow: none;
1979
+ }
1980
+ .ui.blue.buttons .button:focus,
1981
+ .ui.blue.button:focus {
1982
+ background-color: #0d71bb;
1983
+ color: #FFFFFF;
1984
+ text-shadow: none;
1985
+ }
1986
+ .ui.blue.buttons .button:active,
1987
+ .ui.blue.button:active {
1988
+ background-color: #1a69a4;
1989
+ color: #FFFFFF;
1990
+ text-shadow: none;
1991
+ }
1992
+ .ui.blue.buttons .active.button,
1993
+ .ui.blue.buttons .active.button:active,
1994
+ .ui.blue.active.button,
1995
+ .ui.blue.button .active.button:active {
1996
+ background-color: #1279c6;
1997
+ color: #FFFFFF;
1998
+ text-shadow: none;
1999
+ }
2000
+
2001
+ /* Basic */
2002
+ .ui.basic.blue.buttons .button,
2003
+ .ui.basic.blue.button {
2004
+ -webkit-box-shadow: 0px 0px 0px 1px #2185D0 inset !important;
2005
+ box-shadow: 0px 0px 0px 1px #2185D0 inset !important;
2006
+ color: #2185D0 !important;
2007
+ }
2008
+ .ui.basic.blue.buttons .button:hover,
2009
+ .ui.basic.blue.button:hover {
2010
+ background: transparent !important;
2011
+ -webkit-box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
2012
+ box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
2013
+ color: #1678c2 !important;
2014
+ }
2015
+ .ui.basic.blue.buttons .button:focus,
2016
+ .ui.basic.blue.button:focus {
2017
+ background: transparent !important;
2018
+ -webkit-box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
2019
+ box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
2020
+ color: #1678c2 !important;
2021
+ }
2022
+ .ui.basic.blue.buttons .active.button,
2023
+ .ui.basic.blue.active.button {
2024
+ background: transparent !important;
2025
+ -webkit-box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
2026
+ box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
2027
+ color: #1a69a4 !important;
2028
+ }
2029
+ .ui.basic.blue.buttons .button:active,
2030
+ .ui.basic.blue.button:active {
2031
+ -webkit-box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
2032
+ box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
2033
+ color: #1a69a4 !important;
2034
+ }
2035
+ .ui.buttons:not(.vertical) > .basic.blue.button:not(:first-child) {
2036
+ margin-left: -1px;
2037
+ }
2038
+
2039
+ /* Inverted */
2040
+ .ui.inverted.blue.buttons .button,
2041
+ .ui.inverted.blue.button {
2042
+ background-color: transparent;
2043
+ -webkit-box-shadow: 0px 0px 0px 2px #54C8FF inset !important;
2044
+ box-shadow: 0px 0px 0px 2px #54C8FF inset !important;
2045
+ color: #54C8FF;
2046
+ }
2047
+ .ui.inverted.blue.buttons .button:hover,
2048
+ .ui.inverted.blue.button:hover,
2049
+ .ui.inverted.blue.buttons .button:focus,
2050
+ .ui.inverted.blue.button:focus,
2051
+ .ui.inverted.blue.buttons .button.active,
2052
+ .ui.inverted.blue.button.active,
2053
+ .ui.inverted.blue.buttons .button:active,
2054
+ .ui.inverted.blue.button:active {
2055
+ -webkit-box-shadow: none !important;
2056
+ box-shadow: none !important;
2057
+ color: #FFFFFF;
2058
+ }
2059
+ .ui.inverted.blue.buttons .button:hover,
2060
+ .ui.inverted.blue.button:hover {
2061
+ background-color: #3ac0ff;
2062
+ }
2063
+ .ui.inverted.blue.buttons .button:focus,
2064
+ .ui.inverted.blue.button:focus {
2065
+ background-color: #2bbbff;
2066
+ }
2067
+ .ui.inverted.blue.buttons .active.button,
2068
+ .ui.inverted.blue.active.button {
2069
+ background-color: #3ac0ff;
2070
+ }
2071
+ .ui.inverted.blue.buttons .button:active,
2072
+ .ui.inverted.blue.button:active {
2073
+ background-color: #21b8ff;
2074
+ }
2075
+
2076
+ /* Inverted Basic */
2077
+ .ui.inverted.blue.basic.buttons .button,
2078
+ .ui.inverted.blue.buttons .basic.button,
2079
+ .ui.inverted.blue.basic.button {
2080
+ background-color: transparent;
2081
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2082
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2083
+ color: #FFFFFF !important;
2084
+ }
2085
+ .ui.inverted.blue.basic.buttons .button:hover,
2086
+ .ui.inverted.blue.buttons .basic.button:hover,
2087
+ .ui.inverted.blue.basic.button:hover {
2088
+ -webkit-box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
2089
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
2090
+ color: #54C8FF !important;
2091
+ }
2092
+ .ui.inverted.blue.basic.buttons .button:focus,
2093
+ .ui.inverted.blue.basic.buttons .button:focus,
2094
+ .ui.inverted.blue.basic.button:focus {
2095
+ -webkit-box-shadow: 0px 0px 0px 2px #2bbbff inset !important;
2096
+ box-shadow: 0px 0px 0px 2px #2bbbff inset !important;
2097
+ color: #54C8FF !important;
2098
+ }
2099
+ .ui.inverted.blue.basic.buttons .active.button,
2100
+ .ui.inverted.blue.buttons .basic.active.button,
2101
+ .ui.inverted.blue.basic.active.button {
2102
+ -webkit-box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
2103
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
2104
+ color: #54C8FF !important;
2105
+ }
2106
+ .ui.inverted.blue.basic.buttons .button:active,
2107
+ .ui.inverted.blue.buttons .basic.button:active,
2108
+ .ui.inverted.blue.basic.button:active {
2109
+ -webkit-box-shadow: 0px 0px 0px 2px #21b8ff inset !important;
2110
+ box-shadow: 0px 0px 0px 2px #21b8ff inset !important;
2111
+ color: #54C8FF !important;
2112
+ }
2113
+
2114
+ /* Tertiary */
2115
+ .ui.tertiary.blue.buttons .button,
2116
+ .ui.tertiary.blue.buttons .tertiary.button,
2117
+ .ui.tertiary.blue.button {
2118
+ -webkit-box-shadow: none !important;
2119
+ box-shadow: none !important;
2120
+ color: #2185D0 !important;
2121
+ }
2122
+ .ui.tertiary.blue.buttons .button:hover,
2123
+ .ui.tertiary.blue.buttons button:hover,
2124
+ .ui.tertiary.blue.button:hover {
2125
+ -webkit-box-shadow: none !important;
2126
+ box-shadow: none !important;
2127
+ -webkit-box-shadow: inset 0 -0.2em 0 #2b75ac !important;
2128
+ box-shadow: inset 0 -0.2em 0 #2b75ac !important;
2129
+ color: #2b75ac !important;
2130
+ }
2131
+ .ui.tertiary.blue.buttons .button:focus,
2132
+ .ui.tertiary.blue.buttons .tertiary.button:focus,
2133
+ .ui.tertiary.blue.button:focus {
2134
+ -webkit-box-shadow: none !important;
2135
+ box-shadow: none !important;
2136
+ -webkit-box-shadow: inset 0 -0.2em 0 #216ea7 !important;
2137
+ box-shadow: inset 0 -0.2em 0 #216ea7 !important;
2138
+ color: #216ea7 !important;
2139
+ }
2140
+ .ui.tertiary.blue.buttons .active.button,
2141
+ .ui.tertiary.blue.buttons .tertiary.active.button,
2142
+ .ui.tertiary.blue.active.button,
2143
+ .ui.tertiary.blue.buttons .button:active,
2144
+ .ui.tertiary.blue.buttons .tertiary.button:active,
2145
+ .ui.tertiary.blue.button:active {
2146
+ -webkit-box-shadow: none !important;
2147
+ box-shadow: none !important;
2148
+ -webkit-box-shadow: inset 0 -0.2em 0 #007bd8 !important;
2149
+ box-shadow: inset 0 -0.2em 0 #007bd8 !important;
2150
+ color: #1279c6 !important;
2151
+ }
2152
+
2153
+ /*--- Green ---*/
2154
+
2155
+ .ui.green.buttons .button,
2156
+ .ui.green.button {
2157
+ background-color: #21BA45;
2158
+ color: #FFFFFF;
2159
+ text-shadow: none;
2160
+ background-image: none;
2161
+ }
2162
+ .ui.green.button {
2163
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2164
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2165
+ }
2166
+ .ui.green.buttons .button:hover,
2167
+ .ui.green.button:hover {
2168
+ background-color: #16ab39;
2169
+ color: #FFFFFF;
2170
+ text-shadow: none;
2171
+ }
2172
+ .ui.green.buttons .button:focus,
2173
+ .ui.green.button:focus {
2174
+ background-color: #0ea432;
2175
+ color: #FFFFFF;
2176
+ text-shadow: none;
2177
+ }
2178
+ .ui.green.buttons .button:active,
2179
+ .ui.green.button:active {
2180
+ background-color: #198f35;
2181
+ color: #FFFFFF;
2182
+ text-shadow: none;
2183
+ }
2184
+ .ui.green.buttons .active.button,
2185
+ .ui.green.buttons .active.button:active,
2186
+ .ui.green.active.button,
2187
+ .ui.green.button .active.button:active {
2188
+ background-color: #13ae38;
2189
+ color: #FFFFFF;
2190
+ text-shadow: none;
2191
+ }
2192
+
2193
+ /* Basic */
2194
+ .ui.basic.green.buttons .button,
2195
+ .ui.basic.green.button {
2196
+ -webkit-box-shadow: 0px 0px 0px 1px #21BA45 inset !important;
2197
+ box-shadow: 0px 0px 0px 1px #21BA45 inset !important;
2198
+ color: #21BA45 !important;
2199
+ }
2200
+ .ui.basic.green.buttons .button:hover,
2201
+ .ui.basic.green.button:hover {
2202
+ background: transparent !important;
2203
+ -webkit-box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
2204
+ box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
2205
+ color: #16ab39 !important;
2206
+ }
2207
+ .ui.basic.green.buttons .button:focus,
2208
+ .ui.basic.green.button:focus {
2209
+ background: transparent !important;
2210
+ -webkit-box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
2211
+ box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
2212
+ color: #16ab39 !important;
2213
+ }
2214
+ .ui.basic.green.buttons .active.button,
2215
+ .ui.basic.green.active.button {
2216
+ background: transparent !important;
2217
+ -webkit-box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
2218
+ box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
2219
+ color: #198f35 !important;
2220
+ }
2221
+ .ui.basic.green.buttons .button:active,
2222
+ .ui.basic.green.button:active {
2223
+ -webkit-box-shadow: 0px 0px 0px 1px #198f35 inset !important;
2224
+ box-shadow: 0px 0px 0px 1px #198f35 inset !important;
2225
+ color: #198f35 !important;
2226
+ }
2227
+ .ui.buttons:not(.vertical) > .basic.green.button:not(:first-child) {
2228
+ margin-left: -1px;
2229
+ }
2230
+
2231
+ /* Inverted */
2232
+ .ui.inverted.green.buttons .button,
2233
+ .ui.inverted.green.button {
2234
+ background-color: transparent;
2235
+ -webkit-box-shadow: 0px 0px 0px 2px #2ECC40 inset !important;
2236
+ box-shadow: 0px 0px 0px 2px #2ECC40 inset !important;
2237
+ color: #2ECC40;
2238
+ }
2239
+ .ui.inverted.green.buttons .button:hover,
2240
+ .ui.inverted.green.button:hover,
2241
+ .ui.inverted.green.buttons .button:focus,
2242
+ .ui.inverted.green.button:focus,
2243
+ .ui.inverted.green.buttons .button.active,
2244
+ .ui.inverted.green.button.active,
2245
+ .ui.inverted.green.buttons .button:active,
2246
+ .ui.inverted.green.button:active {
2247
+ -webkit-box-shadow: none !important;
2248
+ box-shadow: none !important;
2249
+ color: #FFFFFF;
2250
+ }
2251
+ .ui.inverted.green.buttons .button:hover,
2252
+ .ui.inverted.green.button:hover {
2253
+ background-color: #22be34;
2254
+ }
2255
+ .ui.inverted.green.buttons .button:focus,
2256
+ .ui.inverted.green.button:focus {
2257
+ background-color: #19b82b;
2258
+ }
2259
+ .ui.inverted.green.buttons .active.button,
2260
+ .ui.inverted.green.active.button {
2261
+ background-color: #1fc231;
2262
+ }
2263
+ .ui.inverted.green.buttons .button:active,
2264
+ .ui.inverted.green.button:active {
2265
+ background-color: #25a233;
2266
+ }
2267
+
2268
+ /* Inverted Basic */
2269
+ .ui.inverted.green.basic.buttons .button,
2270
+ .ui.inverted.green.buttons .basic.button,
2271
+ .ui.inverted.green.basic.button {
2272
+ background-color: transparent;
2273
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2274
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2275
+ color: #FFFFFF !important;
2276
+ }
2277
+ .ui.inverted.green.basic.buttons .button:hover,
2278
+ .ui.inverted.green.buttons .basic.button:hover,
2279
+ .ui.inverted.green.basic.button:hover {
2280
+ -webkit-box-shadow: 0px 0px 0px 2px #22be34 inset !important;
2281
+ box-shadow: 0px 0px 0px 2px #22be34 inset !important;
2282
+ color: #2ECC40 !important;
2283
+ }
2284
+ .ui.inverted.green.basic.buttons .button:focus,
2285
+ .ui.inverted.green.basic.buttons .button:focus,
2286
+ .ui.inverted.green.basic.button:focus {
2287
+ -webkit-box-shadow: 0px 0px 0px 2px #19b82b inset !important;
2288
+ box-shadow: 0px 0px 0px 2px #19b82b inset !important;
2289
+ color: #2ECC40 !important;
2290
+ }
2291
+ .ui.inverted.green.basic.buttons .active.button,
2292
+ .ui.inverted.green.buttons .basic.active.button,
2293
+ .ui.inverted.green.basic.active.button {
2294
+ -webkit-box-shadow: 0px 0px 0px 2px #1fc231 inset !important;
2295
+ box-shadow: 0px 0px 0px 2px #1fc231 inset !important;
2296
+ color: #2ECC40 !important;
2297
+ }
2298
+ .ui.inverted.green.basic.buttons .button:active,
2299
+ .ui.inverted.green.buttons .basic.button:active,
2300
+ .ui.inverted.green.basic.button:active {
2301
+ -webkit-box-shadow: 0px 0px 0px 2px #25a233 inset !important;
2302
+ box-shadow: 0px 0px 0px 2px #25a233 inset !important;
2303
+ color: #2ECC40 !important;
2304
+ }
2305
+
2306
+ /* Tertiary */
2307
+ .ui.tertiary.green.buttons .button,
2308
+ .ui.tertiary.green.buttons .tertiary.button,
2309
+ .ui.tertiary.green.button {
2310
+ -webkit-box-shadow: none !important;
2311
+ box-shadow: none !important;
2312
+ color: #21BA45 !important;
2313
+ }
2314
+ .ui.tertiary.green.buttons .button:hover,
2315
+ .ui.tertiary.green.buttons button:hover,
2316
+ .ui.tertiary.green.button:hover {
2317
+ -webkit-box-shadow: none !important;
2318
+ box-shadow: none !important;
2319
+ -webkit-box-shadow: inset 0 -0.2em 0 #2a9844 !important;
2320
+ box-shadow: inset 0 -0.2em 0 #2a9844 !important;
2321
+ color: #2a9844 !important;
2322
+ }
2323
+ .ui.tertiary.green.buttons .button:focus,
2324
+ .ui.tertiary.green.buttons .tertiary.button:focus,
2325
+ .ui.tertiary.green.button:focus {
2326
+ -webkit-box-shadow: none !important;
2327
+ box-shadow: none !important;
2328
+ -webkit-box-shadow: inset 0 -0.2em 0 #20923b !important;
2329
+ box-shadow: inset 0 -0.2em 0 #20923b !important;
2330
+ color: #20923b !important;
2331
+ }
2332
+ .ui.tertiary.green.buttons .active.button,
2333
+ .ui.tertiary.green.buttons .tertiary.active.button,
2334
+ .ui.tertiary.green.active.button,
2335
+ .ui.tertiary.green.buttons .button:active,
2336
+ .ui.tertiary.green.buttons .tertiary.button:active,
2337
+ .ui.tertiary.green.button:active {
2338
+ -webkit-box-shadow: none !important;
2339
+ box-shadow: none !important;
2340
+ -webkit-box-shadow: inset 0 -0.2em 0 #00c22e !important;
2341
+ box-shadow: inset 0 -0.2em 0 #00c22e !important;
2342
+ color: #13ae38 !important;
2343
+ }
2344
+
2345
+ /*--- Orange ---*/
2346
+
2347
+ .ui.orange.buttons .button,
2348
+ .ui.orange.button {
2349
+ background-color: #F2711C;
2350
+ color: #FFFFFF;
2351
+ text-shadow: none;
2352
+ background-image: none;
2353
+ }
2354
+ .ui.orange.button {
2355
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2356
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2357
+ }
2358
+ .ui.orange.buttons .button:hover,
2359
+ .ui.orange.button:hover {
2360
+ background-color: #f26202;
2361
+ color: #FFFFFF;
2362
+ text-shadow: none;
2363
+ }
2364
+ .ui.orange.buttons .button:focus,
2365
+ .ui.orange.button:focus {
2366
+ background-color: #e55b00;
2367
+ color: #FFFFFF;
2368
+ text-shadow: none;
2369
+ }
2370
+ .ui.orange.buttons .button:active,
2371
+ .ui.orange.button:active {
2372
+ background-color: #cf590c;
2373
+ color: #FFFFFF;
2374
+ text-shadow: none;
2375
+ }
2376
+ .ui.orange.buttons .active.button,
2377
+ .ui.orange.buttons .active.button:active,
2378
+ .ui.orange.active.button,
2379
+ .ui.orange.button .active.button:active {
2380
+ background-color: #f56100;
2381
+ color: #FFFFFF;
2382
+ text-shadow: none;
2383
+ }
2384
+
2385
+ /* Basic */
2386
+ .ui.basic.orange.buttons .button,
2387
+ .ui.basic.orange.button {
2388
+ -webkit-box-shadow: 0px 0px 0px 1px #F2711C inset !important;
2389
+ box-shadow: 0px 0px 0px 1px #F2711C inset !important;
2390
+ color: #F2711C !important;
2391
+ }
2392
+ .ui.basic.orange.buttons .button:hover,
2393
+ .ui.basic.orange.button:hover {
2394
+ background: transparent !important;
2395
+ -webkit-box-shadow: 0px 0px 0px 1px #f26202 inset !important;
2396
+ box-shadow: 0px 0px 0px 1px #f26202 inset !important;
2397
+ color: #f26202 !important;
2398
+ }
2399
+ .ui.basic.orange.buttons .button:focus,
2400
+ .ui.basic.orange.button:focus {
2401
+ background: transparent !important;
2402
+ -webkit-box-shadow: 0px 0px 0px 1px #e55b00 inset !important;
2403
+ box-shadow: 0px 0px 0px 1px #e55b00 inset !important;
2404
+ color: #f26202 !important;
2405
+ }
2406
+ .ui.basic.orange.buttons .active.button,
2407
+ .ui.basic.orange.active.button {
2408
+ background: transparent !important;
2409
+ -webkit-box-shadow: 0px 0px 0px 1px #f56100 inset !important;
2410
+ box-shadow: 0px 0px 0px 1px #f56100 inset !important;
2411
+ color: #cf590c !important;
2412
+ }
2413
+ .ui.basic.orange.buttons .button:active,
2414
+ .ui.basic.orange.button:active {
2415
+ -webkit-box-shadow: 0px 0px 0px 1px #cf590c inset !important;
2416
+ box-shadow: 0px 0px 0px 1px #cf590c inset !important;
2417
+ color: #cf590c !important;
2418
+ }
2419
+ .ui.buttons:not(.vertical) > .basic.orange.button:not(:first-child) {
2420
+ margin-left: -1px;
2421
+ }
2422
+
2423
+ /* Inverted */
2424
+ .ui.inverted.orange.buttons .button,
2425
+ .ui.inverted.orange.button {
2426
+ background-color: transparent;
2427
+ -webkit-box-shadow: 0px 0px 0px 2px #FF851B inset !important;
2428
+ box-shadow: 0px 0px 0px 2px #FF851B inset !important;
2429
+ color: #FF851B;
2430
+ }
2431
+ .ui.inverted.orange.buttons .button:hover,
2432
+ .ui.inverted.orange.button:hover,
2433
+ .ui.inverted.orange.buttons .button:focus,
2434
+ .ui.inverted.orange.button:focus,
2435
+ .ui.inverted.orange.buttons .button.active,
2436
+ .ui.inverted.orange.button.active,
2437
+ .ui.inverted.orange.buttons .button:active,
2438
+ .ui.inverted.orange.button:active {
2439
+ -webkit-box-shadow: none !important;
2440
+ box-shadow: none !important;
2441
+ color: #FFFFFF;
2442
+ }
2443
+ .ui.inverted.orange.buttons .button:hover,
2444
+ .ui.inverted.orange.button:hover {
2445
+ background-color: #ff7701;
2446
+ }
2447
+ .ui.inverted.orange.buttons .button:focus,
2448
+ .ui.inverted.orange.button:focus {
2449
+ background-color: #f17000;
2450
+ }
2451
+ .ui.inverted.orange.buttons .active.button,
2452
+ .ui.inverted.orange.active.button {
2453
+ background-color: #ff7701;
2454
+ }
2455
+ .ui.inverted.orange.buttons .button:active,
2456
+ .ui.inverted.orange.button:active {
2457
+ background-color: #e76b00;
2458
+ }
2459
+
2460
+ /* Inverted Basic */
2461
+ .ui.inverted.orange.basic.buttons .button,
2462
+ .ui.inverted.orange.buttons .basic.button,
2463
+ .ui.inverted.orange.basic.button {
2464
+ background-color: transparent;
2465
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2466
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2467
+ color: #FFFFFF !important;
2468
+ }
2469
+ .ui.inverted.orange.basic.buttons .button:hover,
2470
+ .ui.inverted.orange.buttons .basic.button:hover,
2471
+ .ui.inverted.orange.basic.button:hover {
2472
+ -webkit-box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
2473
+ box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
2474
+ color: #FF851B !important;
2475
+ }
2476
+ .ui.inverted.orange.basic.buttons .button:focus,
2477
+ .ui.inverted.orange.basic.buttons .button:focus,
2478
+ .ui.inverted.orange.basic.button:focus {
2479
+ -webkit-box-shadow: 0px 0px 0px 2px #f17000 inset !important;
2480
+ box-shadow: 0px 0px 0px 2px #f17000 inset !important;
2481
+ color: #FF851B !important;
2482
+ }
2483
+ .ui.inverted.orange.basic.buttons .active.button,
2484
+ .ui.inverted.orange.buttons .basic.active.button,
2485
+ .ui.inverted.orange.basic.active.button {
2486
+ -webkit-box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
2487
+ box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
2488
+ color: #FF851B !important;
2489
+ }
2490
+ .ui.inverted.orange.basic.buttons .button:active,
2491
+ .ui.inverted.orange.buttons .basic.button:active,
2492
+ .ui.inverted.orange.basic.button:active {
2493
+ -webkit-box-shadow: 0px 0px 0px 2px #e76b00 inset !important;
2494
+ box-shadow: 0px 0px 0px 2px #e76b00 inset !important;
2495
+ color: #FF851B !important;
2496
+ }
2497
+
2498
+ /* Tertiary */
2499
+ .ui.tertiary.orange.buttons .button,
2500
+ .ui.tertiary.orange.buttons .tertiary.button,
2501
+ .ui.tertiary.orange.button {
2502
+ -webkit-box-shadow: none !important;
2503
+ box-shadow: none !important;
2504
+ color: #F2711C !important;
2505
+ }
2506
+ .ui.tertiary.orange.buttons .button:hover,
2507
+ .ui.tertiary.orange.buttons button:hover,
2508
+ .ui.tertiary.orange.button:hover {
2509
+ -webkit-box-shadow: none !important;
2510
+ box-shadow: none !important;
2511
+ -webkit-box-shadow: inset 0 -0.2em 0 #da671b !important;
2512
+ box-shadow: inset 0 -0.2em 0 #da671b !important;
2513
+ color: #da671b !important;
2514
+ }
2515
+ .ui.tertiary.orange.buttons .button:focus,
2516
+ .ui.tertiary.orange.buttons .tertiary.button:focus,
2517
+ .ui.tertiary.orange.button:focus {
2518
+ -webkit-box-shadow: none !important;
2519
+ box-shadow: none !important;
2520
+ -webkit-box-shadow: inset 0 -0.2em 0 #ce6017 !important;
2521
+ box-shadow: inset 0 -0.2em 0 #ce6017 !important;
2522
+ color: #ce6017 !important;
2523
+ }
2524
+ .ui.tertiary.orange.buttons .active.button,
2525
+ .ui.tertiary.orange.buttons .tertiary.active.button,
2526
+ .ui.tertiary.orange.active.button,
2527
+ .ui.tertiary.orange.buttons .button:active,
2528
+ .ui.tertiary.orange.buttons .tertiary.button:active,
2529
+ .ui.tertiary.orange.button:active {
2530
+ -webkit-box-shadow: none !important;
2531
+ box-shadow: none !important;
2532
+ -webkit-box-shadow: inset 0 -0.2em 0 #f56100 !important;
2533
+ box-shadow: inset 0 -0.2em 0 #f56100 !important;
2534
+ color: #f56100 !important;
2535
+ }
2536
+
2537
+ /*--- Pink ---*/
2538
+
2539
+ .ui.pink.buttons .button,
2540
+ .ui.pink.button {
2541
+ background-color: #E03997;
2542
+ color: #FFFFFF;
2543
+ text-shadow: none;
2544
+ background-image: none;
2545
+ }
2546
+ .ui.pink.button {
2547
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2548
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2549
+ }
2550
+ .ui.pink.buttons .button:hover,
2551
+ .ui.pink.button:hover {
2552
+ background-color: #e61a8d;
2553
+ color: #FFFFFF;
2554
+ text-shadow: none;
2555
+ }
2556
+ .ui.pink.buttons .button:focus,
2557
+ .ui.pink.button:focus {
2558
+ background-color: #e10f85;
2559
+ color: #FFFFFF;
2560
+ text-shadow: none;
2561
+ }
2562
+ .ui.pink.buttons .button:active,
2563
+ .ui.pink.button:active {
2564
+ background-color: #c71f7e;
2565
+ color: #FFFFFF;
2566
+ text-shadow: none;
2567
+ }
2568
+ .ui.pink.buttons .active.button,
2569
+ .ui.pink.buttons .active.button:active,
2570
+ .ui.pink.active.button,
2571
+ .ui.pink.button .active.button:active {
2572
+ background-color: #ea158d;
2573
+ color: #FFFFFF;
2574
+ text-shadow: none;
2575
+ }
2576
+
2577
+ /* Basic */
2578
+ .ui.basic.pink.buttons .button,
2579
+ .ui.basic.pink.button {
2580
+ -webkit-box-shadow: 0px 0px 0px 1px #E03997 inset !important;
2581
+ box-shadow: 0px 0px 0px 1px #E03997 inset !important;
2582
+ color: #E03997 !important;
2583
+ }
2584
+ .ui.basic.pink.buttons .button:hover,
2585
+ .ui.basic.pink.button:hover {
2586
+ background: transparent !important;
2587
+ -webkit-box-shadow: 0px 0px 0px 1px #e61a8d inset !important;
2588
+ box-shadow: 0px 0px 0px 1px #e61a8d inset !important;
2589
+ color: #e61a8d !important;
2590
+ }
2591
+ .ui.basic.pink.buttons .button:focus,
2592
+ .ui.basic.pink.button:focus {
2593
+ background: transparent !important;
2594
+ -webkit-box-shadow: 0px 0px 0px 1px #e10f85 inset !important;
2595
+ box-shadow: 0px 0px 0px 1px #e10f85 inset !important;
2596
+ color: #e61a8d !important;
2597
+ }
2598
+ .ui.basic.pink.buttons .active.button,
2599
+ .ui.basic.pink.active.button {
2600
+ background: transparent !important;
2601
+ -webkit-box-shadow: 0px 0px 0px 1px #ea158d inset !important;
2602
+ box-shadow: 0px 0px 0px 1px #ea158d inset !important;
2603
+ color: #c71f7e !important;
2604
+ }
2605
+ .ui.basic.pink.buttons .button:active,
2606
+ .ui.basic.pink.button:active {
2607
+ -webkit-box-shadow: 0px 0px 0px 1px #c71f7e inset !important;
2608
+ box-shadow: 0px 0px 0px 1px #c71f7e inset !important;
2609
+ color: #c71f7e !important;
2610
+ }
2611
+ .ui.buttons:not(.vertical) > .basic.pink.button:not(:first-child) {
2612
+ margin-left: -1px;
2613
+ }
2614
+
2615
+ /* Inverted */
2616
+ .ui.inverted.pink.buttons .button,
2617
+ .ui.inverted.pink.button {
2618
+ background-color: transparent;
2619
+ -webkit-box-shadow: 0px 0px 0px 2px #FF8EDF inset !important;
2620
+ box-shadow: 0px 0px 0px 2px #FF8EDF inset !important;
2621
+ color: #FF8EDF;
2622
+ }
2623
+ .ui.inverted.pink.buttons .button:hover,
2624
+ .ui.inverted.pink.button:hover,
2625
+ .ui.inverted.pink.buttons .button:focus,
2626
+ .ui.inverted.pink.button:focus,
2627
+ .ui.inverted.pink.buttons .button.active,
2628
+ .ui.inverted.pink.button.active,
2629
+ .ui.inverted.pink.buttons .button:active,
2630
+ .ui.inverted.pink.button:active {
2631
+ -webkit-box-shadow: none !important;
2632
+ box-shadow: none !important;
2633
+ color: #FFFFFF;
2634
+ }
2635
+ .ui.inverted.pink.buttons .button:hover,
2636
+ .ui.inverted.pink.button:hover {
2637
+ background-color: #ff74d8;
2638
+ }
2639
+ .ui.inverted.pink.buttons .button:focus,
2640
+ .ui.inverted.pink.button:focus {
2641
+ background-color: #ff65d3;
2642
+ }
2643
+ .ui.inverted.pink.buttons .active.button,
2644
+ .ui.inverted.pink.active.button {
2645
+ background-color: #ff74d8;
2646
+ }
2647
+ .ui.inverted.pink.buttons .button:active,
2648
+ .ui.inverted.pink.button:active {
2649
+ background-color: #ff5bd1;
2650
+ }
2651
+
2652
+ /* Inverted Basic */
2653
+ .ui.inverted.pink.basic.buttons .button,
2654
+ .ui.inverted.pink.buttons .basic.button,
2655
+ .ui.inverted.pink.basic.button {
2656
+ background-color: transparent;
2657
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2658
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2659
+ color: #FFFFFF !important;
2660
+ }
2661
+ .ui.inverted.pink.basic.buttons .button:hover,
2662
+ .ui.inverted.pink.buttons .basic.button:hover,
2663
+ .ui.inverted.pink.basic.button:hover {
2664
+ -webkit-box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
2665
+ box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
2666
+ color: #FF8EDF !important;
2667
+ }
2668
+ .ui.inverted.pink.basic.buttons .button:focus,
2669
+ .ui.inverted.pink.basic.buttons .button:focus,
2670
+ .ui.inverted.pink.basic.button:focus {
2671
+ -webkit-box-shadow: 0px 0px 0px 2px #ff65d3 inset !important;
2672
+ box-shadow: 0px 0px 0px 2px #ff65d3 inset !important;
2673
+ color: #FF8EDF !important;
2674
+ }
2675
+ .ui.inverted.pink.basic.buttons .active.button,
2676
+ .ui.inverted.pink.buttons .basic.active.button,
2677
+ .ui.inverted.pink.basic.active.button {
2678
+ -webkit-box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
2679
+ box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
2680
+ color: #FF8EDF !important;
2681
+ }
2682
+ .ui.inverted.pink.basic.buttons .button:active,
2683
+ .ui.inverted.pink.buttons .basic.button:active,
2684
+ .ui.inverted.pink.basic.button:active {
2685
+ -webkit-box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important;
2686
+ box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important;
2687
+ color: #FF8EDF !important;
2688
+ }
2689
+
2690
+ /* Tertiary */
2691
+ .ui.tertiary.pink.buttons .button,
2692
+ .ui.tertiary.pink.buttons .tertiary.button,
2693
+ .ui.tertiary.pink.button {
2694
+ -webkit-box-shadow: none !important;
2695
+ box-shadow: none !important;
2696
+ color: #E03997 !important;
2697
+ }
2698
+ .ui.tertiary.pink.buttons .button:hover,
2699
+ .ui.tertiary.pink.buttons button:hover,
2700
+ .ui.tertiary.pink.button:hover {
2701
+ -webkit-box-shadow: none !important;
2702
+ box-shadow: none !important;
2703
+ -webkit-box-shadow: inset 0 -0.2em 0 #cc3389 !important;
2704
+ box-shadow: inset 0 -0.2em 0 #cc3389 !important;
2705
+ color: #cc3389 !important;
2706
+ }
2707
+ .ui.tertiary.pink.buttons .button:focus,
2708
+ .ui.tertiary.pink.buttons .tertiary.button:focus,
2709
+ .ui.tertiary.pink.button:focus {
2710
+ -webkit-box-shadow: none !important;
2711
+ box-shadow: none !important;
2712
+ -webkit-box-shadow: inset 0 -0.2em 0 #c92782 !important;
2713
+ box-shadow: inset 0 -0.2em 0 #c92782 !important;
2714
+ color: #c92782 !important;
2715
+ }
2716
+ .ui.tertiary.pink.buttons .active.button,
2717
+ .ui.tertiary.pink.buttons .tertiary.active.button,
2718
+ .ui.tertiary.pink.active.button,
2719
+ .ui.tertiary.pink.buttons .button:active,
2720
+ .ui.tertiary.pink.buttons .tertiary.button:active,
2721
+ .ui.tertiary.pink.button:active {
2722
+ -webkit-box-shadow: none !important;
2723
+ box-shadow: none !important;
2724
+ -webkit-box-shadow: inset 0 -0.2em 0 #ff0090 !important;
2725
+ box-shadow: inset 0 -0.2em 0 #ff0090 !important;
2726
+ color: #ea158d !important;
2727
+ }
2728
+
2729
+ /*--- Violet ---*/
2730
+
2731
+ .ui.violet.buttons .button,
2732
+ .ui.violet.button {
2733
+ background-color: #6435C9;
2734
+ color: #FFFFFF;
2735
+ text-shadow: none;
2736
+ background-image: none;
2737
+ }
2738
+ .ui.violet.button {
2739
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2740
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2741
+ }
2742
+ .ui.violet.buttons .button:hover,
2743
+ .ui.violet.button:hover {
2744
+ background-color: #5829bb;
2745
+ color: #FFFFFF;
2746
+ text-shadow: none;
2747
+ }
2748
+ .ui.violet.buttons .button:focus,
2749
+ .ui.violet.button:focus {
2750
+ background-color: #4f20b5;
2751
+ color: #FFFFFF;
2752
+ text-shadow: none;
2753
+ }
2754
+ .ui.violet.buttons .button:active,
2755
+ .ui.violet.button:active {
2756
+ background-color: #502aa1;
2757
+ color: #FFFFFF;
2758
+ text-shadow: none;
2759
+ }
2760
+ .ui.violet.buttons .active.button,
2761
+ .ui.violet.buttons .active.button:active,
2762
+ .ui.violet.active.button,
2763
+ .ui.violet.button .active.button:active {
2764
+ background-color: #5626bf;
2765
+ color: #FFFFFF;
2766
+ text-shadow: none;
2767
+ }
2768
+
2769
+ /* Basic */
2770
+ .ui.basic.violet.buttons .button,
2771
+ .ui.basic.violet.button {
2772
+ -webkit-box-shadow: 0px 0px 0px 1px #6435C9 inset !important;
2773
+ box-shadow: 0px 0px 0px 1px #6435C9 inset !important;
2774
+ color: #6435C9 !important;
2775
+ }
2776
+ .ui.basic.violet.buttons .button:hover,
2777
+ .ui.basic.violet.button:hover {
2778
+ background: transparent !important;
2779
+ -webkit-box-shadow: 0px 0px 0px 1px #5829bb inset !important;
2780
+ box-shadow: 0px 0px 0px 1px #5829bb inset !important;
2781
+ color: #5829bb !important;
2782
+ }
2783
+ .ui.basic.violet.buttons .button:focus,
2784
+ .ui.basic.violet.button:focus {
2785
+ background: transparent !important;
2786
+ -webkit-box-shadow: 0px 0px 0px 1px #4f20b5 inset !important;
2787
+ box-shadow: 0px 0px 0px 1px #4f20b5 inset !important;
2788
+ color: #5829bb !important;
2789
+ }
2790
+ .ui.basic.violet.buttons .active.button,
2791
+ .ui.basic.violet.active.button {
2792
+ background: transparent !important;
2793
+ -webkit-box-shadow: 0px 0px 0px 1px #5626bf inset !important;
2794
+ box-shadow: 0px 0px 0px 1px #5626bf inset !important;
2795
+ color: #502aa1 !important;
2796
+ }
2797
+ .ui.basic.violet.buttons .button:active,
2798
+ .ui.basic.violet.button:active {
2799
+ -webkit-box-shadow: 0px 0px 0px 1px #502aa1 inset !important;
2800
+ box-shadow: 0px 0px 0px 1px #502aa1 inset !important;
2801
+ color: #502aa1 !important;
2802
+ }
2803
+ .ui.buttons:not(.vertical) > .basic.violet.button:not(:first-child) {
2804
+ margin-left: -1px;
2805
+ }
2806
+
2807
+ /* Inverted */
2808
+ .ui.inverted.violet.buttons .button,
2809
+ .ui.inverted.violet.button {
2810
+ background-color: transparent;
2811
+ -webkit-box-shadow: 0px 0px 0px 2px #A291FB inset !important;
2812
+ box-shadow: 0px 0px 0px 2px #A291FB inset !important;
2813
+ color: #A291FB;
2814
+ }
2815
+ .ui.inverted.violet.buttons .button:hover,
2816
+ .ui.inverted.violet.button:hover,
2817
+ .ui.inverted.violet.buttons .button:focus,
2818
+ .ui.inverted.violet.button:focus,
2819
+ .ui.inverted.violet.buttons .button.active,
2820
+ .ui.inverted.violet.button.active,
2821
+ .ui.inverted.violet.buttons .button:active,
2822
+ .ui.inverted.violet.button:active {
2823
+ -webkit-box-shadow: none !important;
2824
+ box-shadow: none !important;
2825
+ color: #FFFFFF;
2826
+ }
2827
+ .ui.inverted.violet.buttons .button:hover,
2828
+ .ui.inverted.violet.button:hover {
2829
+ background-color: #8a73ff;
2830
+ }
2831
+ .ui.inverted.violet.buttons .button:focus,
2832
+ .ui.inverted.violet.button:focus {
2833
+ background-color: #7d64ff;
2834
+ }
2835
+ .ui.inverted.violet.buttons .active.button,
2836
+ .ui.inverted.violet.active.button {
2837
+ background-color: #8a73ff;
2838
+ }
2839
+ .ui.inverted.violet.buttons .button:active,
2840
+ .ui.inverted.violet.button:active {
2841
+ background-color: #7860f9;
2842
+ }
2843
+
2844
+ /* Inverted Basic */
2845
+ .ui.inverted.violet.basic.buttons .button,
2846
+ .ui.inverted.violet.buttons .basic.button,
2847
+ .ui.inverted.violet.basic.button {
2848
+ background-color: transparent;
2849
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2850
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2851
+ color: #FFFFFF !important;
2852
+ }
2853
+ .ui.inverted.violet.basic.buttons .button:hover,
2854
+ .ui.inverted.violet.buttons .basic.button:hover,
2855
+ .ui.inverted.violet.basic.button:hover {
2856
+ -webkit-box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
2857
+ box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
2858
+ color: #A291FB !important;
2859
+ }
2860
+ .ui.inverted.violet.basic.buttons .button:focus,
2861
+ .ui.inverted.violet.basic.buttons .button:focus,
2862
+ .ui.inverted.violet.basic.button:focus {
2863
+ -webkit-box-shadow: 0px 0px 0px 2px #7d64ff inset !important;
2864
+ box-shadow: 0px 0px 0px 2px #7d64ff inset !important;
2865
+ color: #A291FB !important;
2866
+ }
2867
+ .ui.inverted.violet.basic.buttons .active.button,
2868
+ .ui.inverted.violet.buttons .basic.active.button,
2869
+ .ui.inverted.violet.basic.active.button {
2870
+ -webkit-box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
2871
+ box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
2872
+ color: #A291FB !important;
2873
+ }
2874
+ .ui.inverted.violet.basic.buttons .button:active,
2875
+ .ui.inverted.violet.buttons .basic.button:active,
2876
+ .ui.inverted.violet.basic.button:active {
2877
+ -webkit-box-shadow: 0px 0px 0px 2px #7860f9 inset !important;
2878
+ box-shadow: 0px 0px 0px 2px #7860f9 inset !important;
2879
+ color: #A291FB !important;
2880
+ }
2881
+
2882
+ /* Tertiary */
2883
+ .ui.tertiary.violet.buttons .button,
2884
+ .ui.tertiary.violet.buttons .tertiary.button,
2885
+ .ui.tertiary.violet.button {
2886
+ -webkit-box-shadow: none !important;
2887
+ box-shadow: none !important;
2888
+ color: #6435C9 !important;
2889
+ }
2890
+ .ui.tertiary.violet.buttons .button:hover,
2891
+ .ui.tertiary.violet.buttons button:hover,
2892
+ .ui.tertiary.violet.button:hover {
2893
+ -webkit-box-shadow: none !important;
2894
+ box-shadow: none !important;
2895
+ -webkit-box-shadow: inset 0 -0.2em 0 #6040a5 !important;
2896
+ box-shadow: inset 0 -0.2em 0 #6040a5 !important;
2897
+ color: #6040a5 !important;
2898
+ }
2899
+ .ui.tertiary.violet.buttons .button:focus,
2900
+ .ui.tertiary.violet.buttons .tertiary.button:focus,
2901
+ .ui.tertiary.violet.button:focus {
2902
+ -webkit-box-shadow: none !important;
2903
+ box-shadow: none !important;
2904
+ -webkit-box-shadow: inset 0 -0.2em 0 #5735a0 !important;
2905
+ box-shadow: inset 0 -0.2em 0 #5735a0 !important;
2906
+ color: #5735a0 !important;
2907
+ }
2908
+ .ui.tertiary.violet.buttons .active.button,
2909
+ .ui.tertiary.violet.buttons .tertiary.active.button,
2910
+ .ui.tertiary.violet.active.button,
2911
+ .ui.tertiary.violet.buttons .button:active,
2912
+ .ui.tertiary.violet.buttons .tertiary.button:active,
2913
+ .ui.tertiary.violet.button:active {
2914
+ -webkit-box-shadow: none !important;
2915
+ box-shadow: none !important;
2916
+ -webkit-box-shadow: inset 0 -0.2em 0 #4e0fd6 !important;
2917
+ box-shadow: inset 0 -0.2em 0 #4e0fd6 !important;
2918
+ color: #5626bf !important;
2919
+ }
2920
+
2921
+ /*--- Purple ---*/
2922
+
2923
+ .ui.purple.buttons .button,
2924
+ .ui.purple.button {
2925
+ background-color: #A333C8;
2926
+ color: #FFFFFF;
2927
+ text-shadow: none;
2928
+ background-image: none;
2929
+ }
2930
+ .ui.purple.button {
2931
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2932
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2933
+ }
2934
+ .ui.purple.buttons .button:hover,
2935
+ .ui.purple.button:hover {
2936
+ background-color: #9627ba;
2937
+ color: #FFFFFF;
2938
+ text-shadow: none;
2939
+ }
2940
+ .ui.purple.buttons .button:focus,
2941
+ .ui.purple.button:focus {
2942
+ background-color: #8f1eb4;
2943
+ color: #FFFFFF;
2944
+ text-shadow: none;
2945
+ }
2946
+ .ui.purple.buttons .button:active,
2947
+ .ui.purple.button:active {
2948
+ background-color: #82299f;
2949
+ color: #FFFFFF;
2950
+ text-shadow: none;
2951
+ }
2952
+ .ui.purple.buttons .active.button,
2953
+ .ui.purple.buttons .active.button:active,
2954
+ .ui.purple.active.button,
2955
+ .ui.purple.button .active.button:active {
2956
+ background-color: #9724be;
2957
+ color: #FFFFFF;
2958
+ text-shadow: none;
2959
+ }
2960
+
2961
+ /* Basic */
2962
+ .ui.basic.purple.buttons .button,
2963
+ .ui.basic.purple.button {
2964
+ -webkit-box-shadow: 0px 0px 0px 1px #A333C8 inset !important;
2965
+ box-shadow: 0px 0px 0px 1px #A333C8 inset !important;
2966
+ color: #A333C8 !important;
2967
+ }
2968
+ .ui.basic.purple.buttons .button:hover,
2969
+ .ui.basic.purple.button:hover {
2970
+ background: transparent !important;
2971
+ -webkit-box-shadow: 0px 0px 0px 1px #9627ba inset !important;
2972
+ box-shadow: 0px 0px 0px 1px #9627ba inset !important;
2973
+ color: #9627ba !important;
2974
+ }
2975
+ .ui.basic.purple.buttons .button:focus,
2976
+ .ui.basic.purple.button:focus {
2977
+ background: transparent !important;
2978
+ -webkit-box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important;
2979
+ box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important;
2980
+ color: #9627ba !important;
2981
+ }
2982
+ .ui.basic.purple.buttons .active.button,
2983
+ .ui.basic.purple.active.button {
2984
+ background: transparent !important;
2985
+ -webkit-box-shadow: 0px 0px 0px 1px #9724be inset !important;
2986
+ box-shadow: 0px 0px 0px 1px #9724be inset !important;
2987
+ color: #82299f !important;
2988
+ }
2989
+ .ui.basic.purple.buttons .button:active,
2990
+ .ui.basic.purple.button:active {
2991
+ -webkit-box-shadow: 0px 0px 0px 1px #82299f inset !important;
2992
+ box-shadow: 0px 0px 0px 1px #82299f inset !important;
2993
+ color: #82299f !important;
2994
+ }
2995
+ .ui.buttons:not(.vertical) > .basic.purple.button:not(:first-child) {
2996
+ margin-left: -1px;
2997
+ }
2998
+
2999
+ /* Inverted */
3000
+ .ui.inverted.purple.buttons .button,
3001
+ .ui.inverted.purple.button {
3002
+ background-color: transparent;
3003
+ -webkit-box-shadow: 0px 0px 0px 2px #DC73FF inset !important;
3004
+ box-shadow: 0px 0px 0px 2px #DC73FF inset !important;
3005
+ color: #DC73FF;
3006
+ }
3007
+ .ui.inverted.purple.buttons .button:hover,
3008
+ .ui.inverted.purple.button:hover,
3009
+ .ui.inverted.purple.buttons .button:focus,
3010
+ .ui.inverted.purple.button:focus,
3011
+ .ui.inverted.purple.buttons .button.active,
3012
+ .ui.inverted.purple.button.active,
3013
+ .ui.inverted.purple.buttons .button:active,
3014
+ .ui.inverted.purple.button:active {
3015
+ -webkit-box-shadow: none !important;
3016
+ box-shadow: none !important;
3017
+ color: #FFFFFF;
3018
+ }
3019
+ .ui.inverted.purple.buttons .button:hover,
3020
+ .ui.inverted.purple.button:hover {
3021
+ background-color: #d65aff;
3022
+ }
3023
+ .ui.inverted.purple.buttons .button:focus,
3024
+ .ui.inverted.purple.button:focus {
3025
+ background-color: #d24aff;
3026
+ }
3027
+ .ui.inverted.purple.buttons .active.button,
3028
+ .ui.inverted.purple.active.button {
3029
+ background-color: #d65aff;
3030
+ }
3031
+ .ui.inverted.purple.buttons .button:active,
3032
+ .ui.inverted.purple.button:active {
3033
+ background-color: #cf40ff;
3034
+ }
3035
+
3036
+ /* Inverted Basic */
3037
+ .ui.inverted.purple.basic.buttons .button,
3038
+ .ui.inverted.purple.buttons .basic.button,
3039
+ .ui.inverted.purple.basic.button {
3040
+ background-color: transparent;
3041
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3042
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3043
+ color: #FFFFFF !important;
3044
+ }
3045
+ .ui.inverted.purple.basic.buttons .button:hover,
3046
+ .ui.inverted.purple.buttons .basic.button:hover,
3047
+ .ui.inverted.purple.basic.button:hover {
3048
+ -webkit-box-shadow: 0px 0px 0px 2px #d65aff inset !important;
3049
+ box-shadow: 0px 0px 0px 2px #d65aff inset !important;
3050
+ color: #DC73FF !important;
3051
+ }
3052
+ .ui.inverted.purple.basic.buttons .button:focus,
3053
+ .ui.inverted.purple.basic.buttons .button:focus,
3054
+ .ui.inverted.purple.basic.button:focus {
3055
+ -webkit-box-shadow: 0px 0px 0px 2px #d24aff inset !important;
3056
+ box-shadow: 0px 0px 0px 2px #d24aff inset !important;
3057
+ color: #DC73FF !important;
3058
+ }
3059
+ .ui.inverted.purple.basic.buttons .active.button,
3060
+ .ui.inverted.purple.buttons .basic.active.button,
3061
+ .ui.inverted.purple.basic.active.button {
3062
+ -webkit-box-shadow: 0px 0px 0px 2px #d65aff inset !important;
3063
+ box-shadow: 0px 0px 0px 2px #d65aff inset !important;
3064
+ color: #DC73FF !important;
3065
+ }
3066
+ .ui.inverted.purple.basic.buttons .button:active,
3067
+ .ui.inverted.purple.buttons .basic.button:active,
3068
+ .ui.inverted.purple.basic.button:active {
3069
+ -webkit-box-shadow: 0px 0px 0px 2px #cf40ff inset !important;
3070
+ box-shadow: 0px 0px 0px 2px #cf40ff inset !important;
3071
+ color: #DC73FF !important;
3072
+ }
3073
+
3074
+ /* Tertiary */
3075
+ .ui.tertiary.purple.buttons .button,
3076
+ .ui.tertiary.purple.buttons .tertiary.button,
3077
+ .ui.tertiary.purple.button {
3078
+ -webkit-box-shadow: none !important;
3079
+ box-shadow: none !important;
3080
+ color: #A333C8 !important;
3081
+ }
3082
+ .ui.tertiary.purple.buttons .button:hover,
3083
+ .ui.tertiary.purple.buttons button:hover,
3084
+ .ui.tertiary.purple.button:hover {
3085
+ -webkit-box-shadow: none !important;
3086
+ box-shadow: none !important;
3087
+ -webkit-box-shadow: inset 0 -0.2em 0 #8a3ea4 !important;
3088
+ box-shadow: inset 0 -0.2em 0 #8a3ea4 !important;
3089
+ color: #8a3ea4 !important;
3090
+ }
3091
+ .ui.tertiary.purple.buttons .button:focus,
3092
+ .ui.tertiary.purple.buttons .tertiary.button:focus,
3093
+ .ui.tertiary.purple.button:focus {
3094
+ -webkit-box-shadow: none !important;
3095
+ box-shadow: none !important;
3096
+ -webkit-box-shadow: inset 0 -0.2em 0 #84339f !important;
3097
+ box-shadow: inset 0 -0.2em 0 #84339f !important;
3098
+ color: #84339f !important;
3099
+ }
3100
+ .ui.tertiary.purple.buttons .active.button,
3101
+ .ui.tertiary.purple.buttons .tertiary.active.button,
3102
+ .ui.tertiary.purple.active.button,
3103
+ .ui.tertiary.purple.buttons .button:active,
3104
+ .ui.tertiary.purple.buttons .tertiary.button:active,
3105
+ .ui.tertiary.purple.button:active {
3106
+ -webkit-box-shadow: none !important;
3107
+ box-shadow: none !important;
3108
+ -webkit-box-shadow: inset 0 -0.2em 0 #a30dd4 !important;
3109
+ box-shadow: inset 0 -0.2em 0 #a30dd4 !important;
3110
+ color: #9724be !important;
3111
+ }
3112
+
3113
+ /*--- Red ---*/
3114
+
3115
+ .ui.red.buttons .button,
3116
+ .ui.red.button {
3117
+ background-color: #DB2828;
3118
+ color: #FFFFFF;
3119
+ text-shadow: none;
3120
+ background-image: none;
3121
+ }
3122
+ .ui.red.button {
3123
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3124
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3125
+ }
3126
+ .ui.red.buttons .button:hover,
3127
+ .ui.red.button:hover {
3128
+ background-color: #d01919;
3129
+ color: #FFFFFF;
3130
+ text-shadow: none;
3131
+ }
3132
+ .ui.red.buttons .button:focus,
3133
+ .ui.red.button:focus {
3134
+ background-color: #ca1010;
3135
+ color: #FFFFFF;
3136
+ text-shadow: none;
3137
+ }
3138
+ .ui.red.buttons .button:active,
3139
+ .ui.red.button:active {
3140
+ background-color: #b21e1e;
3141
+ color: #FFFFFF;
3142
+ text-shadow: none;
3143
+ }
3144
+ .ui.red.buttons .active.button,
3145
+ .ui.red.buttons .active.button:active,
3146
+ .ui.red.active.button,
3147
+ .ui.red.button .active.button:active {
3148
+ background-color: #d41515;
3149
+ color: #FFFFFF;
3150
+ text-shadow: none;
3151
+ }
3152
+
3153
+ /* Basic */
3154
+ .ui.basic.red.buttons .button,
3155
+ .ui.basic.red.button {
3156
+ -webkit-box-shadow: 0px 0px 0px 1px #DB2828 inset !important;
3157
+ box-shadow: 0px 0px 0px 1px #DB2828 inset !important;
3158
+ color: #DB2828 !important;
3159
+ }
3160
+ .ui.basic.red.buttons .button:hover,
3161
+ .ui.basic.red.button:hover {
3162
+ background: transparent !important;
3163
+ -webkit-box-shadow: 0px 0px 0px 1px #d01919 inset !important;
3164
+ box-shadow: 0px 0px 0px 1px #d01919 inset !important;
3165
+ color: #d01919 !important;
3166
+ }
3167
+ .ui.basic.red.buttons .button:focus,
3168
+ .ui.basic.red.button:focus {
3169
+ background: transparent !important;
3170
+ -webkit-box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
3171
+ box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
3172
+ color: #d01919 !important;
3173
+ }
3174
+ .ui.basic.red.buttons .active.button,
3175
+ .ui.basic.red.active.button {
3176
+ background: transparent !important;
3177
+ -webkit-box-shadow: 0px 0px 0px 1px #d41515 inset !important;
3178
+ box-shadow: 0px 0px 0px 1px #d41515 inset !important;
3179
+ color: #b21e1e !important;
3180
+ }
3181
+ .ui.basic.red.buttons .button:active,
3182
+ .ui.basic.red.button:active {
3183
+ -webkit-box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
3184
+ box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
3185
+ color: #b21e1e !important;
3186
+ }
3187
+ .ui.buttons:not(.vertical) > .basic.red.button:not(:first-child) {
3188
+ margin-left: -1px;
3189
+ }
3190
+
3191
+ /* Inverted */
3192
+ .ui.inverted.red.buttons .button,
3193
+ .ui.inverted.red.button {
3194
+ background-color: transparent;
3195
+ -webkit-box-shadow: 0px 0px 0px 2px #FF695E inset !important;
3196
+ box-shadow: 0px 0px 0px 2px #FF695E inset !important;
3197
+ color: #FF695E;
3198
+ }
3199
+ .ui.inverted.red.buttons .button:hover,
3200
+ .ui.inverted.red.button:hover,
3201
+ .ui.inverted.red.buttons .button:focus,
3202
+ .ui.inverted.red.button:focus,
3203
+ .ui.inverted.red.buttons .button.active,
3204
+ .ui.inverted.red.button.active,
3205
+ .ui.inverted.red.buttons .button:active,
3206
+ .ui.inverted.red.button:active {
3207
+ -webkit-box-shadow: none !important;
3208
+ box-shadow: none !important;
3209
+ color: #FFFFFF;
3210
+ }
3211
+ .ui.inverted.red.buttons .button:hover,
3212
+ .ui.inverted.red.button:hover {
3213
+ background-color: #ff5144;
3214
+ }
3215
+ .ui.inverted.red.buttons .button:focus,
3216
+ .ui.inverted.red.button:focus {
3217
+ background-color: #ff4335;
3218
+ }
3219
+ .ui.inverted.red.buttons .active.button,
3220
+ .ui.inverted.red.active.button {
3221
+ background-color: #ff5144;
3222
+ }
3223
+ .ui.inverted.red.buttons .button:active,
3224
+ .ui.inverted.red.button:active {
3225
+ background-color: #ff392b;
3226
+ }
3227
+
3228
+ /* Inverted Basic */
3229
+ .ui.inverted.red.basic.buttons .button,
3230
+ .ui.inverted.red.buttons .basic.button,
3231
+ .ui.inverted.red.basic.button {
3232
+ background-color: transparent;
3233
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3234
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3235
+ color: #FFFFFF !important;
3236
+ }
3237
+ .ui.inverted.red.basic.buttons .button:hover,
3238
+ .ui.inverted.red.buttons .basic.button:hover,
3239
+ .ui.inverted.red.basic.button:hover {
3240
+ -webkit-box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
3241
+ box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
3242
+ color: #FF695E !important;
3243
+ }
3244
+ .ui.inverted.red.basic.buttons .button:focus,
3245
+ .ui.inverted.red.basic.buttons .button:focus,
3246
+ .ui.inverted.red.basic.button:focus {
3247
+ -webkit-box-shadow: 0px 0px 0px 2px #ff4335 inset !important;
3248
+ box-shadow: 0px 0px 0px 2px #ff4335 inset !important;
3249
+ color: #FF695E !important;
3250
+ }
3251
+ .ui.inverted.red.basic.buttons .active.button,
3252
+ .ui.inverted.red.buttons .basic.active.button,
3253
+ .ui.inverted.red.basic.active.button {
3254
+ -webkit-box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
3255
+ box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
3256
+ color: #FF695E !important;
3257
+ }
3258
+ .ui.inverted.red.basic.buttons .button:active,
3259
+ .ui.inverted.red.buttons .basic.button:active,
3260
+ .ui.inverted.red.basic.button:active {
3261
+ -webkit-box-shadow: 0px 0px 0px 2px #ff392b inset !important;
3262
+ box-shadow: 0px 0px 0px 2px #ff392b inset !important;
3263
+ color: #FF695E !important;
3264
+ }
3265
+
3266
+ /* Tertiary */
3267
+ .ui.tertiary.red.buttons .button,
3268
+ .ui.tertiary.red.buttons .tertiary.button,
3269
+ .ui.tertiary.red.button {
3270
+ -webkit-box-shadow: none !important;
3271
+ box-shadow: none !important;
3272
+ color: #DB2828 !important;
3273
+ }
3274
+ .ui.tertiary.red.buttons .button:hover,
3275
+ .ui.tertiary.red.buttons button:hover,
3276
+ .ui.tertiary.red.button:hover {
3277
+ -webkit-box-shadow: none !important;
3278
+ box-shadow: none !important;
3279
+ -webkit-box-shadow: inset 0 -0.2em 0 #b93131 !important;
3280
+ box-shadow: inset 0 -0.2em 0 #b93131 !important;
3281
+ color: #b93131 !important;
3282
+ }
3283
+ .ui.tertiary.red.buttons .button:focus,
3284
+ .ui.tertiary.red.buttons .tertiary.button:focus,
3285
+ .ui.tertiary.red.button:focus {
3286
+ -webkit-box-shadow: none !important;
3287
+ box-shadow: none !important;
3288
+ -webkit-box-shadow: inset 0 -0.2em 0 #b52626 !important;
3289
+ box-shadow: inset 0 -0.2em 0 #b52626 !important;
3290
+ color: #b52626 !important;
3291
+ }
3292
+ .ui.tertiary.red.buttons .active.button,
3293
+ .ui.tertiary.red.buttons .tertiary.active.button,
3294
+ .ui.tertiary.red.active.button,
3295
+ .ui.tertiary.red.buttons .button:active,
3296
+ .ui.tertiary.red.buttons .tertiary.button:active,
3297
+ .ui.tertiary.red.button:active {
3298
+ -webkit-box-shadow: none !important;
3299
+ box-shadow: none !important;
3300
+ -webkit-box-shadow: inset 0 -0.2em 0 #ea0000 !important;
3301
+ box-shadow: inset 0 -0.2em 0 #ea0000 !important;
3302
+ color: #d41515 !important;
3303
+ }
3304
+
3305
+ /*--- Teal ---*/
3306
+
3307
+ .ui.teal.buttons .button,
3308
+ .ui.teal.button {
3309
+ background-color: #00B5AD;
3310
+ color: #FFFFFF;
3311
+ text-shadow: none;
3312
+ background-image: none;
3313
+ }
3314
+ .ui.teal.button {
3315
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3316
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3317
+ }
3318
+ .ui.teal.buttons .button:hover,
3319
+ .ui.teal.button:hover {
3320
+ background-color: #009c95;
3321
+ color: #FFFFFF;
3322
+ text-shadow: none;
3323
+ }
3324
+ .ui.teal.buttons .button:focus,
3325
+ .ui.teal.button:focus {
3326
+ background-color: #008c86;
3327
+ color: #FFFFFF;
3328
+ text-shadow: none;
3329
+ }
3330
+ .ui.teal.buttons .button:active,
3331
+ .ui.teal.button:active {
3332
+ background-color: #00827c;
3333
+ color: #FFFFFF;
3334
+ text-shadow: none;
3335
+ }
3336
+ .ui.teal.buttons .active.button,
3337
+ .ui.teal.buttons .active.button:active,
3338
+ .ui.teal.active.button,
3339
+ .ui.teal.button .active.button:active {
3340
+ background-color: #009c95;
3341
+ color: #FFFFFF;
3342
+ text-shadow: none;
3343
+ }
3344
+
3345
+ /* Basic */
3346
+ .ui.basic.teal.buttons .button,
3347
+ .ui.basic.teal.button {
3348
+ -webkit-box-shadow: 0px 0px 0px 1px #00B5AD inset !important;
3349
+ box-shadow: 0px 0px 0px 1px #00B5AD inset !important;
3350
+ color: #00B5AD !important;
3351
+ }
3352
+ .ui.basic.teal.buttons .button:hover,
3353
+ .ui.basic.teal.button:hover {
3354
+ background: transparent !important;
3355
+ -webkit-box-shadow: 0px 0px 0px 1px #009c95 inset !important;
3356
+ box-shadow: 0px 0px 0px 1px #009c95 inset !important;
3357
+ color: #009c95 !important;
3358
+ }
3359
+ .ui.basic.teal.buttons .button:focus,
3360
+ .ui.basic.teal.button:focus {
3361
+ background: transparent !important;
3362
+ -webkit-box-shadow: 0px 0px 0px 1px #008c86 inset !important;
3363
+ box-shadow: 0px 0px 0px 1px #008c86 inset !important;
3364
+ color: #009c95 !important;
3365
+ }
3366
+ .ui.basic.teal.buttons .active.button,
3367
+ .ui.basic.teal.active.button {
3368
+ background: transparent !important;
3369
+ -webkit-box-shadow: 0px 0px 0px 1px #009c95 inset !important;
3370
+ box-shadow: 0px 0px 0px 1px #009c95 inset !important;
3371
+ color: #00827c !important;
3372
+ }
3373
+ .ui.basic.teal.buttons .button:active,
3374
+ .ui.basic.teal.button:active {
3375
+ -webkit-box-shadow: 0px 0px 0px 1px #00827c inset !important;
3376
+ box-shadow: 0px 0px 0px 1px #00827c inset !important;
3377
+ color: #00827c !important;
3378
+ }
3379
+ .ui.buttons:not(.vertical) > .basic.teal.button:not(:first-child) {
3380
+ margin-left: -1px;
3381
+ }
3382
+
3383
+ /* Inverted */
3384
+ .ui.inverted.teal.buttons .button,
3385
+ .ui.inverted.teal.button {
3386
+ background-color: transparent;
3387
+ -webkit-box-shadow: 0px 0px 0px 2px #6DFFFF inset !important;
3388
+ box-shadow: 0px 0px 0px 2px #6DFFFF inset !important;
3389
+ color: #6DFFFF;
3390
+ }
3391
+ .ui.inverted.teal.buttons .button:hover,
3392
+ .ui.inverted.teal.button:hover,
3393
+ .ui.inverted.teal.buttons .button:focus,
3394
+ .ui.inverted.teal.button:focus,
3395
+ .ui.inverted.teal.buttons .button.active,
3396
+ .ui.inverted.teal.button.active,
3397
+ .ui.inverted.teal.buttons .button:active,
3398
+ .ui.inverted.teal.button:active {
3399
+ -webkit-box-shadow: none !important;
3400
+ box-shadow: none !important;
3401
+ color: rgba(0, 0, 0, 0.6);
3402
+ }
3403
+ .ui.inverted.teal.buttons .button:hover,
3404
+ .ui.inverted.teal.button:hover {
3405
+ background-color: #54ffff;
3406
+ }
3407
+ .ui.inverted.teal.buttons .button:focus,
3408
+ .ui.inverted.teal.button:focus {
3409
+ background-color: #44ffff;
3410
+ }
3411
+ .ui.inverted.teal.buttons .active.button,
3412
+ .ui.inverted.teal.active.button {
3413
+ background-color: #54ffff;
3414
+ }
3415
+ .ui.inverted.teal.buttons .button:active,
3416
+ .ui.inverted.teal.button:active {
3417
+ background-color: #3affff;
3418
+ }
3419
+
3420
+ /* Inverted Basic */
3421
+ .ui.inverted.teal.basic.buttons .button,
3422
+ .ui.inverted.teal.buttons .basic.button,
3423
+ .ui.inverted.teal.basic.button {
3424
+ background-color: transparent;
3425
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3426
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3427
+ color: #FFFFFF !important;
3428
+ }
3429
+ .ui.inverted.teal.basic.buttons .button:hover,
3430
+ .ui.inverted.teal.buttons .basic.button:hover,
3431
+ .ui.inverted.teal.basic.button:hover {
3432
+ -webkit-box-shadow: 0px 0px 0px 2px #54ffff inset !important;
3433
+ box-shadow: 0px 0px 0px 2px #54ffff inset !important;
3434
+ color: #6DFFFF !important;
3435
+ }
3436
+ .ui.inverted.teal.basic.buttons .button:focus,
3437
+ .ui.inverted.teal.basic.buttons .button:focus,
3438
+ .ui.inverted.teal.basic.button:focus {
3439
+ -webkit-box-shadow: 0px 0px 0px 2px #44ffff inset !important;
3440
+ box-shadow: 0px 0px 0px 2px #44ffff inset !important;
3441
+ color: #6DFFFF !important;
3442
+ }
3443
+ .ui.inverted.teal.basic.buttons .active.button,
3444
+ .ui.inverted.teal.buttons .basic.active.button,
3445
+ .ui.inverted.teal.basic.active.button {
3446
+ -webkit-box-shadow: 0px 0px 0px 2px #54ffff inset !important;
3447
+ box-shadow: 0px 0px 0px 2px #54ffff inset !important;
3448
+ color: #6DFFFF !important;
3449
+ }
3450
+ .ui.inverted.teal.basic.buttons .button:active,
3451
+ .ui.inverted.teal.buttons .basic.button:active,
3452
+ .ui.inverted.teal.basic.button:active {
3453
+ -webkit-box-shadow: 0px 0px 0px 2px #3affff inset !important;
3454
+ box-shadow: 0px 0px 0px 2px #3affff inset !important;
3455
+ color: #6DFFFF !important;
3456
+ }
3457
+
3458
+ /* Tertiary */
3459
+ .ui.tertiary.teal.buttons .button,
3460
+ .ui.tertiary.teal.buttons .tertiary.button,
3461
+ .ui.tertiary.teal.button {
3462
+ -webkit-box-shadow: none !important;
3463
+ box-shadow: none !important;
3464
+ color: #00B5AD !important;
3465
+ }
3466
+ .ui.tertiary.teal.buttons .button:hover,
3467
+ .ui.tertiary.teal.buttons button:hover,
3468
+ .ui.tertiary.teal.button:hover {
3469
+ -webkit-box-shadow: none !important;
3470
+ box-shadow: none !important;
3471
+ -webkit-box-shadow: inset 0 -0.2em 0 #108c86 !important;
3472
+ box-shadow: inset 0 -0.2em 0 #108c86 !important;
3473
+ color: #108c86 !important;
3474
+ }
3475
+ .ui.tertiary.teal.buttons .button:focus,
3476
+ .ui.tertiary.teal.buttons .tertiary.button:focus,
3477
+ .ui.tertiary.teal.button:focus {
3478
+ -webkit-box-shadow: none !important;
3479
+ box-shadow: none !important;
3480
+ -webkit-box-shadow: inset 0 -0.2em 0 #0e7e79 !important;
3481
+ box-shadow: inset 0 -0.2em 0 #0e7e79 !important;
3482
+ color: #0e7e79 !important;
3483
+ }
3484
+ .ui.tertiary.teal.buttons .active.button,
3485
+ .ui.tertiary.teal.buttons .tertiary.active.button,
3486
+ .ui.tertiary.teal.active.button,
3487
+ .ui.tertiary.teal.buttons .button:active,
3488
+ .ui.tertiary.teal.buttons .tertiary.button:active,
3489
+ .ui.tertiary.teal.button:active {
3490
+ -webkit-box-shadow: none !important;
3491
+ box-shadow: none !important;
3492
+ -webkit-box-shadow: inset 0 -0.2em 0 #009c95 !important;
3493
+ box-shadow: inset 0 -0.2em 0 #009c95 !important;
3494
+ color: #009c95 !important;
3495
+ }
3496
+
3497
+ /*--- Olive ---*/
3498
+
3499
+ .ui.olive.buttons .button,
3500
+ .ui.olive.button {
3501
+ background-color: #B5CC18;
3502
+ color: #FFFFFF;
3503
+ text-shadow: none;
3504
+ background-image: none;
3505
+ }
3506
+ .ui.olive.button {
3507
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3508
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3509
+ }
3510
+ .ui.olive.buttons .button:hover,
3511
+ .ui.olive.button:hover {
3512
+ background-color: #a7bd0d;
3513
+ color: #FFFFFF;
3514
+ text-shadow: none;
3515
+ }
3516
+ .ui.olive.buttons .button:focus,
3517
+ .ui.olive.button:focus {
3518
+ background-color: #a0b605;
3519
+ color: #FFFFFF;
3520
+ text-shadow: none;
3521
+ }
3522
+ .ui.olive.buttons .button:active,
3523
+ .ui.olive.button:active {
3524
+ background-color: #8d9e13;
3525
+ color: #FFFFFF;
3526
+ text-shadow: none;
3527
+ }
3528
+ .ui.olive.buttons .active.button,
3529
+ .ui.olive.buttons .active.button:active,
3530
+ .ui.olive.active.button,
3531
+ .ui.olive.button .active.button:active {
3532
+ background-color: #aac109;
3533
+ color: #FFFFFF;
3534
+ text-shadow: none;
3535
+ }
3536
+
3537
+ /* Basic */
3538
+ .ui.basic.olive.buttons .button,
3539
+ .ui.basic.olive.button {
3540
+ -webkit-box-shadow: 0px 0px 0px 1px #B5CC18 inset !important;
3541
+ box-shadow: 0px 0px 0px 1px #B5CC18 inset !important;
3542
+ color: #B5CC18 !important;
3543
+ }
3544
+ .ui.basic.olive.buttons .button:hover,
3545
+ .ui.basic.olive.button:hover {
3546
+ background: transparent !important;
3547
+ -webkit-box-shadow: 0px 0px 0px 1px #a7bd0d inset !important;
3548
+ box-shadow: 0px 0px 0px 1px #a7bd0d inset !important;
3549
+ color: #a7bd0d !important;
3550
+ }
3551
+ .ui.basic.olive.buttons .button:focus,
3552
+ .ui.basic.olive.button:focus {
3553
+ background: transparent !important;
3554
+ -webkit-box-shadow: 0px 0px 0px 1px #a0b605 inset !important;
3555
+ box-shadow: 0px 0px 0px 1px #a0b605 inset !important;
3556
+ color: #a7bd0d !important;
3557
+ }
3558
+ .ui.basic.olive.buttons .active.button,
3559
+ .ui.basic.olive.active.button {
3560
+ background: transparent !important;
3561
+ -webkit-box-shadow: 0px 0px 0px 1px #aac109 inset !important;
3562
+ box-shadow: 0px 0px 0px 1px #aac109 inset !important;
3563
+ color: #8d9e13 !important;
3564
+ }
3565
+ .ui.basic.olive.buttons .button:active,
3566
+ .ui.basic.olive.button:active {
3567
+ -webkit-box-shadow: 0px 0px 0px 1px #8d9e13 inset !important;
3568
+ box-shadow: 0px 0px 0px 1px #8d9e13 inset !important;
3569
+ color: #8d9e13 !important;
3570
+ }
3571
+ .ui.buttons:not(.vertical) > .basic.olive.button:not(:first-child) {
3572
+ margin-left: -1px;
3573
+ }
3574
+
3575
+ /* Inverted */
3576
+ .ui.inverted.olive.buttons .button,
3577
+ .ui.inverted.olive.button {
3578
+ background-color: transparent;
3579
+ -webkit-box-shadow: 0px 0px 0px 2px #D9E778 inset !important;
3580
+ box-shadow: 0px 0px 0px 2px #D9E778 inset !important;
3581
+ color: #D9E778;
3582
+ }
3583
+ .ui.inverted.olive.buttons .button:hover,
3584
+ .ui.inverted.olive.button:hover,
3585
+ .ui.inverted.olive.buttons .button:focus,
3586
+ .ui.inverted.olive.button:focus,
3587
+ .ui.inverted.olive.buttons .button.active,
3588
+ .ui.inverted.olive.button.active,
3589
+ .ui.inverted.olive.buttons .button:active,
3590
+ .ui.inverted.olive.button:active {
3591
+ -webkit-box-shadow: none !important;
3592
+ box-shadow: none !important;
3593
+ color: rgba(0, 0, 0, 0.6);
3594
+ }
3595
+ .ui.inverted.olive.buttons .button:hover,
3596
+ .ui.inverted.olive.button:hover {
3597
+ background-color: #d8ea5c;
3598
+ }
3599
+ .ui.inverted.olive.buttons .button:focus,
3600
+ .ui.inverted.olive.button:focus {
3601
+ background-color: #daef47;
3602
+ }
3603
+ .ui.inverted.olive.buttons .active.button,
3604
+ .ui.inverted.olive.active.button {
3605
+ background-color: #daed59;
3606
+ }
3607
+ .ui.inverted.olive.buttons .button:active,
3608
+ .ui.inverted.olive.button:active {
3609
+ background-color: #cddf4d;
3610
+ }
3611
+
3612
+ /* Inverted Basic */
3613
+ .ui.inverted.olive.basic.buttons .button,
3614
+ .ui.inverted.olive.buttons .basic.button,
3615
+ .ui.inverted.olive.basic.button {
3616
+ background-color: transparent;
3617
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3618
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3619
+ color: #FFFFFF !important;
3620
+ }
3621
+ .ui.inverted.olive.basic.buttons .button:hover,
3622
+ .ui.inverted.olive.buttons .basic.button:hover,
3623
+ .ui.inverted.olive.basic.button:hover {
3624
+ -webkit-box-shadow: 0px 0px 0px 2px #d8ea5c inset !important;
3625
+ box-shadow: 0px 0px 0px 2px #d8ea5c inset !important;
3626
+ color: #D9E778 !important;
3627
+ }
3628
+ .ui.inverted.olive.basic.buttons .button:focus,
3629
+ .ui.inverted.olive.basic.buttons .button:focus,
3630
+ .ui.inverted.olive.basic.button:focus {
3631
+ -webkit-box-shadow: 0px 0px 0px 2px #daef47 inset !important;
3632
+ box-shadow: 0px 0px 0px 2px #daef47 inset !important;
3633
+ color: #D9E778 !important;
3634
+ }
3635
+ .ui.inverted.olive.basic.buttons .active.button,
3636
+ .ui.inverted.olive.buttons .basic.active.button,
3637
+ .ui.inverted.olive.basic.active.button {
3638
+ -webkit-box-shadow: 0px 0px 0px 2px #daed59 inset !important;
3639
+ box-shadow: 0px 0px 0px 2px #daed59 inset !important;
3640
+ color: #D9E778 !important;
3641
+ }
3642
+ .ui.inverted.olive.basic.buttons .button:active,
3643
+ .ui.inverted.olive.buttons .basic.button:active,
3644
+ .ui.inverted.olive.basic.button:active {
3645
+ -webkit-box-shadow: 0px 0px 0px 2px #cddf4d inset !important;
3646
+ box-shadow: 0px 0px 0px 2px #cddf4d inset !important;
3647
+ color: #D9E778 !important;
3648
+ }
3649
+
3650
+ /* Tertiary */
3651
+ .ui.tertiary.olive.buttons .button,
3652
+ .ui.tertiary.olive.buttons .tertiary.button,
3653
+ .ui.tertiary.olive.button {
3654
+ -webkit-box-shadow: none !important;
3655
+ box-shadow: none !important;
3656
+ color: #B5CC18 !important;
3657
+ }
3658
+ .ui.tertiary.olive.buttons .button:hover,
3659
+ .ui.tertiary.olive.buttons button:hover,
3660
+ .ui.tertiary.olive.button:hover {
3661
+ -webkit-box-shadow: none !important;
3662
+ box-shadow: none !important;
3663
+ -webkit-box-shadow: inset 0 -0.2em 0 #98a922 !important;
3664
+ box-shadow: inset 0 -0.2em 0 #98a922 !important;
3665
+ color: #98a922 !important;
3666
+ }
3667
+ .ui.tertiary.olive.buttons .button:focus,
3668
+ .ui.tertiary.olive.buttons .tertiary.button:focus,
3669
+ .ui.tertiary.olive.button:focus {
3670
+ -webkit-box-shadow: none !important;
3671
+ box-shadow: none !important;
3672
+ -webkit-box-shadow: inset 0 -0.2em 0 #92a418 !important;
3673
+ box-shadow: inset 0 -0.2em 0 #92a418 !important;
3674
+ color: #92a418 !important;
3675
+ }
3676
+ .ui.tertiary.olive.buttons .active.button,
3677
+ .ui.tertiary.olive.buttons .tertiary.active.button,
3678
+ .ui.tertiary.olive.active.button,
3679
+ .ui.tertiary.olive.buttons .button:active,
3680
+ .ui.tertiary.olive.buttons .tertiary.button:active,
3681
+ .ui.tertiary.olive.button:active {
3682
+ -webkit-box-shadow: none !important;
3683
+ box-shadow: none !important;
3684
+ -webkit-box-shadow: inset 0 -0.2em 0 #b1cb00 !important;
3685
+ box-shadow: inset 0 -0.2em 0 #b1cb00 !important;
3686
+ color: #aac109 !important;
3687
+ }
3688
+
3689
+ /*--- Yellow ---*/
3690
+
3691
+ .ui.yellow.buttons .button,
3692
+ .ui.yellow.button {
3693
+ background-color: #FBBD08;
3694
+ color: #FFFFFF;
3695
+ text-shadow: none;
3696
+ background-image: none;
3697
+ }
3698
+ .ui.yellow.button {
3699
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3700
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3701
+ }
3702
+ .ui.yellow.buttons .button:hover,
3703
+ .ui.yellow.button:hover {
3704
+ background-color: #eaae00;
3705
+ color: #FFFFFF;
3706
+ text-shadow: none;
3707
+ }
3708
+ .ui.yellow.buttons .button:focus,
3709
+ .ui.yellow.button:focus {
3710
+ background-color: #daa300;
3711
+ color: #FFFFFF;
3712
+ text-shadow: none;
3713
+ }
3714
+ .ui.yellow.buttons .button:active,
3715
+ .ui.yellow.button:active {
3716
+ background-color: #cd9903;
3717
+ color: #FFFFFF;
3718
+ text-shadow: none;
3719
+ }
3720
+ .ui.yellow.buttons .active.button,
3721
+ .ui.yellow.buttons .active.button:active,
3722
+ .ui.yellow.active.button,
3723
+ .ui.yellow.button .active.button:active {
3724
+ background-color: #eaae00;
3725
+ color: #FFFFFF;
3726
+ text-shadow: none;
3727
+ }
3728
+
3729
+ /* Basic */
3730
+ .ui.basic.yellow.buttons .button,
3731
+ .ui.basic.yellow.button {
3732
+ -webkit-box-shadow: 0px 0px 0px 1px #FBBD08 inset !important;
3733
+ box-shadow: 0px 0px 0px 1px #FBBD08 inset !important;
3734
+ color: #FBBD08 !important;
3735
+ }
3736
+ .ui.basic.yellow.buttons .button:hover,
3737
+ .ui.basic.yellow.button:hover {
3738
+ background: transparent !important;
3739
+ -webkit-box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
3740
+ box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
3741
+ color: #eaae00 !important;
3742
+ }
3743
+ .ui.basic.yellow.buttons .button:focus,
3744
+ .ui.basic.yellow.button:focus {
3745
+ background: transparent !important;
3746
+ -webkit-box-shadow: 0px 0px 0px 1px #daa300 inset !important;
3747
+ box-shadow: 0px 0px 0px 1px #daa300 inset !important;
3748
+ color: #eaae00 !important;
3749
+ }
3750
+ .ui.basic.yellow.buttons .active.button,
3751
+ .ui.basic.yellow.active.button {
3752
+ background: transparent !important;
3753
+ -webkit-box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
3754
+ box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
3755
+ color: #cd9903 !important;
3756
+ }
3757
+ .ui.basic.yellow.buttons .button:active,
3758
+ .ui.basic.yellow.button:active {
3759
+ -webkit-box-shadow: 0px 0px 0px 1px #cd9903 inset !important;
3760
+ box-shadow: 0px 0px 0px 1px #cd9903 inset !important;
3761
+ color: #cd9903 !important;
3762
+ }
3763
+ .ui.buttons:not(.vertical) > .basic.yellow.button:not(:first-child) {
3764
+ margin-left: -1px;
3765
+ }
3766
+
3767
+ /* Inverted */
3768
+ .ui.inverted.yellow.buttons .button,
3769
+ .ui.inverted.yellow.button {
3770
+ background-color: transparent;
3771
+ -webkit-box-shadow: 0px 0px 0px 2px #FFE21F inset !important;
3772
+ box-shadow: 0px 0px 0px 2px #FFE21F inset !important;
3773
+ color: #FFE21F;
3774
+ }
3775
+ .ui.inverted.yellow.buttons .button:hover,
3776
+ .ui.inverted.yellow.button:hover,
3777
+ .ui.inverted.yellow.buttons .button:focus,
3778
+ .ui.inverted.yellow.button:focus,
3779
+ .ui.inverted.yellow.buttons .button.active,
3780
+ .ui.inverted.yellow.button.active,
3781
+ .ui.inverted.yellow.buttons .button:active,
3782
+ .ui.inverted.yellow.button:active {
3783
+ -webkit-box-shadow: none !important;
3784
+ box-shadow: none !important;
3785
+ color: rgba(0, 0, 0, 0.6);
3786
+ }
3787
+ .ui.inverted.yellow.buttons .button:hover,
3788
+ .ui.inverted.yellow.button:hover {
3789
+ background-color: #ffdf05;
3790
+ }
3791
+ .ui.inverted.yellow.buttons .button:focus,
3792
+ .ui.inverted.yellow.button:focus {
3793
+ background-color: #f5d500;
3794
+ }
3795
+ .ui.inverted.yellow.buttons .active.button,
3796
+ .ui.inverted.yellow.active.button {
3797
+ background-color: #ffdf05;
3798
+ }
3799
+ .ui.inverted.yellow.buttons .button:active,
3800
+ .ui.inverted.yellow.button:active {
3801
+ background-color: #ebcd00;
3802
+ }
3803
+
3804
+ /* Inverted Basic */
3805
+ .ui.inverted.yellow.basic.buttons .button,
3806
+ .ui.inverted.yellow.buttons .basic.button,
3807
+ .ui.inverted.yellow.basic.button {
3808
+ background-color: transparent;
3809
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3810
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3811
+ color: #FFFFFF !important;
3812
+ }
3813
+ .ui.inverted.yellow.basic.buttons .button:hover,
3814
+ .ui.inverted.yellow.buttons .basic.button:hover,
3815
+ .ui.inverted.yellow.basic.button:hover {
3816
+ -webkit-box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
3817
+ box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
3818
+ color: #FFE21F !important;
3819
+ }
3820
+ .ui.inverted.yellow.basic.buttons .button:focus,
3821
+ .ui.inverted.yellow.basic.buttons .button:focus,
3822
+ .ui.inverted.yellow.basic.button:focus {
3823
+ -webkit-box-shadow: 0px 0px 0px 2px #f5d500 inset !important;
3824
+ box-shadow: 0px 0px 0px 2px #f5d500 inset !important;
3825
+ color: #FFE21F !important;
3826
+ }
3827
+ .ui.inverted.yellow.basic.buttons .active.button,
3828
+ .ui.inverted.yellow.buttons .basic.active.button,
3829
+ .ui.inverted.yellow.basic.active.button {
3830
+ -webkit-box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
3831
+ box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
3832
+ color: #FFE21F !important;
3833
+ }
3834
+ .ui.inverted.yellow.basic.buttons .button:active,
3835
+ .ui.inverted.yellow.buttons .basic.button:active,
3836
+ .ui.inverted.yellow.basic.button:active {
3837
+ -webkit-box-shadow: 0px 0px 0px 2px #ebcd00 inset !important;
3838
+ box-shadow: 0px 0px 0px 2px #ebcd00 inset !important;
3839
+ color: #FFE21F !important;
3840
+ }
3841
+
3842
+ /* Tertiary */
3843
+ .ui.tertiary.yellow.buttons .button,
3844
+ .ui.tertiary.yellow.buttons .tertiary.button,
3845
+ .ui.tertiary.yellow.button {
3846
+ -webkit-box-shadow: none !important;
3847
+ box-shadow: none !important;
3848
+ color: #FBBD08 !important;
3849
+ }
3850
+ .ui.tertiary.yellow.buttons .button:hover,
3851
+ .ui.tertiary.yellow.buttons button:hover,
3852
+ .ui.tertiary.yellow.button:hover {
3853
+ -webkit-box-shadow: none !important;
3854
+ box-shadow: none !important;
3855
+ -webkit-box-shadow: inset 0 -0.2em 0 #d2a217 !important;
3856
+ box-shadow: inset 0 -0.2em 0 #d2a217 !important;
3857
+ color: #d2a217 !important;
3858
+ }
3859
+ .ui.tertiary.yellow.buttons .button:focus,
3860
+ .ui.tertiary.yellow.buttons .tertiary.button:focus,
3861
+ .ui.tertiary.yellow.button:focus {
3862
+ -webkit-box-shadow: none !important;
3863
+ box-shadow: none !important;
3864
+ -webkit-box-shadow: inset 0 -0.2em 0 #c49816 !important;
3865
+ box-shadow: inset 0 -0.2em 0 #c49816 !important;
3866
+ color: #c49816 !important;
3867
+ }
3868
+ .ui.tertiary.yellow.buttons .active.button,
3869
+ .ui.tertiary.yellow.buttons .tertiary.active.button,
3870
+ .ui.tertiary.yellow.active.button,
3871
+ .ui.tertiary.yellow.buttons .button:active,
3872
+ .ui.tertiary.yellow.buttons .tertiary.button:active,
3873
+ .ui.tertiary.yellow.button:active {
3874
+ -webkit-box-shadow: none !important;
3875
+ box-shadow: none !important;
3876
+ -webkit-box-shadow: inset 0 -0.2em 0 #eaae00 !important;
3877
+ box-shadow: inset 0 -0.2em 0 #eaae00 !important;
3878
+ color: #eaae00 !important;
3879
+ }
3880
+
3881
+ /*-------------------
3882
+ Primary
3883
+ --------------------*/
3884
+
3885
+ .ui.primary.buttons .button,
3886
+ .ui.primary.button {
3887
+ background-color: #2185D0;
3888
+ color: #FFFFFF;
3889
+ text-shadow: none;
3890
+ background-image: none;
3891
+ }
3892
+ .ui.primary.button {
3893
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3894
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3895
+ }
3896
+ .ui.primary.buttons .button:hover,
3897
+ .ui.primary.button:hover {
3898
+ background-color: #1678c2;
3899
+ color: #FFFFFF;
3900
+ text-shadow: none;
3901
+ }
3902
+ .ui.primary.buttons .button:focus,
3903
+ .ui.primary.button:focus {
3904
+ background-color: #0d71bb;
3905
+ color: #FFFFFF;
3906
+ text-shadow: none;
3907
+ }
3908
+ .ui.primary.buttons .button:active,
3909
+ .ui.primary.button:active {
3910
+ background-color: #1a69a4;
3911
+ color: #FFFFFF;
3912
+ text-shadow: none;
3913
+ }
3914
+ .ui.primary.buttons .active.button,
3915
+ .ui.primary.buttons .active.button:active,
3916
+ .ui.primary.active.button,
3917
+ .ui.primary.button .active.button:active {
3918
+ background-color: #1279c6;
3919
+ color: #FFFFFF;
3920
+ text-shadow: none;
3921
+ }
3922
+
3923
+ /* Basic */
3924
+ .ui.basic.primary.buttons .button,
3925
+ .ui.basic.primary.button {
3926
+ -webkit-box-shadow: 0px 0px 0px 1px #2185D0 inset !important;
3927
+ box-shadow: 0px 0px 0px 1px #2185D0 inset !important;
3928
+ color: #2185D0 !important;
3929
+ }
3930
+ .ui.basic.primary.buttons .button:hover,
3931
+ .ui.basic.primary.button:hover {
3932
+ background: transparent !important;
3933
+ -webkit-box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
3934
+ box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
3935
+ color: #1678c2 !important;
3936
+ }
3937
+ .ui.basic.primary.buttons .button:focus,
3938
+ .ui.basic.primary.button:focus {
3939
+ background: transparent !important;
3940
+ -webkit-box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
3941
+ box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
3942
+ color: #1678c2 !important;
3943
+ }
3944
+ .ui.basic.primary.buttons .active.button,
3945
+ .ui.basic.primary.active.button {
3946
+ background: transparent !important;
3947
+ -webkit-box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
3948
+ box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
3949
+ color: #1a69a4 !important;
3950
+ }
3951
+ .ui.basic.primary.buttons .button:active,
3952
+ .ui.basic.primary.button:active {
3953
+ -webkit-box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
3954
+ box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
3955
+ color: #1a69a4 !important;
3956
+ }
3957
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
3958
+ margin-left: -1px;
3959
+ }
3960
+
3961
+ /* Inverted */
3962
+ .ui.inverted.primary.buttons .button,
3963
+ .ui.inverted.primary.button {
3964
+ background-color: transparent;
3965
+ -webkit-box-shadow: 0px 0px 0px 2px #54C8FF inset !important;
3966
+ box-shadow: 0px 0px 0px 2px #54C8FF inset !important;
3967
+ color: #54C8FF;
3968
+ }
3969
+ .ui.inverted.primary.buttons .button:hover,
3970
+ .ui.inverted.primary.button:hover,
3971
+ .ui.inverted.primary.buttons .button:focus,
3972
+ .ui.inverted.primary.button:focus,
3973
+ .ui.inverted.primary.buttons .button.active,
3974
+ .ui.inverted.primary.button.active,
3975
+ .ui.inverted.primary.buttons .button:active,
3976
+ .ui.inverted.primary.button:active {
3977
+ -webkit-box-shadow: none !important;
3978
+ box-shadow: none !important;
3979
+ color: #FFFFFF;
3980
+ }
3981
+ .ui.inverted.primary.buttons .button:hover,
3982
+ .ui.inverted.primary.button:hover {
3983
+ background-color: #3ac0ff;
3984
+ }
3985
+ .ui.inverted.primary.buttons .button:focus,
3986
+ .ui.inverted.primary.button:focus {
3987
+ background-color: #2bbbff;
3988
+ }
3989
+ .ui.inverted.primary.buttons .active.button,
3990
+ .ui.inverted.primary.active.button {
3991
+ background-color: #3ac0ff;
3992
+ }
3993
+ .ui.inverted.primary.buttons .button:active,
3994
+ .ui.inverted.primary.button:active {
3995
+ background-color: #21b8ff;
3996
+ }
3997
+
3998
+ /* Inverted Basic */
3999
+ .ui.inverted.primary.basic.buttons .button,
4000
+ .ui.inverted.primary.buttons .basic.button,
4001
+ .ui.inverted.primary.basic.button {
4002
+ background-color: transparent;
4003
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
4004
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
4005
+ color: #FFFFFF !important;
4006
+ }
4007
+ .ui.inverted.primary.basic.buttons .button:hover,
4008
+ .ui.inverted.primary.buttons .basic.button:hover,
4009
+ .ui.inverted.primary.basic.button:hover {
4010
+ -webkit-box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
4011
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
4012
+ color: #54C8FF !important;
4013
+ }
4014
+ .ui.inverted.primary.basic.buttons .button:focus,
4015
+ .ui.inverted.primary.basic.buttons .button:focus,
4016
+ .ui.inverted.primary.basic.button:focus {
4017
+ -webkit-box-shadow: 0px 0px 0px 2px #2bbbff inset !important;
4018
+ box-shadow: 0px 0px 0px 2px #2bbbff inset !important;
4019
+ color: #54C8FF !important;
4020
+ }
4021
+ .ui.inverted.primary.basic.buttons .active.button,
4022
+ .ui.inverted.primary.buttons .basic.active.button,
4023
+ .ui.inverted.primary.basic.active.button {
4024
+ -webkit-box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
4025
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
4026
+ color: #54C8FF !important;
4027
+ }
4028
+ .ui.inverted.primary.basic.buttons .button:active,
4029
+ .ui.inverted.primary.buttons .basic.button:active,
4030
+ .ui.inverted.primary.basic.button:active {
4031
+ -webkit-box-shadow: 0px 0px 0px 2px #21b8ff inset !important;
4032
+ box-shadow: 0px 0px 0px 2px #21b8ff inset !important;
4033
+ color: #54C8FF !important;
4034
+ }
4035
+
4036
+ /* Tertiary */
4037
+ .ui.tertiary.primary.buttons .button,
4038
+ .ui.tertiary.primary.buttons .tertiary.button,
4039
+ .ui.tertiary.primary.button {
4040
+ -webkit-box-shadow: none !important;
4041
+ box-shadow: none !important;
4042
+ color: #2185D0 !important;
4043
+ }
4044
+ .ui.tertiary.primary.buttons .button:hover,
4045
+ .ui.tertiary.primary.buttons button:hover,
4046
+ .ui.tertiary.primary.button:hover {
4047
+ -webkit-box-shadow: none !important;
4048
+ box-shadow: none !important;
4049
+ -webkit-box-shadow: inset 0 -0.2em 0 #2b75ac !important;
4050
+ box-shadow: inset 0 -0.2em 0 #2b75ac !important;
4051
+ color: #2b75ac !important;
4052
+ }
4053
+ .ui.tertiary.primary.buttons .button:focus,
4054
+ .ui.tertiary.primary.buttons .tertiary.button:focus,
4055
+ .ui.tertiary.primary.button:focus {
4056
+ -webkit-box-shadow: none !important;
4057
+ box-shadow: none !important;
4058
+ -webkit-box-shadow: inset 0 -0.2em 0 #216ea7 !important;
4059
+ box-shadow: inset 0 -0.2em 0 #216ea7 !important;
4060
+ color: #216ea7 !important;
4061
+ }
4062
+ .ui.tertiary.primary.buttons .active.button,
4063
+ .ui.tertiary.primary.buttons .tertiary.active.button,
4064
+ .ui.tertiary.primary.active.button,
4065
+ .ui.tertiary.primary.buttons .button:active,
4066
+ .ui.tertiary.primary.buttons .tertiary.button:active,
4067
+ .ui.tertiary.primary.button:active {
4068
+ -webkit-box-shadow: none !important;
4069
+ box-shadow: none !important;
4070
+ -webkit-box-shadow: inset 0 -0.2em 0 #007bd8 !important;
4071
+ box-shadow: inset 0 -0.2em 0 #007bd8 !important;
4072
+ color: #1279c6 !important;
4073
+ }
4074
+
4075
+ /*-------------------
4076
+ Secondary
4077
+ --------------------*/
4078
+
4079
+ .ui.secondary.buttons .button,
4080
+ .ui.secondary.button {
4081
+ background-color: #1B1C1D;
4082
+ color: #FFFFFF;
4083
+ text-shadow: none;
4084
+ background-image: none;
4085
+ }
4086
+ .ui.secondary.button {
4087
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4088
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4089
+ }
4090
+ .ui.secondary.buttons .button:hover,
4091
+ .ui.secondary.button:hover {
4092
+ background-color: #27292a;
4093
+ color: #FFFFFF;
4094
+ text-shadow: none;
4095
+ }
4096
+ .ui.secondary.buttons .button:focus,
4097
+ .ui.secondary.button:focus {
4098
+ background-color: #2e3032;
4099
+ color: #FFFFFF;
4100
+ text-shadow: none;
4101
+ }
4102
+ .ui.secondary.buttons .button:active,
4103
+ .ui.secondary.button:active {
4104
+ background-color: #343637;
4105
+ color: #FFFFFF;
4106
+ text-shadow: none;
4107
+ }
4108
+ .ui.secondary.buttons .active.button,
4109
+ .ui.secondary.buttons .active.button:active,
4110
+ .ui.secondary.active.button,
4111
+ .ui.secondary.button .active.button:active {
4112
+ background-color: #27292a;
4113
+ color: #FFFFFF;
4114
+ text-shadow: none;
4115
+ }
4116
+
4117
+ /* Basic */
4118
+ .ui.basic.secondary.buttons .button,
4119
+ .ui.basic.secondary.button {
4120
+ -webkit-box-shadow: 0px 0px 0px 1px #1B1C1D inset !important;
4121
+ box-shadow: 0px 0px 0px 1px #1B1C1D inset !important;
4122
+ color: #1B1C1D !important;
4123
+ }
4124
+ .ui.basic.secondary.buttons .button:hover,
4125
+ .ui.basic.secondary.button:hover {
4126
+ background: transparent !important;
4127
+ -webkit-box-shadow: 0px 0px 0px 1px #27292a inset !important;
4128
+ box-shadow: 0px 0px 0px 1px #27292a inset !important;
4129
+ color: #27292a !important;
4130
+ }
4131
+ .ui.basic.secondary.buttons .button:focus,
4132
+ .ui.basic.secondary.button:focus {
4133
+ background: transparent !important;
4134
+ -webkit-box-shadow: 0px 0px 0px 1px #2e3032 inset !important;
4135
+ box-shadow: 0px 0px 0px 1px #2e3032 inset !important;
4136
+ color: #27292a !important;
4137
+ }
4138
+ .ui.basic.secondary.buttons .active.button,
4139
+ .ui.basic.secondary.active.button {
4140
+ background: transparent !important;
4141
+ -webkit-box-shadow: 0px 0px 0px 1px #27292a inset !important;
4142
+ box-shadow: 0px 0px 0px 1px #27292a inset !important;
4143
+ color: #343637 !important;
4144
+ }
4145
+ .ui.basic.secondary.buttons .button:active,
4146
+ .ui.basic.secondary.button:active {
4147
+ -webkit-box-shadow: 0px 0px 0px 1px #343637 inset !important;
4148
+ box-shadow: 0px 0px 0px 1px #343637 inset !important;
4149
+ color: #343637 !important;
4150
+ }
4151
+ .ui.buttons:not(.vertical) > .basic.secondary.button:not(:first-child) {
4152
+ margin-left: -1px;
4153
+ }
4154
+
4155
+ /* Inverted */
4156
+ .ui.inverted.secondary.buttons .button,
4157
+ .ui.inverted.secondary.button {
4158
+ background-color: transparent;
4159
+ -webkit-box-shadow: 0px 0px 0px 2px #545454 inset !important;
4160
+ box-shadow: 0px 0px 0px 2px #545454 inset !important;
4161
+ color: #545454;
4162
+ }
4163
+ .ui.inverted.secondary.buttons .button:hover,
4164
+ .ui.inverted.secondary.button:hover,
4165
+ .ui.inverted.secondary.buttons .button:focus,
4166
+ .ui.inverted.secondary.button:focus,
4167
+ .ui.inverted.secondary.buttons .button.active,
4168
+ .ui.inverted.secondary.button.active,
4169
+ .ui.inverted.secondary.buttons .button:active,
4170
+ .ui.inverted.secondary.button:active {
4171
+ -webkit-box-shadow: none !important;
4172
+ box-shadow: none !important;
4173
+ color: #FFFFFF;
4174
+ }
4175
+ .ui.inverted.secondary.buttons .button:hover,
4176
+ .ui.inverted.secondary.button:hover {
4177
+ background-color: #616161;
4178
+ }
4179
+ .ui.inverted.secondary.buttons .button:focus,
4180
+ .ui.inverted.secondary.button:focus {
4181
+ background-color: #686868;
4182
+ }
4183
+ .ui.inverted.secondary.buttons .active.button,
4184
+ .ui.inverted.secondary.active.button {
4185
+ background-color: #616161;
4186
+ }
4187
+ .ui.inverted.secondary.buttons .button:active,
4188
+ .ui.inverted.secondary.button:active {
4189
+ background-color: #6e6e6e;
4190
+ }
4191
+
4192
+ /* Inverted Basic */
4193
+ .ui.inverted.secondary.basic.buttons .button,
4194
+ .ui.inverted.secondary.buttons .basic.button,
4195
+ .ui.inverted.secondary.basic.button {
4196
+ background-color: transparent;
4197
+ -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
4198
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
4199
+ color: #FFFFFF !important;
4200
+ }
4201
+ .ui.inverted.secondary.basic.buttons .button:hover,
4202
+ .ui.inverted.secondary.buttons .basic.button:hover,
4203
+ .ui.inverted.secondary.basic.button:hover {
4204
+ -webkit-box-shadow: 0px 0px 0px 2px #616161 inset !important;
4205
+ box-shadow: 0px 0px 0px 2px #616161 inset !important;
4206
+ color: #545454 !important;
4207
+ }
4208
+ .ui.inverted.secondary.basic.buttons .button:focus,
4209
+ .ui.inverted.secondary.basic.buttons .button:focus,
4210
+ .ui.inverted.secondary.basic.button:focus {
4211
+ -webkit-box-shadow: 0px 0px 0px 2px #686868 inset !important;
4212
+ box-shadow: 0px 0px 0px 2px #686868 inset !important;
4213
+ color: #545454 !important;
4214
+ }
4215
+ .ui.inverted.secondary.basic.buttons .active.button,
4216
+ .ui.inverted.secondary.buttons .basic.active.button,
4217
+ .ui.inverted.secondary.basic.active.button {
4218
+ -webkit-box-shadow: 0px 0px 0px 2px #616161 inset !important;
4219
+ box-shadow: 0px 0px 0px 2px #616161 inset !important;
4220
+ color: #545454 !important;
4221
+ }
4222
+ .ui.inverted.secondary.basic.buttons .button:active,
4223
+ .ui.inverted.secondary.buttons .basic.button:active,
4224
+ .ui.inverted.secondary.basic.button:active {
4225
+ -webkit-box-shadow: 0px 0px 0px 2px #6e6e6e inset !important;
4226
+ box-shadow: 0px 0px 0px 2px #6e6e6e inset !important;
4227
+ color: #545454 !important;
4228
+ }
4229
+
4230
+ /* Tertiary */
4231
+ .ui.tertiary.secondary.buttons .button,
4232
+ .ui.tertiary.secondary.buttons .tertiary.button,
4233
+ .ui.tertiary.secondary.button {
4234
+ -webkit-box-shadow: none !important;
4235
+ box-shadow: none !important;
4236
+ color: #1B1C1D !important;
4237
+ }
4238
+ .ui.tertiary.secondary.buttons .button:hover,
4239
+ .ui.tertiary.secondary.buttons button:hover,
4240
+ .ui.tertiary.secondary.button:hover {
4241
+ -webkit-box-shadow: none !important;
4242
+ box-shadow: none !important;
4243
+ -webkit-box-shadow: inset 0 -0.2em 0 #292929 !important;
4244
+ box-shadow: inset 0 -0.2em 0 #292929 !important;
4245
+ color: #292929 !important;
4246
+ }
4247
+ .ui.tertiary.secondary.buttons .button:focus,
4248
+ .ui.tertiary.secondary.buttons .tertiary.button:focus,
4249
+ .ui.tertiary.secondary.button:focus {
4250
+ -webkit-box-shadow: none !important;
4251
+ box-shadow: none !important;
4252
+ -webkit-box-shadow: inset 0 -0.2em 0 #303030 !important;
4253
+ box-shadow: inset 0 -0.2em 0 #303030 !important;
4254
+ color: #303030 !important;
4255
+ }
4256
+ .ui.tertiary.secondary.buttons .active.button,
4257
+ .ui.tertiary.secondary.buttons .tertiary.active.button,
4258
+ .ui.tertiary.secondary.active.button,
4259
+ .ui.tertiary.secondary.buttons .button:active,
4260
+ .ui.tertiary.secondary.buttons .tertiary.button:active,
4261
+ .ui.tertiary.secondary.button:active {
4262
+ -webkit-box-shadow: none !important;
4263
+ box-shadow: none !important;
4264
+ -webkit-box-shadow: inset 0 -0.2em 0 #1f2933 !important;
4265
+ box-shadow: inset 0 -0.2em 0 #1f2933 !important;
4266
+ color: #27292a !important;
4267
+ }
4268
+
4269
+ /*---------------
4270
+ Positive
4271
+ ----------------*/
4272
+
4273
+
4274
+ /* Standard */
4275
+ .ui.positive.buttons .button,
4276
+ .ui.positive.button {
4277
+ background-color: #21BA45;
4278
+ color: #FFFFFF;
4279
+ text-shadow: none;
4280
+ background-image: none;
4281
+ }
4282
+ .ui.positive.button {
4283
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4284
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4285
+ }
4286
+ .ui.positive.buttons .button:hover,
4287
+ .ui.positive.button:hover {
4288
+ background-color: #16ab39;
4289
+ color: #FFFFFF;
4290
+ text-shadow: none;
4291
+ }
4292
+ .ui.positive.buttons .button:focus,
4293
+ .ui.positive.button:focus {
4294
+ background-color: #0ea432;
4295
+ color: #FFFFFF;
4296
+ text-shadow: none;
4297
+ }
4298
+ .ui.positive.buttons .button:active,
4299
+ .ui.positive.button:active {
4300
+ background-color: #198f35;
4301
+ color: #FFFFFF;
4302
+ text-shadow: none;
4303
+ }
4304
+ .ui.positive.buttons .active.button,
4305
+ .ui.positive.buttons .active.button:active,
4306
+ .ui.positive.active.button,
4307
+ .ui.positive.button .active.button:active {
4308
+ background-color: #13ae38;
4309
+ color: #FFFFFF;
4310
+ text-shadow: none;
4311
+ }
4312
+
4313
+ /* Basic */
4314
+ .ui.basic.positive.buttons .button,
4315
+ .ui.basic.positive.button {
4316
+ -webkit-box-shadow: 0px 0px 0px 1px #21BA45 inset !important;
4317
+ box-shadow: 0px 0px 0px 1px #21BA45 inset !important;
4318
+ color: #21BA45 !important;
4319
+ }
4320
+ .ui.basic.positive.buttons .button:hover,
4321
+ .ui.basic.positive.button:hover {
4322
+ background: transparent !important;
4323
+ -webkit-box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
4324
+ box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
4325
+ color: #16ab39 !important;
4326
+ }
4327
+ .ui.basic.positive.buttons .button:focus,
4328
+ .ui.basic.positive.button:focus {
4329
+ background: transparent !important;
4330
+ -webkit-box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
4331
+ box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
4332
+ color: #16ab39 !important;
4333
+ }
4334
+ .ui.basic.positive.buttons .active.button,
4335
+ .ui.basic.positive.active.button {
4336
+ background: transparent !important;
4337
+ -webkit-box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
4338
+ box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
4339
+ color: #198f35 !important;
4340
+ }
4341
+ .ui.basic.positive.buttons .button:active,
4342
+ .ui.basic.positive.button:active {
4343
+ -webkit-box-shadow: 0px 0px 0px 1px #198f35 inset !important;
4344
+ box-shadow: 0px 0px 0px 1px #198f35 inset !important;
4345
+ color: #198f35 !important;
4346
+ }
4347
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
4348
+ margin-left: -1px;
4349
+ }
4350
+
4351
+ /*---------------
4352
+ Negative
4353
+ ----------------*/
4354
+
4355
+
4356
+ /* Standard */
4357
+ .ui.negative.buttons .button,
4358
+ .ui.negative.button {
4359
+ background-color: #DB2828;
4360
+ color: #FFFFFF;
4361
+ text-shadow: none;
4362
+ background-image: none;
4363
+ }
4364
+ .ui.negative.button {
4365
+ -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4366
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4367
+ }
4368
+ .ui.negative.buttons .button:hover,
4369
+ .ui.negative.button:hover {
4370
+ background-color: #d01919;
4371
+ color: #FFFFFF;
4372
+ text-shadow: none;
4373
+ }
4374
+ .ui.negative.buttons .button:focus,
4375
+ .ui.negative.button:focus {
4376
+ background-color: #ca1010;
4377
+ color: #FFFFFF;
4378
+ text-shadow: none;
4379
+ }
4380
+ .ui.negative.buttons .button:active,
4381
+ .ui.negative.button:active {
4382
+ background-color: #b21e1e;
4383
+ color: #FFFFFF;
4384
+ text-shadow: none;
4385
+ }
4386
+ .ui.negative.buttons .active.button,
4387
+ .ui.negative.buttons .active.button:active,
4388
+ .ui.negative.active.button,
4389
+ .ui.negative.button .active.button:active {
4390
+ background-color: #d41515;
4391
+ color: #FFFFFF;
4392
+ text-shadow: none;
4393
+ }
4394
+
4395
+ /* Basic */
4396
+ .ui.basic.negative.buttons .button,
4397
+ .ui.basic.negative.button {
4398
+ -webkit-box-shadow: 0px 0px 0px 1px #DB2828 inset !important;
4399
+ box-shadow: 0px 0px 0px 1px #DB2828 inset !important;
4400
+ color: #DB2828 !important;
4401
+ }
4402
+ .ui.basic.negative.buttons .button:hover,
4403
+ .ui.basic.negative.button:hover {
4404
+ background: transparent !important;
4405
+ -webkit-box-shadow: 0px 0px 0px 1px #d01919 inset !important;
4406
+ box-shadow: 0px 0px 0px 1px #d01919 inset !important;
4407
+ color: #d01919 !important;
4408
+ }
4409
+ .ui.basic.negative.buttons .button:focus,
4410
+ .ui.basic.negative.button:focus {
4411
+ background: transparent !important;
4412
+ -webkit-box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
4413
+ box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
4414
+ color: #d01919 !important;
4415
+ }
4416
+ .ui.basic.negative.buttons .active.button,
4417
+ .ui.basic.negative.active.button {
4418
+ background: transparent !important;
4419
+ -webkit-box-shadow: 0px 0px 0px 1px #d41515 inset !important;
4420
+ box-shadow: 0px 0px 0px 1px #d41515 inset !important;
4421
+ color: #b21e1e !important;
4422
+ }
4423
+ .ui.basic.negative.buttons .button:active,
4424
+ .ui.basic.negative.button:active {
4425
+ -webkit-box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
4426
+ box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
4427
+ color: #b21e1e !important;
4428
+ }
4429
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
4430
+ margin-left: -1px;
4431
+ }
4432
+
4433
+
4434
+ /*******************************
4435
+ Groups
4436
+ *******************************/
4437
+
4438
+ .ui.buttons {
4439
+ display: -webkit-inline-box;
4440
+ display: -ms-inline-flexbox;
4441
+ display: inline-flex;
4442
+ -webkit-box-orient: horizontal;
4443
+ -webkit-box-direction: normal;
4444
+ -ms-flex-direction: row;
4445
+ flex-direction: row;
4446
+ font-size: 0em;
4447
+ vertical-align: baseline;
4448
+ margin: 0em 0.25em 0em 0em;
4449
+ }
4450
+ .ui.buttons:not(.basic):not(.inverted) {
4451
+ -webkit-box-shadow: none;
4452
+ box-shadow: none;
4453
+ }
4454
+
4455
+ /* Clearfix */
4456
+ .ui.buttons:after {
4457
+ content: ".";
4458
+ display: block;
4459
+ height: 0;
4460
+ clear: both;
4461
+ visibility: hidden;
4462
+ }
4463
+
4464
+ /* Standard Group */
4465
+ .ui.buttons .button {
4466
+ -webkit-box-flex: 1;
4467
+ -ms-flex: 1 0 auto;
4468
+ flex: 1 0 auto;
4469
+ border-radius: 0em;
4470
+ margin: 0px 0px 0px 0px;
4471
+ }
4472
+ .ui.buttons > .ui.button:not(.basic):not(.inverted),
4473
+ .ui.buttons:not(.basic):not(.inverted) > .button {
4474
+ -webkit-box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4475
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4476
+ }
4477
+ .ui.buttons .button:first-child {
4478
+ border-left: none;
4479
+ margin-left: 0em;
4480
+ border-top-left-radius: 0.28571429rem;
4481
+ border-bottom-left-radius: 0.28571429rem;
4482
+ }
4483
+ .ui.buttons .button:last-child {
4484
+ border-top-right-radius: 0.28571429rem;
4485
+ border-bottom-right-radius: 0.28571429rem;
4486
+ }
4487
+
4488
+ /* Vertical Style */
4489
+ .ui.vertical.buttons {
4490
+ display: -webkit-inline-box;
4491
+ display: -ms-inline-flexbox;
4492
+ display: inline-flex;
4493
+ -webkit-box-orient: vertical;
4494
+ -webkit-box-direction: normal;
4495
+ -ms-flex-direction: column;
4496
+ flex-direction: column;
4497
+ }
4498
+ .ui.vertical.buttons .button {
4499
+ display: block;
4500
+ float: none;
4501
+ width: 100%;
4502
+ margin: 0px 0px 0px 0px;
4503
+ -webkit-box-shadow: none;
4504
+ box-shadow: none;
4505
+ border-radius: 0em;
4506
+ }
4507
+ .ui.vertical.buttons .button:first-child {
4508
+ border-top-left-radius: 0.28571429rem;
4509
+ border-top-right-radius: 0.28571429rem;
4510
+ }
4511
+ .ui.vertical.buttons .button:last-child {
4512
+ margin-bottom: 0px;
4513
+ border-bottom-left-radius: 0.28571429rem;
4514
+ border-bottom-right-radius: 0.28571429rem;
4515
+ }
4516
+ .ui.vertical.buttons .button:only-child {
4517
+ border-radius: 0.28571429rem;
4518
+ }
4519
+
4520
+
4521
+ /*******************************
4522
+ Theme Overrides
4523
+ *******************************/
4524
+
4525
+
4526
+
4527
+ /*******************************
4528
+ Site Overrides
4529
+ *******************************/
4530
+