semantic-ui-sass 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +51 -0
  6. data/Rakefile +5 -0
  7. data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
  8. data/app/assets/fonts/semantic-ui/basic.icons.svg +450 -0
  9. data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
  10. data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
  11. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  12. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  13. data/app/assets/fonts/semantic-ui/icons.svg +399 -0
  14. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  15. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  16. data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
  17. data/app/assets/images/semantic-ui/loader-large.gif +0 -0
  18. data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
  19. data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
  20. data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
  21. data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
  22. data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
  23. data/app/assets/images/semantic-ui/loader-small.gif +0 -0
  24. data/app/assets/javascripts/semantic-ui.js +20 -0
  25. data/app/assets/javascripts/semantic-ui/accordion.js +419 -0
  26. data/app/assets/javascripts/semantic-ui/behavior/api.js +638 -0
  27. data/app/assets/javascripts/semantic-ui/behavior/colorize.js +270 -0
  28. data/app/assets/javascripts/semantic-ui/behavior/form.js +702 -0
  29. data/app/assets/javascripts/semantic-ui/behavior/state.js +725 -0
  30. data/app/assets/javascripts/semantic-ui/chatroom.js +769 -0
  31. data/app/assets/javascripts/semantic-ui/checkbox.js +344 -0
  32. data/app/assets/javascripts/semantic-ui/dimmer.js +564 -0
  33. data/app/assets/javascripts/semantic-ui/dropdown.js +724 -0
  34. data/app/assets/javascripts/semantic-ui/modal.js +553 -0
  35. data/app/assets/javascripts/semantic-ui/nag.js +545 -0
  36. data/app/assets/javascripts/semantic-ui/popup.js +727 -0
  37. data/app/assets/javascripts/semantic-ui/rating.js +403 -0
  38. data/app/assets/javascripts/semantic-ui/search.js +772 -0
  39. data/app/assets/javascripts/semantic-ui/shape.js +778 -0
  40. data/app/assets/javascripts/semantic-ui/sidebar.js +490 -0
  41. data/app/assets/javascripts/semantic-ui/tab.js +689 -0
  42. data/app/assets/javascripts/semantic-ui/transition.js +654 -0
  43. data/app/assets/javascripts/semantic-ui/video.js +457 -0
  44. data/app/assets/stylesheets/semantic-ui.scss +4 -0
  45. data/app/assets/stylesheets/semantic-ui/collections/_all.scss +6 -0
  46. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +77 -0
  47. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +569 -0
  48. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +643 -0
  49. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +1767 -0
  50. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +347 -0
  51. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +524 -0
  52. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +12 -0
  53. data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +479 -0
  54. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1187 -0
  55. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +199 -0
  56. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +342 -0
  57. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +772 -0
  58. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +181 -0
  59. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +338 -0
  60. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +827 -0
  61. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +185 -0
  62. data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +352 -0
  63. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +464 -0
  64. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +293 -0
  65. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +199 -0
  66. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +16 -0
  67. data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +281 -0
  68. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +481 -0
  69. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +236 -0
  70. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +548 -0
  71. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +217 -0
  72. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +173 -0
  73. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +255 -0
  74. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +179 -0
  75. data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +365 -0
  76. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +273 -0
  77. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +113 -0
  78. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +150 -0
  79. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +63 -0
  80. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1096 -0
  81. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +98 -0
  82. data/app/assets/stylesheets/semantic-ui/views/_all.scss +5 -0
  83. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +221 -0
  84. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +152 -0
  85. data/app/assets/stylesheets/semantic-ui/views/_item.scss +651 -0
  86. data/app/assets/stylesheets/semantic-ui/views/_list.scss +555 -0
  87. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +27 -0
  88. data/lib/semantic/ui/sass.rb +10 -0
  89. data/lib/semantic/ui/sass/engine.rb +13 -0
  90. data/lib/semantic/ui/sass/version.rb +8 -0
  91. data/semantic-ui-sass.gemspec +24 -0
  92. data/tasks/converter.rb +237 -0
  93. metadata +177 -0
@@ -0,0 +1,1187 @@
1
+ /*
2
+ * # Semantic - Button
3
+ * http://github.com/jlukic/semantic-ui/
4
+ *
5
+ *
6
+ * Copyright 2013 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+
13
+ /*******************************
14
+ Button
15
+ *******************************/
16
+
17
+ /* Prototype */
18
+ .ui.button {
19
+ cursor: pointer;
20
+ display: inline-block;
21
+ vertical-align: middle;
22
+
23
+ min-height: 1em;
24
+
25
+ outline: none;
26
+ border: none;
27
+ background-color: #EBEBEB;
28
+ color: #999999;
29
+
30
+ padding: 0.8em 1.5em;
31
+
32
+ font-size: 1rem;
33
+ text-transform: uppercase;
34
+ line-height: 1;
35
+ font-weight: bold;
36
+ font-style: normal;
37
+ text-align: center;
38
+ text-decoration: none;
39
+
40
+ -webkit-border-radius: 0.2em;
41
+ -moz-border-radius: 0.2em;
42
+ border-radius: 0.2em;
43
+
44
+ -webkit-box-shadow:
45
+ 0em -0.185rem 0em rgba(0, 0, 0, 0.1) inset
46
+ ;
47
+ -moz-box-shadow:
48
+ 0em -0.185rem 0em rgba(0, 0, 0, 0.1) inset
49
+ ;
50
+ box-shadow:
51
+ 0em -0.185rem 0em rgba(0, 0, 0, 0.1) inset
52
+ ;
53
+
54
+ -webkit-user-select: none;
55
+ -moz-user-select: none;
56
+ -ms-user-select: none;
57
+ user-select: none;
58
+
59
+ -webkit-box-sizing: border-box;
60
+ -moz-box-sizing: border-box;
61
+ -ms-box-sizing: border-box;
62
+ box-sizing: border-box;
63
+
64
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
65
+
66
+ -webkit-transition:
67
+ opacity 0.25s ease,
68
+ background-color 0.25s ease,
69
+ color 0.25s ease,
70
+ background 0.25s ease,
71
+ box-shadow 0.25s ease
72
+ ;
73
+ -moz-transition:
74
+ opacity 0.25s ease,
75
+ background-color 0.25s ease,
76
+ color 0.25s ease,
77
+ background 0.25s ease,
78
+ box-shadow 0.25s ease
79
+ ;
80
+ -o-transition:
81
+ opacity 0.25s ease,
82
+ background-color 0.25s ease,
83
+ color 0.25s ease,
84
+ background 0.25s ease,
85
+ box-shadow 0.25s ease
86
+ ;
87
+ -ms-transition:
88
+ opacity 0.25s ease,
89
+ background-color 0.25s ease,
90
+ color 0.25s ease,
91
+ background 0.25s ease,
92
+ box-shadow 0.25s ease
93
+ ;
94
+ transition:
95
+ opacity 0.25s ease,
96
+ background-color 0.25s ease,
97
+ color 0.25s ease,
98
+ background 0.25s ease,
99
+ box-shadow 0.25s ease
100
+ ;
101
+ }
102
+
103
+ /*--------------
104
+ Count
105
+ ---------------*/
106
+
107
+ .ui.count.button {
108
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
109
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
110
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
111
+ }
112
+
113
+ .ui.count.button > .count {
114
+ position: absolute;
115
+ background-color: #FFFFFF;
116
+ border: 1px solid #F0F0F0;
117
+ margin: -0.8em -1.5em;
118
+ padding: 0.8em 1.5em;
119
+ }
120
+
121
+ /*-------------------
122
+ Primary
123
+ --------------------*/
124
+
125
+ .ui.primary.buttons .button,
126
+ .ui.primary.button {
127
+ background-color: #D95C5C;
128
+ color: #FFFFFF;
129
+ }
130
+ .ui.primary.buttons .button:hover,
131
+ .ui.primary.button:hover,
132
+ .ui.primary.buttons .active.button,
133
+ .ui.primary.button.active {
134
+ background-color: #E75859;
135
+ color: #FFFFFF;
136
+ }
137
+ .ui.primary.buttons .button:active,
138
+ .ui.primary.button:active {
139
+ background-color: #D24B4C;
140
+ color: #FFFFFF;
141
+ }
142
+
143
+ /*-------------------
144
+ Secondary
145
+ --------------------*/
146
+
147
+ .ui.secondary.buttons .button,
148
+ .ui.secondary.button {
149
+ background-color: #00B5AD;
150
+ color: #FFFFFF;
151
+ }
152
+ .ui.secondary.buttons .button:hover,
153
+ .ui.secondary.button:hover,
154
+ .ui.secondary.buttons .active.button,
155
+ .ui.secondary.button.active {
156
+ background-color: #009A93;
157
+ color: #FFFFFF;
158
+ }
159
+ .ui.secondary.buttons .button:active,
160
+ .ui.secondary.button:active {
161
+ background-color: #00847E;
162
+ color: #FFFFFF;
163
+ }
164
+
165
+ /*-------------------
166
+ Social
167
+ --------------------*/
168
+
169
+ /* Facebook */
170
+ .ui.facebook.button {
171
+ background-color: #3B579D;
172
+ color: #FFFFFF;
173
+ }
174
+ .ui.facebook.button:hover {
175
+ background-color: #3A59A9;
176
+ }
177
+ .ui.facebook.button:active {
178
+ background-color: #334F95;
179
+ }
180
+
181
+ /* Twitter */
182
+ .ui.twitter.button {
183
+ background-color: #00ACED;
184
+ color: #FFFFFF;
185
+ }
186
+ .ui.twitter.button:hover {
187
+ background-color: #00B9FF;
188
+ }
189
+ .ui.twitter.button:active {
190
+ background-color: #009EDA;
191
+ }
192
+
193
+ /*--------------
194
+ Icon
195
+ ---------------*/
196
+
197
+ .ui.button > .icon {
198
+ margin-right: 0.5em;
199
+
200
+ line-height: 1;
201
+
202
+ -webkit-transition:
203
+ opacity 0.1s ease
204
+ ;
205
+ -moz-transition:
206
+ opacity 0.1s ease
207
+ ;
208
+ -o-transition:
209
+ opacity 0.1s ease
210
+ ;
211
+ -ms-transition:
212
+ opacity 0.1s ease
213
+ ;
214
+ transition:
215
+ opacity 0.1s ease
216
+ ;
217
+ }
218
+
219
+
220
+
221
+ /*******************************
222
+ States
223
+ *******************************/
224
+
225
+
226
+ /*--------------
227
+ Active
228
+ ---------------*/
229
+
230
+ .ui.buttons .active.button,
231
+ .ui.active.button {
232
+ opacity: 1 !important;
233
+ background-color: #B0B0B0;
234
+
235
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0.1)));
236
+ background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
237
+ background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
238
+ background-image: -o-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
239
+ background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
240
+
241
+ color: #FFFFFF;
242
+
243
+ -webkit-box-shadow:
244
+ 0px 0px 0.3em 0px rgba(0, 0, 0, 0.3) inset
245
+ ;
246
+ -moz-box-shadow:
247
+ 0px 0px 0.3em 0px rgba(0, 0, 0, 0.3) inset
248
+ ;
249
+ box-shadow:
250
+ 0px 0px 0.3em 0px rgba(0, 0, 0, 0.3) inset
251
+ ;
252
+ }
253
+
254
+
255
+ /*--------------
256
+ Hover
257
+ ---------------*/
258
+
259
+ .ui.button:hover,
260
+ .ui.active.button:hover {
261
+ opacity: 1 !important;
262
+ background-color: #A4A4A4;
263
+
264
+ color: #FFFFFF;
265
+ }
266
+ .ui.button:hover .icon,
267
+ .ui.button.hover .icon {
268
+ opacity: 0.85;
269
+ }
270
+
271
+ /*--------------
272
+ Down
273
+ ---------------*/
274
+
275
+ .ui.button:active,
276
+ .ui.active.button:active {
277
+ opacity: 1 !important;
278
+ background-color: #8C8C8C;
279
+
280
+ color: #FFFFFF;
281
+
282
+ -webkit-box-shadow: 0px 1px 0.2em 0px rgba(0, 0, 0, 0.3) inset;
283
+ -moz-box-shadow: 0px 1px 0.2em 0px rgba(0, 0, 0, 0.3) inset;
284
+ box-shadow: 0px 1px 0.2em 0px rgba(0, 0, 0, 0.3) inset;
285
+ }
286
+
287
+ /*--------------
288
+ Loading
289
+ ---------------*/
290
+
291
+ .ui.loading.button {
292
+ position: relative;
293
+ cursor: default;
294
+
295
+ background-color: #F3F3F3 !important;
296
+ color: transparent !important;
297
+ background-image: none !important;
298
+
299
+ -webkit-box-shadow: none !important;
300
+ -moz-box-shadow: none !important;
301
+ box-shadow: none !important;
302
+
303
+ -webkit-transition: all 0s linear;
304
+ -moz-transition: all 0s linear;
305
+ -o-transition: all 0s linear;
306
+ -ms-transition: all 0s linear;
307
+ transition: all 0s linear;
308
+ }
309
+ .ui.loading.button:after {
310
+ position: absolute;
311
+ top: 0em;
312
+ left: 0em;
313
+ width: 100%;
314
+ height: 100%;
315
+ content: '';
316
+ background: transparent image-url("semantic-ui/loader-mini.gif") no-repeat 50% 50%;
317
+ }
318
+
319
+ .ui.labeled.icon.loading.button .icon {
320
+ background-color: transparent;
321
+ -webkit-box-shadow: none;
322
+ -moz-box-shadow: none;
323
+ box-shadow: none;
324
+ }
325
+
326
+ /*-------------------
327
+ Disabled
328
+ --------------------*/
329
+
330
+ .ui.disabled.button {
331
+ cursor: default;
332
+ color: #DDDDDD !important;
333
+ background-color: rgba(50, 50, 50, 0.05) !important;
334
+ background-image: none !important;
335
+
336
+ -webkit-box-shadow: none !important;
337
+ -moz-box-shadow: none !important;
338
+ box-shadow: none !important;
339
+ }
340
+
341
+
342
+ /*******************************
343
+ Variations
344
+ *******************************/
345
+
346
+ /*-------------------
347
+ Floated
348
+ --------------------*/
349
+
350
+ .ui.left.floated.buttons,
351
+ .ui.left.floated.button {
352
+ float: left;
353
+ margin-right: 0.25em;
354
+ }
355
+ .ui.right.floated.buttons,
356
+ .ui.right.floated.button {
357
+ float: right;
358
+ margin-left: 0.25em;
359
+ }
360
+
361
+
362
+
363
+ /*-------------------
364
+ Sizes
365
+ --------------------*/
366
+
367
+ .ui.buttons .button,
368
+ .ui.button {
369
+ font-size: 1rem;
370
+ }
371
+
372
+ .ui.buttons.mini .button,
373
+ .ui.mini.button {
374
+ font-size: 0.8125rem;
375
+ padding: 0.6em 0.8em;
376
+ -webkit-box-shadow: none;
377
+ -moz-box-shadow: none;
378
+ box-shadow: none;
379
+ }
380
+ .ui.tiny.buttons .button,
381
+ .ui.tiny.button {
382
+ font-size: 0.875rem;
383
+ padding: 0.6em 0.8em;
384
+ -webkit-box-shadow: none;
385
+ -moz-box-shadow: none;
386
+ box-shadow: none;
387
+ }
388
+ .ui.small.buttons .button,
389
+ .ui.small.button {
390
+ font-size: 0.875rem;
391
+ -webkit-box-shadow: none;
392
+ -moz-box-shadow: none;
393
+ box-shadow: none;
394
+ }
395
+
396
+ .ui.large.buttons .button,
397
+ .ui.large.button {
398
+ font-size: 1.125rem;
399
+ }
400
+ .ui.big.buttons .button,
401
+ .ui.big.button {
402
+ font-size: 1.25rem;
403
+ }
404
+ .ui.huge.buttons .button,
405
+ .ui.huge.button {
406
+ font-size: 1.375rem;
407
+ }
408
+ .ui.massive.buttons .button,
409
+ .ui.massive.button {
410
+ font-size: 1.5rem;
411
+ font-weight: bold;
412
+ }
413
+
414
+ /* loading */
415
+ .ui.huge.loading.button:after {
416
+ background-image: image-url("semantic-ui/loader-small.gif");
417
+ }
418
+ .ui.massive.buttons .loading.button:after,
419
+ .ui.gigantic.buttons .loading.button:after,
420
+ .ui.massive.loading.button:after,
421
+ .ui.gigantic.loading.button:after {
422
+ background-image: image-url("semantic-ui/loader-medium.gif");
423
+ }
424
+
425
+ .ui.huge.loading.button:after,
426
+ .ui.huge.loading.button.active:after {
427
+ background-image: image-url("semantic-ui/loader-small.gif");
428
+ }
429
+ .ui.massive.buttons .loading.button:after,
430
+ .ui.gigantic.buttons .loading.button:after,
431
+ .ui.massive.loading.button:after,
432
+ .ui.gigantic.loading.button:after,
433
+ .ui.massive.buttons .loading.button.active:after,
434
+ .ui.gigantic.buttons .loading.button.active:after,
435
+ .ui.massive.loading.button.active:after,
436
+ .ui.gigantic.loading.button.active:after {
437
+ background-image: image-url("semantic-ui/loader-medium.gif");
438
+ }
439
+
440
+ /*--------------
441
+ Icon Only
442
+ ---------------*/
443
+ .ui.icon.buttons .button,
444
+ .ui.icon.button {
445
+ padding: 0.8em;
446
+ }
447
+ .ui.icon.buttons .button > .icon,
448
+ .ui.icon.button > .icon {
449
+ opacity: 1;
450
+ margin: 0em;
451
+ vertical-align: top;
452
+ }
453
+
454
+
455
+
456
+ /*-------------------
457
+ Basic
458
+ --------------------*/
459
+
460
+ .ui.basic.buttons .button,
461
+ .ui.basic.button {
462
+ background-color: transparent !important;
463
+ background-image: none;
464
+ color: #999999 !important;
465
+ font-weight: normal;
466
+ text-transform: none;
467
+
468
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
469
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
470
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
471
+ }
472
+ .ui.basic.buttons {
473
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
474
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
475
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
476
+
477
+ -webkit-border-radius: 0.2em;
478
+ -moz-border-radius: 0.2em;
479
+ border-radius: 0.2em;
480
+ }
481
+
482
+ .ui.basic.buttons .button:hover,
483
+ .ui.basic.button:hover {
484
+ color: #7F7F7F !important;
485
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.18) inset;
486
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.18) inset;
487
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.18) inset;
488
+ }
489
+ .ui.basic.buttons .button:active,
490
+ .ui.basic.button:active {
491
+ background-color: rgba(0, 0, 0, 0.02) !important;
492
+ color: #7F7F7F !important;
493
+
494
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
495
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
496
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
497
+ }
498
+ .ui.basic.buttons .button.active,
499
+ .ui.basic.button.active {
500
+ background-color: rgba(0, 0, 0, 0.05);
501
+ color: #7F7F7F;
502
+
503
+ -webkit-box-shadow: 0px 0px 0px 1px #BDBDBD inset;
504
+ -moz-box-shadow: 0px 0px 0px 1px #BDBDBD inset;
505
+ box-shadow: 0px 0px 0px 1px #BDBDBD inset;
506
+ }
507
+ .ui.basic.buttons .button.active:hover,
508
+ .ui.basic.button.active:hover {
509
+ background-color: rgba(0, 0, 0, 0.1);
510
+ }
511
+
512
+ /* Basic Group */
513
+ .ui.basic.buttons .button {
514
+ border: none;
515
+
516
+ -webkit-box-shadow: none;
517
+ -moz-box-shadow: none;
518
+ box-shadow: none;
519
+ }
520
+ .ui.basic.buttons .button:hover,
521
+ .ui.basic.buttons .button:active {
522
+ -webkit-box-shadow: none;
523
+ -moz-box-shadow: none;
524
+ box-shadow: none;
525
+ }
526
+ .ui.basic.buttons .button.active {
527
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
528
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
529
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
530
+ }
531
+
532
+
533
+
534
+ /*--------------
535
+ Labeled Icon
536
+ ---------------*/
537
+
538
+ .ui.labeled.icon.buttons .button,
539
+ .ui.labeled.icon.button {
540
+ position: relative;
541
+ padding-left: 4em !important;
542
+ padding-right: 1.4em !important;
543
+ }
544
+
545
+ .ui.labeled.icon.buttons > .button > .icon,
546
+ .ui.labeled.icon.button > .icon {
547
+ position: absolute;
548
+ top: 0em;
549
+ left: 0em;
550
+
551
+ -webkit-box-sizing: border-box;
552
+ -moz-box-sizing: border-box;
553
+ -ms-box-sizing: border-box;
554
+ box-sizing: border-box;
555
+
556
+ width: 2.75em;
557
+ height: 100%;
558
+ padding-top: 0.8em;
559
+ background-color: rgba(0, 0, 0, 0.05);
560
+ text-align: center;
561
+
562
+ -webkit-border-radius: 0.2em 0px 0px 0.2em;
563
+ -moz-border-radius: 0.2em 0px 0px 0.2em;
564
+ border-radius: 0.2em 0px 0px 0.2em;
565
+
566
+ line-height: 1;
567
+
568
+ -webkit-box-shadow: -2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
569
+ -moz-box-shadow: -2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
570
+ box-shadow: -2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
571
+ }
572
+
573
+ .ui.labeled.icon.buttons .button > .icon {
574
+ -webkit-border-radius: 0em;
575
+ -moz-border-radius: 0em;
576
+ border-radius: 0em;
577
+ }
578
+ .ui.labeled.icon.buttons .button:first-child > .icon {
579
+ border-top-left-radius: 0.2em;
580
+ border-bottom-left-radius: 0.2em;
581
+ }
582
+ .ui.labeled.icon.buttons .button:last-child > .icon {
583
+ border-top-right-radius: 0.2em;
584
+ border-bottom-right-radius: 0.2em;
585
+ }
586
+ .ui.vertical.labeled.icon.buttons .button:first-child > .icon {
587
+ -webkit-border-radius: 0em;
588
+ -moz-border-radius: 0em;
589
+ border-radius: 0em;
590
+ border-top-left-radius: 0.2em;
591
+ }
592
+ .ui.vertical.labeled.icon.buttons .button:last-child > .icon {
593
+ -webkit-border-radius: 0em;
594
+ -moz-border-radius: 0em;
595
+ border-radius: 0em;
596
+ border-bottom-left-radius: 0.2em;
597
+ }
598
+
599
+ .ui.right.labeled.icon.button {
600
+ padding-left: 1.4em !important;
601
+ padding-right: 4em !important;
602
+ }
603
+ .ui.left.fluid.labeled.icon.button,
604
+ .ui.right.fluid.labeled.icon.button {
605
+ padding-left: 1.4em !important;
606
+ padding-right: 1.4em !important;
607
+ }
608
+
609
+ .ui.right.labeled.icon.button .icon {
610
+ left: auto;
611
+ right: 0em;
612
+
613
+ -webkit-border-radius: 0em 0.2em 0.2em 0em;
614
+ -moz-border-radius: 0em 0.2em 0.2em 0em;
615
+ border-radius: 0em 0.2em 0.2em 0em;
616
+
617
+ -webkit-box-shadow: 2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
618
+ -moz-box-shadow: 2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
619
+ box-shadow: 2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
620
+ }
621
+
622
+
623
+ /*--------------
624
+ Toggle
625
+ ---------------*/
626
+
627
+ /* Toggle (Modifies active state to give affordances) */
628
+ .ui.toggle.buttons .active.button,
629
+ .ui.buttons .button.toggle.active,
630
+ .ui.button.toggle.active {
631
+ background-color: #5BBD72 !important;
632
+ color: #FFFFFF !important;
633
+ }
634
+ .ui.button.toggle.active:hover {
635
+ background-color: #58CB73 !important;
636
+ color: #FFFFFF !important;
637
+ }
638
+
639
+ /*--------------
640
+ Bubbly
641
+ ---------------*/
642
+
643
+ .ui.circular.button {
644
+ -webkit-border-radius: 10em;
645
+ -moz-border-radius: 10em;
646
+ border-radius: 10em;
647
+ }
648
+
649
+
650
+ /*--------------
651
+ Attached
652
+ ---------------*/
653
+
654
+ .ui.attached.button {
655
+ display: block;
656
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
657
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
658
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
659
+ }
660
+ .ui.attached.top.button {
661
+
662
+ -webkit-border-radius: 0.2em 0.2em 0em 0em;
663
+ -moz-border-radius: 0.2em 0.2em 0em 0em;
664
+ border-radius: 0.2em 0.2em 0em 0em;
665
+ }
666
+ .ui.attached.bottom.button {
667
+ -webkit-border-radius: 0em 0em 0.2em 0.2em;
668
+ -moz-border-radius: 0em 0em 0.2em 0.2em;
669
+ border-radius: 0em 0em 0.2em 0.2em;
670
+ }
671
+ .ui.attached.left.button {
672
+ display: inline-block;
673
+ border-left: none;
674
+
675
+ padding-right: 0.75em;
676
+ text-align: right;
677
+
678
+ -webkit-border-radius: 0.2em 0em 0em 0.2em;
679
+ -moz-border-radius: 0.2em 0em 0em 0.2em;
680
+ border-radius: 0.2em 0em 0em 0.2em;
681
+ }
682
+ .ui.attached.right.button {
683
+ display: inline-block;
684
+
685
+ padding-left: 0.75em;
686
+ text-align: left;
687
+
688
+ -webkit-border-radius: 0em 0.2em 0.2em 0em;
689
+ -moz-border-radius: 0em 0.2em 0.2em 0em;
690
+ border-radius: 0em 0.2em 0.2em 0em;
691
+ }
692
+
693
+
694
+
695
+ /*-------------------
696
+ Or Buttons
697
+ --------------------*/
698
+
699
+ .ui.buttons .or {
700
+ position: relative;
701
+ float: left;
702
+ width: 0.3em;
703
+ height: 1em;
704
+ z-index: 3;
705
+ }
706
+ .ui.buttons .or:before {
707
+ position: absolute;
708
+ top: 50%;
709
+ left: 50%;
710
+ content: 'or';
711
+ background-color: #FFFFFF;
712
+
713
+ margin-top: -0.15em;
714
+ margin-left: -0.9em;
715
+
716
+ width: 1.8em;
717
+ height: 1.8em;
718
+
719
+ line-height: 1.66;
720
+ color: #AAAAAA;
721
+ font-style: normal;
722
+ font-weight: normal;
723
+ text-align: center;
724
+
725
+ -moz-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2) inset;
726
+ -webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2) inset;
727
+ box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2) inset;
728
+
729
+ -moz-border-radius: 500px;
730
+ -webkit-border-radius: 500px;
731
+ border-radius: 500px;
732
+
733
+ -webkit-box-sizing: border-box;
734
+ -moz-box-sizing: border-box;
735
+ -ms-box-sizing: border-box;
736
+ box-sizing: border-box;
737
+ }
738
+ .ui.buttons .or:after {
739
+ position: absolute;
740
+ top: 0em;
741
+ left: 0em;
742
+ content: ' ';
743
+
744
+ width: 0.3em;
745
+ height: 1.8em;
746
+
747
+ background-color: transparent;
748
+ border-top: 0.6em solid #FFFFFF;
749
+ border-bottom: 0.6em solid #FFFFFF;
750
+ }
751
+
752
+ /* Fluid Or */
753
+ .ui.fluid.buttons .or {
754
+ width: 0em !important;
755
+ }
756
+ .ui.fluid.buttons .or:after{
757
+ display: none;
758
+ }
759
+
760
+
761
+ /*-------------------
762
+ Attached
763
+ --------------------*/
764
+
765
+ /* Plural Attached */
766
+ .attached.ui.buttons {
767
+ margin: 0px;
768
+ -webkit-border-radius: 4px 4px 0px 0px;
769
+ -moz-border-radius: 4px 4px 0px 0px;
770
+ border-radius: 4px 4px 0px 0px;
771
+ }
772
+ .attached.ui.buttons .button:first-child {
773
+ -webkit-border-radius: 4px 0px 0px 0px;
774
+ -moz-border-radius: 4px 0px 0px 0px;
775
+ border-radius: 4px 0px 0px 0px;
776
+ }
777
+ .attached.ui.buttons .button:last-child {
778
+ -webkit-border-radius: 0px 4px 0px 0px;
779
+ -moz-border-radius: 0px 4px 0px 0px;
780
+ border-radius: 0px 4px 0px 0px;
781
+ }
782
+
783
+ /* Bottom Side */
784
+ .bottom.attached.ui.buttons {
785
+ margin-top: -1px;
786
+ -webkit-border-radius: 0px 0px 4px 4px;
787
+ -moz-border-radius: 0px 0px 4px 4px;
788
+ border-radius: 0px 0px 4px 4px;
789
+ }
790
+ .bottom.attached.ui.buttons .button:first-child {
791
+ -webkit-border-radius: 0px 0px 0px 4px;
792
+ -moz-border-radius: 0px 0px 0px 4px;
793
+ border-radius: 0px 0px 0px 4px;
794
+ }
795
+ .bottom.attached.ui.buttons .button:last-child {
796
+ -webkit-border-radius: 0px 0px 4px 0px;
797
+ -moz-border-radius: 0px 0px 4px 0px;
798
+ border-radius: 0px 0px 4px 0px;
799
+ }
800
+
801
+ /* Left Side */
802
+ .left.attached.ui.buttons {
803
+ margin-left: -1px;
804
+ -webkit-border-radius: 0px 4px 4px 0px;
805
+ -moz-border-radius: 0px 4px 4px 0px;
806
+ border-radius: 0px 4px 4px 0px;
807
+ }
808
+ .left.attached.ui.buttons .button:first-child {
809
+ margin-left: -1px;
810
+ -webkit-border-radius: 0px 4px 0px 0px;
811
+ -moz-border-radius: 0px 4px 0px 0px;
812
+ border-radius: 0px 4px 0px 0px;
813
+ }
814
+ .left.attached.ui.buttons .button:last-child {
815
+ margin-left: -1px;
816
+ -webkit-border-radius: 0px 0px 4px 0px;
817
+ -moz-border-radius: 0px 0px 4px 0px;
818
+ border-radius: 0px 0px 4px 0px;
819
+ }
820
+ /* Right Side */
821
+ .right.attached.ui.buttons,
822
+ .right.attached.ui.buttons .button {
823
+ margin-right: -1px;
824
+ -webkit-border-radius: 4px 0px 0px 4px;
825
+ -moz-border-radius: 4px 0px 0px 4px;
826
+ border-radius: 4px 0px 0px 4px;
827
+ }
828
+ .right.attached.ui.buttons .button:first-child {
829
+ margin-left: -1px;
830
+ -webkit-border-radius: 4px 0px 0px 0px;
831
+ -moz-border-radius: 4px 0px 0px 0px;
832
+ border-radius: 4px 0px 0px 0px;
833
+ }
834
+ .right.attached.ui.buttons .button:last-child {
835
+ margin-left: -1px;
836
+ -webkit-border-radius: 0px 0px 0px 4px;
837
+ -moz-border-radius: 0px 0px 0px 4px;
838
+ border-radius: 0px 0px 0px 4px;
839
+ }
840
+
841
+
842
+
843
+ /* Fluid */
844
+ .ui.fluid.buttons,
845
+ .ui.button.fluid,
846
+ .ui.fluid.buttons > .button {
847
+ display: block;
848
+ width: 100%;
849
+ }
850
+ .ui.two.buttons > .button {
851
+ width: 50%;
852
+ }
853
+ .ui.three.buttons > .button {
854
+ width: 33.333%;
855
+ }
856
+ .ui.four.buttons > .button {
857
+ width: 25%;
858
+ }
859
+ .ui.five.buttons > .button {
860
+ width: 20%;
861
+ }
862
+ .ui.six.buttons > .button {
863
+ width: 16.666%;
864
+ }
865
+ .ui.seven.buttons > .button {
866
+ width: 14.285%;
867
+ }
868
+ .ui.eight.buttons > .button {
869
+ width: 12.500%;
870
+ }
871
+ .ui.nine.buttons > .button {
872
+ width: 11.11%;
873
+ }
874
+ .ui.ten.buttons > .button {
875
+ width: 10%;
876
+ }
877
+ .ui.eleven.buttons > .button {
878
+ width: 9.09%;
879
+ }
880
+ .ui.twelve.buttons > .button {
881
+ width: 8.3333%;
882
+ }
883
+
884
+ /* Fluid Vertical Buttons */
885
+ .ui.fluid.vertical.buttons,
886
+ .ui.fluid.vertical.buttons > .button {
887
+ width: auto;
888
+ -webkit-box-sizing: border-box;
889
+ -moz-box-sizing: border-box;
890
+ -ms-box-sizing: border-box;
891
+ box-sizing: border-box;
892
+ }
893
+ .ui.two.vertical.buttons > .button {
894
+ height: 50%;
895
+ }
896
+ .ui.three.vertical.buttons > .button {
897
+ height: 33.333%;
898
+ }
899
+ .ui.four.vertical.buttons > .button {
900
+ height: 25%;
901
+ }
902
+ .ui.five.vertical.buttons > .button {
903
+ height: 20%;
904
+ }
905
+ .ui.six.vertical.buttons > .button {
906
+ height: 16.666%;
907
+ }
908
+ .ui.seven.vertical.buttons > .button {
909
+ height: 14.285%;
910
+ }
911
+ .ui.eight.vertical.buttons > .button {
912
+ height: 12.500%;
913
+ }
914
+ .ui.nine.vertical.buttons > .button {
915
+ height: 11.11%;
916
+ }
917
+ .ui.ten.vertical.buttons > .button {
918
+ height: 10%;
919
+ }
920
+ .ui.eleven.vertical.buttons > .button {
921
+ height: 9.09%;
922
+ }
923
+ .ui.twelve.vertical.buttons > .button {
924
+ height: 8.3333%;
925
+ }
926
+
927
+
928
+ /*-------------------
929
+ Colors
930
+ --------------------*/
931
+
932
+ /*--- White ---*/
933
+ .ui.white.buttons .button,
934
+ .ui.white.button {
935
+ background-color: #FFFFFF;
936
+ }
937
+
938
+ .ui.white.buttons .button:hover,
939
+ .ui.white.button:hover {
940
+ background-color: #A4A4A4;
941
+ }
942
+
943
+ /*--- Black ---*/
944
+ .ui.black.buttons .button,
945
+ .ui.black.button {
946
+ background-color: #5C6166;
947
+ color: #FFFFFF;
948
+ }
949
+ .ui.black.buttons .button:hover,
950
+ .ui.black.button:hover {
951
+ background-color: #4C4C4C;
952
+ color: #FFFFFF;
953
+ }
954
+ .ui.black.buttons .button:active,
955
+ .ui.black.button:active {
956
+ background-color: #333333;
957
+ color: #FFFFFF;
958
+ }
959
+
960
+ /*--- Green ---*/
961
+ .ui.green.buttons .button,
962
+ .ui.green.button {
963
+ background-color: #5BBD72;
964
+ color: #FFFFFF;
965
+ }
966
+ .ui.green.buttons .button:hover,
967
+ .ui.green.button:hover,
968
+ .ui.green.buttons .active.button,
969
+ .ui.green.button.active {
970
+ background-color: #58cb73;
971
+ color: #FFFFFF;
972
+ }
973
+ .ui.green.buttons .button:active,
974
+ .ui.green.button:active {
975
+ background-color: #4CB164;
976
+ color: #FFFFFF;
977
+ }
978
+
979
+ /*--- Red ---*/
980
+ .ui.red.buttons .button,
981
+ .ui.red.button {
982
+ background-color: #D95C5C;
983
+ color: #FFFFFF;
984
+ }
985
+ .ui.red.buttons .button:hover,
986
+ .ui.red.button:hover,
987
+ .ui.red.buttons .active.button,
988
+ .ui.red.button.active {
989
+ background-color: #E75859;
990
+ color: #FFFFFF;
991
+ }
992
+ .ui.red.buttons .button:active,
993
+ .ui.red.button:active {
994
+ background-color: #D24B4C;
995
+ color: #FFFFFF;
996
+ }
997
+
998
+ /*--- Orange ---*/
999
+ .ui.orange.buttons .button,
1000
+ .ui.orange.button {
1001
+ background-color: #E96633;
1002
+ color: #FFFFFF;
1003
+ }
1004
+ .ui.orange.buttons .button:hover,
1005
+ .ui.orange.button:hover,
1006
+ .ui.orange.buttons .active.button,
1007
+ .ui.orange.button.active {
1008
+ background-color: #FF7038;
1009
+ color: #FFFFFF;
1010
+ }
1011
+ .ui.orange.buttons .button:active,
1012
+ .ui.orange.button:active {
1013
+ background-color: #DA683B;
1014
+ color: #FFFFFF;
1015
+ }
1016
+
1017
+ /*--- Blue ---*/
1018
+ .ui.blue.buttons .button,
1019
+ .ui.blue.button {
1020
+ background-color: #6ECFF5;
1021
+ color: #FFFFFF;
1022
+ }
1023
+ .ui.blue.buttons .button:hover,
1024
+ .ui.blue.button:hover,
1025
+ .ui.blue.buttons .active.button,
1026
+ .ui.blue.button.active {
1027
+ background-color: #1AB8F3;
1028
+ color: #FFFFFF;
1029
+ }
1030
+ .ui.blue.buttons .button:active,
1031
+ .ui.blue.button:active {
1032
+ background-color: #0AA5DF;
1033
+ color: #FFFFFF;
1034
+ }
1035
+
1036
+ /*--- Purple ---*/
1037
+ .ui.purple.buttons .button,
1038
+ .ui.purple.button {
1039
+ background-color: #564F8A;
1040
+ color: #FFFFFF;
1041
+ }
1042
+ .ui.purple.buttons .button:hover,
1043
+ .ui.purple.button:hover,
1044
+ .ui.purple.buttons .active.button,
1045
+ .ui.purple.button.active {
1046
+ background-color: #3E3773;
1047
+ color: #FFFFFF;
1048
+ }
1049
+ .ui.purple.buttons .button:active,
1050
+ .ui.purple.button:active {
1051
+ background-color: #2E2860;
1052
+ color: #FFFFFF;
1053
+ }
1054
+
1055
+ /*--- Teal ---*/
1056
+ .ui.teal.buttons .button,
1057
+ .ui.teal.button {
1058
+ background-color: #00B5AD;
1059
+ color: #FFFFFF;
1060
+ }
1061
+ .ui.teal.buttons .button:hover,
1062
+ .ui.teal.button:hover,
1063
+ .ui.teal.buttons .active.button,
1064
+ .ui.teal.button.active {
1065
+ background-color: #009A93;
1066
+ color: #FFFFFF;
1067
+ }
1068
+ .ui.teal.buttons .button:active,
1069
+ .ui.teal.button:active {
1070
+ background-color: #00847E;
1071
+ color: #FFFFFF;
1072
+ }
1073
+
1074
+ /*---------------
1075
+ Positive
1076
+ ----------------*/
1077
+
1078
+ .ui.positive.buttons .button,
1079
+ .ui.positive.button {
1080
+ background-color: #5BBD72 !important;
1081
+ color: #FFFFFF;
1082
+ }
1083
+ .ui.positive.buttons .button:hover,
1084
+ .ui.positive.button:hover,
1085
+ .ui.positive.buttons .active.button,
1086
+ .ui.positive.button.active {
1087
+ background-color: #58CB73 !important;
1088
+ color: #FFFFFF;
1089
+ }
1090
+ .ui.positive.buttons .button:active,
1091
+ .ui.positive.button:active {
1092
+ background-color: #4CB164 !important;
1093
+ color: #FFFFFF;
1094
+ }
1095
+
1096
+
1097
+ /*---------------
1098
+ Negative
1099
+ ----------------*/
1100
+ .ui.negative.buttons .button,
1101
+ .ui.negative.button {
1102
+ background-color: #D95C5C !important;
1103
+ color: #FFFFFF;
1104
+ }
1105
+ .ui.negative.buttons .button:hover,
1106
+ .ui.negative.button:hover,
1107
+ .ui.negative.buttons .active.button,
1108
+ .ui.negative.button.active {
1109
+ background-color: #E75859 !important;
1110
+ color: #FFFFFF;
1111
+ }
1112
+ .ui.negative.buttons .button:active,
1113
+ .ui.negative.button:active {
1114
+ background-color: #D24B4C !important;
1115
+ color: #FFFFFF;
1116
+ }
1117
+
1118
+
1119
+ /*******************************
1120
+ Groups
1121
+ *******************************/
1122
+
1123
+ .ui.buttons {
1124
+ display: inline-block;
1125
+ vertical-align: middle;
1126
+ }
1127
+ .ui.buttons:after {
1128
+ content: ".";
1129
+ display: block;
1130
+ height: 0;
1131
+ clear: both;
1132
+ visibility: hidden;
1133
+ }
1134
+ .ui.buttons .button:first-child {
1135
+ border-left: none;
1136
+ }
1137
+
1138
+ .ui.buttons .button {
1139
+ float: left;
1140
+ -webkit-border-radius: 0em;
1141
+ -moz-border-radius: 0em;
1142
+ border-radius: 0em;
1143
+ border-left: 1px solid rgba(0, 0, 0, 0.05);
1144
+ }
1145
+ .ui.buttons .button:first-child {
1146
+ margin-left: 0em;
1147
+ border-top-left-radius: 0.2em;
1148
+ border-bottom-left-radius: 0.2em;
1149
+ }
1150
+ .ui.buttons .button:last-child {
1151
+ border-top-right-radius: 0.2em;
1152
+ border-bottom-right-radius: 0.2em;
1153
+ }
1154
+
1155
+ /* Vertical Style */
1156
+ .ui.vertical.buttons {
1157
+ display: inline-block;
1158
+ }
1159
+ .ui.vertical.buttons .button {
1160
+ display: block;
1161
+ float: none;
1162
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
1163
+ border-left: none;
1164
+ box-shadow: none;
1165
+ }
1166
+ .ui.vertical.buttons .button:first-child,
1167
+ .ui.vertical.buttons .mini.button:first-child,
1168
+ .ui.vertical.buttons .tiny.button:first-child,
1169
+ .ui.vertical.buttons .small.button:first-child,
1170
+ .ui.vertical.buttons .massive.button:first-child,
1171
+ .ui.vertical.buttons .huge.button:first-child {
1172
+ margin-top: 0px;
1173
+ -moz-border-radius: 0.2em 0.2em 0px 0px;
1174
+ -webkit-border-radius: 0.2em 0.2em 0px 0px;
1175
+ border-radius: 0.2em 0.2em 0px 0px;
1176
+ }
1177
+ .ui.vertical.buttons .button:last-child,
1178
+ .ui.vertical.buttons .mini.button:last-child,
1179
+ .ui.vertical.buttons .tiny.button:last-child,
1180
+ .ui.vertical.buttons .small.button:last-child,
1181
+ .ui.vertical.buttons .massive.button:last-child,
1182
+ .ui.vertical.buttons .huge.button:last-child,
1183
+ .ui.vertical.buttons .gigantic.button:last-child {
1184
+ -moz-border-radius: 0px 0px 0.2em 0.2em;
1185
+ -webkit-border-radius: 0px 0px 0.2em 0.2em;
1186
+ border-radius: 0px 0px 0.2em 0.2em;
1187
+ }