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,643 @@
1
+ /*
2
+ * # Semantic - Grid
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
+ Grid
14
+ *******************************/
15
+
16
+ .ui.grid {
17
+ display: block;
18
+ text-align: left;
19
+
20
+ font-size: 0em;
21
+ margin: 0% -1.5%;
22
+ padding: 0%;
23
+
24
+ -webkit-box-sizing: border-box;
25
+ -moz-box-sizing: border-box;
26
+ -ms-box-sizing: border-box;
27
+ box-sizing: border-box;
28
+ }
29
+
30
+ body > .ui.grid {
31
+ margin-left: 0%;
32
+ margin-right: 0%;
33
+ }
34
+
35
+ .ui.grid:after,
36
+ .ui.row:after {
37
+ content: ".";
38
+ display: block;
39
+ height: 0;
40
+ clear: both;
41
+ visibility: hidden;
42
+ }
43
+
44
+ /*-------------------
45
+ Columns
46
+ --------------------*/
47
+
48
+ .ui.grid > .column,
49
+ .ui.grid > .row > .column {
50
+
51
+ display: inline-block;
52
+ text-align: left;
53
+ font-size: 1rem;
54
+
55
+ padding-left: 1.5%;
56
+ padding-right: 1.5%;
57
+
58
+ -webkit-box-sizing: border-box;
59
+ -moz-box-sizing: border-box;
60
+ -ms-box-sizing: border-box;
61
+ box-sizing: border-box;
62
+
63
+ vertical-align: top;
64
+ }
65
+
66
+ /*-------------------
67
+ Rows
68
+ --------------------*/
69
+
70
+ .ui.grid > .row {
71
+ display: block;
72
+ width: 100% !important;
73
+ margin-top: 1.5%;
74
+ padding: 1.5% 0% 0%;
75
+ font-size: 0rem;
76
+ }
77
+ .ui.grid > .row:first-child {
78
+ padding-top: 0rem;
79
+ margin-top: 0rem;
80
+ }
81
+
82
+ /*-------------------
83
+ Content
84
+ --------------------*/
85
+
86
+ .ui.grid > .row > img,
87
+ .ui.grid > .row > .column > img {
88
+ max-width: 100%;
89
+ }
90
+
91
+ .ui.grid .column > .ui.segment:only-child {
92
+ margin: 0em;
93
+ }
94
+
95
+
96
+ /*******************************
97
+ Variations
98
+ *******************************/
99
+
100
+
101
+ /*-----------------------
102
+ Page Grid (Responsive)
103
+ -------------------------*/
104
+
105
+ .ui.page.grid {
106
+ min-width: 320px;
107
+ margin-left: 0%;
108
+ margin-right: 0%;
109
+ }
110
+
111
+ @media only screen and (max-width : 998px) {
112
+ .ui.page.grid {
113
+ padding: 0% 4%;
114
+ }
115
+ }
116
+ @media only screen and (min-width : 998px) {
117
+ .ui.page.grid {
118
+ padding: 0% 8%;
119
+ }
120
+ }
121
+ @media only screen and (min-width : 1500px) {
122
+ .ui.page.grid {
123
+ padding: 0% 13%;
124
+ }
125
+ }
126
+ @media only screen and (min-width : 1750px) {
127
+ .ui.page.grid {
128
+ padding: 0% 18%;
129
+ }
130
+ }
131
+ @media only screen and (min-width : 2000px) {
132
+ .ui.page.grid {
133
+ padding: 0% 23%;
134
+ }
135
+ }
136
+
137
+ /*-------------------
138
+ Column Width
139
+ --------------------*/
140
+
141
+ /* Sizing Combinations */
142
+ .ui.grid .one.wide.column {
143
+ width: 6.25%;
144
+ }
145
+ .ui.grid .two.wide.column {
146
+ width: 12.5%;
147
+ }
148
+ .ui.grid .three.wide.column {
149
+ width: 18.75%;
150
+ }
151
+ .ui.grid .four.wide.column {
152
+ width: 25%;
153
+ }
154
+ .ui.grid .five.wide.column {
155
+ width: 31.25%;
156
+ }
157
+ .ui.grid .six.wide.column {
158
+ width: 37.5%;
159
+ }
160
+ .ui.grid .seven.wide.column {
161
+ width: 43.75%;
162
+ }
163
+ .ui.grid .eight.wide.column {
164
+ width: 50%;
165
+ }
166
+ .ui.grid .nine.wide.column {
167
+ width: 56.25%;
168
+ }
169
+ .ui.grid .ten.wide.column {
170
+ width: 62.5%;
171
+ }
172
+ .ui.grid .eleven.wide.column {
173
+ width: 68.75%;
174
+ }
175
+ .ui.grid .twelve.wide.column {
176
+ width: 75%;
177
+ }
178
+ .ui.grid .thirteen.wide.column {
179
+ width: 81.25%;
180
+ }
181
+ .ui.grid .fourteen.wide.column {
182
+ width: 87.5%;
183
+ }
184
+ .ui.grid .fifteen.wide.column {
185
+ width: 93.75%;
186
+ }
187
+ .ui.grid .sixteen.wide.column {
188
+ width: 100%;
189
+ }
190
+
191
+ /*-------------------
192
+ Column Count
193
+ --------------------*/
194
+
195
+ /* Standard */
196
+ .ui.grid > .column,
197
+ .ui.grid > .row > .column {
198
+ width: 6.25%;
199
+ }
200
+
201
+ /* Assume full width with one column */
202
+ .ui.one.column.grid > .row > .column,
203
+ .ui.one.column.grid > .column,
204
+ .ui.grid > .one.column.row > .column {
205
+ width: 100%;
206
+ }
207
+ .ui.two.column.grid > .row > .column,
208
+ .ui.two.column.grid > .column,
209
+ .ui.grid > .two.column.row > .column {
210
+ width: 50%;
211
+ }
212
+ .ui.three.column.grid > .row > .column,
213
+ .ui.three.column.grid > .column,
214
+ .ui.grid > .three.column.row > .column {
215
+ width: 33.3333%;
216
+ }
217
+ .ui.four.column.grid > .row > .column,
218
+ .ui.four.column.grid > .column,
219
+ .ui.grid > .four.column.row > .column {
220
+ width: 25%;
221
+ }
222
+ .ui.five.column.grid > .row > .column,
223
+ .ui.five.column.grid > .column,
224
+ .ui.grid > .five.column.row > .column {
225
+ width: 20%;
226
+ }
227
+ .ui.six.column.grid > .row > .column,
228
+ .ui.six.column.grid > .column,
229
+ .ui.grid > .six.column.row > .column {
230
+ width: 16.66667%;
231
+ }
232
+ .ui.seven.column.grid > .row > .column,
233
+ .ui.seven.column.grid > .column,
234
+ .ui.grid > .seven.column.row > .column {
235
+ width: 14.2857%;
236
+ }
237
+ .ui.eight.column.grid > .row > .column,
238
+ .ui.eight.column.grid > .column,
239
+ .ui.grid > .eight.column.row > .column {
240
+ width: 12.5%;
241
+ }
242
+ .ui.nine.column.grid > .row > .column,
243
+ .ui.nine.column.grid > .column,
244
+ .ui.grid > .nine.column.row > .column {
245
+ width: 11.1111%;
246
+ }
247
+ .ui.ten.column.grid > .row > .column,
248
+ .ui.ten.column.grid > .column,
249
+ .ui.grid > .ten.column.row > .column {
250
+ width: 10%;
251
+ }
252
+ .ui.eleven.column.grid > .row > .column,
253
+ .ui.eleven.column.grid > .column,
254
+ .ui.grid > .eleven.column.row > .column {
255
+ width: 9.0909%;
256
+ }
257
+ .ui.twelve.column.grid > .row > .column,
258
+ .ui.twelve.column.grid > .column,
259
+ .ui.grid > .twelve.column.row > .column {
260
+ width: 8.3333%;
261
+ }
262
+ .ui.thirteen.column.grid > .row > .column,
263
+ .ui.thirteen.column.grid > .column,
264
+ .ui.grid > .thirteen.column.row > .column {
265
+ width: 7.6923%;
266
+ }
267
+ .ui.fourteen.column.grid > .row > .column,
268
+ .ui.fourteen.column.grid > .column,
269
+ .ui.grid > .fourteen.column.row > .column {
270
+ width: 7.1428%;
271
+ }
272
+ .ui.fifteen.column.grid > .row > .column,
273
+ .ui.fifteen.column.grid > .column,
274
+ .ui.grid > .fifteen.column.row > .column {
275
+ width: 6.6666%;
276
+ }
277
+ .ui.sixteen.column.grid > .row > .column,
278
+ .ui.sixteen.column.grid > .column,
279
+ .ui.grid > .sixteen.column.row > .column {
280
+ width: 6.25%;
281
+ }
282
+
283
+ /* Assume full width with one column */
284
+ .ui.grid > .column:only-child,
285
+ .ui.grid > .row > .column:only-child {
286
+ width: 100%;
287
+ }
288
+
289
+
290
+ /*----------------------
291
+ Relaxed
292
+ -----------------------*/
293
+
294
+ .ui.relaxed.grid {
295
+ margin: 0% -2.5%;
296
+ }
297
+ .ui.relaxed.grid > .column,
298
+ .ui.relaxed.grid > .row > .column {
299
+ padding-left: 2.5%;
300
+ padding-right: 2.5%;
301
+ }
302
+
303
+
304
+ /*----------------------
305
+ "Floated"
306
+ -----------------------*/
307
+
308
+ .ui.grid .left.floated.column {
309
+ float: left;
310
+ }
311
+ .ui.grid .right.floated.column {
312
+ float: right;
313
+ }
314
+
315
+
316
+ /*----------------------
317
+ Divided
318
+ -----------------------*/
319
+
320
+ .ui.divided.grid,
321
+ .ui.divided.grid > .row {
322
+ display: table;
323
+ width: 100%;
324
+ margin-left: 0% !important;
325
+ margin-right: 0% !important;
326
+ }
327
+ .ui.divided.grid > .column:not(.row),
328
+ .ui.divided.grid > .row > .column {
329
+ display: table-cell;
330
+ -webkit-box-shadow:
331
+ -1px 0px 0px 0px rgba(0, 0, 0, 0.1),
332
+ -2px 0px 0px 0px rgba(255, 255, 255, 0.8)
333
+ ;
334
+ -moz-box-shadow:
335
+ -1px 0px 0px 0px rgba(0, 0, 0, 0.1),
336
+ -2px 0px 0px 0px rgba(255, 255, 255, 0.8)
337
+ ;
338
+ box-shadow:
339
+ -1px 0px 0px 0px rgba(0, 0, 0, 0.1),
340
+ -2px 0px 0px 0px rgba(255, 255, 255, 0.8)
341
+ ;
342
+ }
343
+ .ui.divided.grid > .column.row {
344
+ display: table;
345
+ }
346
+ .ui.divided.grid > .column:first-child,
347
+ .ui.divided.grid > .row > .column:first-child {
348
+ -webkit-box-shadow: none;
349
+ -moz-box-shadow: none;
350
+ box-shadow: none;
351
+ }
352
+
353
+ /* Vertically Divided */
354
+ .ui.vertically.divided.grid > .row {
355
+ -webkit-box-shadow:
356
+ 0px -1px 0px 0px rgba(0, 0, 0, 0.1),
357
+ 0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important
358
+ ;
359
+ -moz-box-shadow:
360
+ 0px -1px 0px 0px rgba(0, 0, 0, 0.1),
361
+ 0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important
362
+ ;
363
+ box-shadow:
364
+ 0px -1px 0px 0px rgba(0, 0, 0, 0.1),
365
+ 0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important
366
+ ;
367
+ }
368
+ .ui.vertically.divided.grid > .row > .column,
369
+ .ui.vertically.divided.grid > .column:not(.row),
370
+ .ui.vertically.divided.grid > .row:first-child {
371
+ -webkit-box-shadow: none !important;
372
+ -moz-box-shadow: none !important;
373
+ box-shadow: none !important;
374
+ }
375
+
376
+
377
+ /*----------------------
378
+ Celled
379
+ -----------------------*/
380
+
381
+ .ui.celled.grid {
382
+ display: table;
383
+ width: 100%;
384
+ margin-left: 0% !important;
385
+ margin-right: 0% !important;
386
+ -webkit-box-shadow: 0px 0px 0px 1px #DFDFDF;
387
+ -moz-box-shadow: 0px 0px 0px 1px #DFDFDF;
388
+ box-shadow: 0px 0px 0px 1px #DFDFDF;
389
+ }
390
+ .ui.celled.grid > .row,
391
+ .ui.celled.grid > .column.row,
392
+ .ui.celled.grid > .column.row:first-child {
393
+ display: table;
394
+ width: 100%;
395
+ margin-top: 0em;
396
+ padding-top: 0em;
397
+ -webkit-box-shadow: 0px -1px 0px 0px #DFDFDF;
398
+ -moz-box-shadow: 0px -1px 0px 0px #DFDFDF;
399
+ box-shadow: 0px -1px 0px 0px #DFDFDF;
400
+ }
401
+ .ui.celled.grid > .column:not(.row),
402
+ .ui.celled.grid > .row > .column {
403
+ display: table-cell;
404
+ padding: 0.75em;
405
+ -webkit-box-shadow: -1px 0px 0px 0px #DFDFDF;
406
+ -moz-box-shadow: -1px 0px 0px 0px #DFDFDF;
407
+ box-shadow: -1px 0px 0px 0px #DFDFDF;
408
+ }
409
+ .ui.celled.grid > .column:first-child,
410
+ .ui.celled.grid > .row > .column:first-child {
411
+ -webkit-box-shadow: none;
412
+ -moz-box-shadow: none;
413
+ box-shadow: none;
414
+ }
415
+
416
+ .ui.celled.page.grid {
417
+ -webkit-box-shadow: none;
418
+ -moz-box-shadow: none;
419
+ box-shadow: none;
420
+ }
421
+
422
+ /*----------------------
423
+ Horizontally Centered
424
+ -----------------------*/
425
+
426
+ /* Vertical Centered */
427
+ .ui.left.aligned.grid,
428
+ .ui.left.aligned.grid > .row > .column,
429
+ .ui.left.aligned.grid > .column,
430
+ .ui.grid .left.aligned.column,
431
+ .ui.grid > .left.aligned.row > .column {
432
+ text-align: left;
433
+ }
434
+ .ui.center.aligned.grid,
435
+ .ui.center.aligned.grid > .row > .column,
436
+ .ui.center.aligned.grid > .column,
437
+ .ui.grid .center.aligned.column,
438
+ .ui.grid > .center.aligned.row > .column {
439
+ text-align: center;
440
+ }
441
+ .ui.right.aligned.grid,
442
+ .ui.right.aligned.grid > .row > .column,
443
+ .ui.right.aligned.grid > .column,
444
+ .ui.grid .right.aligned.column,
445
+ .ui.grid > .right.aligned.row > .column {
446
+ text-align: right;
447
+ }
448
+
449
+
450
+ /*----------------------
451
+ Vertically Centered
452
+ -----------------------*/
453
+
454
+ /* Vertical Centered */
455
+ .ui.top.aligned.grid,
456
+ .ui.top.aligned.grid > .row > .column,
457
+ .ui.top.aligned.grid > .column,
458
+ .ui.grid .top.aligned.column,
459
+ .ui.grid > .top.aligned.row > .column {
460
+ vertical-align: top;
461
+ }
462
+ .ui.middle.aligned.grid,
463
+ .ui.middle.aligned.grid > .row > .column,
464
+ .ui.middle.aligned.grid > .column,
465
+ .ui.grid .middle.aligned.column,
466
+ .ui.grid > .middle.aligned.row > .column {
467
+ vertical-align: middle;
468
+ }
469
+ .ui.bottom.aligned.grid,
470
+ .ui.bottom.aligned.grid > .row > .column,
471
+ .ui.bottom.aligned.grid > .column,
472
+ .ui.grid .bottom.aligned.column,
473
+ .ui.grid > .bottom.aligned.row > .column {
474
+ vertical-align: bottom;
475
+ }
476
+
477
+ /*----------------------
478
+ Equal Height Columns
479
+ -----------------------*/
480
+
481
+ .ui.grid > .equal.height.row {
482
+ display: table;
483
+ width: 100%;
484
+ }
485
+ .ui.grid > .equal.height.row > .column {
486
+ display: table-cell;
487
+ }
488
+
489
+
490
+ /*----------------------
491
+ Only (Device)
492
+ -----------------------*/
493
+
494
+ /* Mobile Only */
495
+ @media only screen and (max-width : 768px) {
496
+ .ui.mobile.only.grid,
497
+ .ui.grid > .mobile.only.row {
498
+ display: block !important;
499
+ }
500
+ .ui.grid > .row > .mobile.only.column {
501
+ display: inline-block !important;
502
+ }
503
+ .ui.divided.mobile.only.grid,
504
+ .ui.celled.mobile.only.grid,
505
+ .ui.divided.mobile.only.grid .row,
506
+ .ui.celled.mobile.only.grid .row,
507
+ .ui.divided.grid .mobile.only.row,
508
+ .ui.celled.grid .mobile.only.row,
509
+ .ui.grid .mobile.only.equal.height.row,
510
+ .ui.mobile.only.grid .equal.height.row {
511
+ display: table !important;
512
+ }
513
+ .ui.divided.grid > .row > .mobile.only.column,
514
+ .ui.celled.grid > .row > .mobile.only.column,
515
+ .ui.divided.mobile.only.grid > .row > .column,
516
+ .ui.celled.mobile.only.grid > .row > .column,
517
+ .ui.divided.mobile.only.grid > .column,
518
+ .ui.celled.mobile.only.grid > .column {
519
+ display: table-cell !important;
520
+ }
521
+ }
522
+ @media only screen and (min-width : 768px) {
523
+ .ui.mobile.only.grid,
524
+ .ui.grid > .mobile.only.row,
525
+ .ui.grid > .row > .mobile.only.column {
526
+ display: none;
527
+ }
528
+ }
529
+ /* Tablet Only */
530
+ @media only screen and (min-width : 768px) and (max-width : 998px) {
531
+ .ui.tablet.only.grid,
532
+ .ui.grid > .tablet.only.row {
533
+ display: block !important;
534
+ }
535
+ .ui.grid > .row > .tablet.only.column {
536
+ display: inline-block !important;
537
+ }
538
+ .ui.divided.tablet.only.grid,
539
+ .ui.celled.tablet.only.grid,
540
+ .ui.divided.tablet.only.grid .row,
541
+ .ui.celled.tablet.only.grid .row,
542
+ .ui.divided.grid .tablet.only.row,
543
+ .ui.celled.grid .tablet.only.row,
544
+ .ui.grid .tablet.only.equal.height.row,
545
+ .ui.tablet.only.grid .equal.height.row {
546
+ display: table !important;
547
+ }
548
+ .ui.divided.grid > .row > .tablet.only.column,
549
+ .ui.celled.grid > .row > .tablet.only.column,
550
+ .ui.divided.tablet.only.grid > .row > .column,
551
+ .ui.celled.tablet.only.grid > .row > .column,
552
+ .ui.divided.tablet.only.grid > .column,
553
+ .ui.celled.tablet.only.grid > .column {
554
+ display: table-cell !important;
555
+ }
556
+ }
557
+ @media only screen and (max-width : 768px), (min-width: 998px) {
558
+ .ui.tablet.only.grid,
559
+ .ui.grid > .tablet.only.row,
560
+ .ui.grid > .row > .tablet.only.column {
561
+ display: none;
562
+ }
563
+ }
564
+ /* Computer Only */
565
+ @media only screen and (min-width : 998px) {
566
+ .ui.computer.only.grid,
567
+ .ui.grid > .computer.only.row {
568
+ display: block !important;
569
+ }
570
+ .ui.grid > .row > .computer.only.column {
571
+ display: inline-block !important;
572
+ }
573
+ .ui.divided.computer.only.grid,
574
+ .ui.celled.computer.only.grid,
575
+ .ui.divided.computer.only.grid .row,
576
+ .ui.celled.computer.only.grid .row,
577
+ .ui.divided.grid .computer.only.row,
578
+ .ui.celled.grid .computer.only.row,
579
+ .ui.grid .computer.only.equal.height.row,
580
+ .ui.computer.only.grid .equal.height.row {
581
+ display: table !important;
582
+ }
583
+ .ui.divided.grid > .row > .computer.only.column,
584
+ .ui.celled.grid > .row > .computer.only.column,
585
+ .ui.divided.computer.only.grid > .row > .column,
586
+ .ui.celled.computer.only.grid > .row > .column,
587
+ .ui.divided.computer.only.grid > .column,
588
+ .ui.celled.computer.only.grid > .column {
589
+ display: table-cell !important;
590
+ }
591
+ }
592
+ @media only screen and (max-width : 998px) {
593
+ .ui.computer.only.grid,
594
+ .ui.grid > .computer.only.row,
595
+ .ui.grid > .row > .computer.only.column {
596
+ display: none;
597
+ }
598
+ }
599
+
600
+
601
+ /*-------------------
602
+ Stackable
603
+ --------------------*/
604
+
605
+ @media only screen and (max-width : 768px) {
606
+ .ui.stackable.grid {
607
+ display: block !important;
608
+ padding: 0em;
609
+ }
610
+ .ui.stackable.grid .row > .column,
611
+ .ui.stackable.grid > .column {
612
+ display: block !important;
613
+ width: auto !important;
614
+
615
+ margin: 1.5em 5% 0em !important;
616
+ padding: 1.5em 0em 0em !important;
617
+
618
+ -webkit-box-shadow: none !important;
619
+ -moz-box-shadow: none !important;
620
+ box-shadow: none !important;
621
+ }
622
+ .ui.stackable.divided.grid .column,
623
+ .ui.stackable.celled.grid .column {
624
+ border-top: 1px dotted rgba(0, 0, 0, 0.1);
625
+ }
626
+ .ui.stackable.grid > .row:first-child > .column:first-child,
627
+ .ui.stackable.grid > .column:first-child {
628
+ margin-top: 0em !important;
629
+ padding-top: 0em !important;
630
+ }
631
+ .ui.stackable.divided.grid > .row:first-child > .column:first-child,
632
+ .ui.stackable.celled.grid > .row:first-child > .column:first-child,
633
+ .ui.stackable.divided.grid > .column:first-child,
634
+ .ui.stackable.celled.grid > .column:first-child {
635
+ border-top: none !important;
636
+ }
637
+
638
+ /* Remove pointers from vertical menus */
639
+ .ui.stackable.grid .vertical.pointing.menu .item:after {
640
+ display: none;
641
+ }
642
+
643
+ }