vue_crud 0.1.9.5 → 0.1.9.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/lib/generators/vue_crud/example_generator.rb +12 -0
  3. data/lib/generators/vue_crud/install_generator.rb +1 -1
  4. data/lib/generators/vue_crud/pace_generator.rb +11 -0
  5. data/lib/generators/vue_crud/semantic_generator.rb +12 -0
  6. data/lib/generators/vue_crud/templates/assets/images/semantic-ui/flags.png +0 -0
  7. data/lib/generators/vue_crud/templates/assets/javascripts/pace.min.js +1 -0
  8. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/checkbox.js +831 -0
  9. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/dimmer.js +708 -0
  10. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/dropdown.js +3741 -0
  11. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/modal.js +913 -0
  12. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/site.js +487 -0
  13. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/transition.js +1089 -0
  14. data/lib/generators/vue_crud/templates/assets/javascripts/vue.js +7402 -0
  15. data/lib/generators/vue_crud/templates/assets/stylesheets/pace.min.css +1 -0
  16. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/.DS_Store +0 -0
  17. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/.DS_Store +0 -0
  18. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_all.scss +7 -0
  19. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +124 -0
  20. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_form.scss +1706 -0
  21. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_grid.scss +84 -0
  22. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_grid_bk.scss +2032 -0
  23. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_menu.scss +2021 -0
  24. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_message.scss +482 -0
  25. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_mixins.scss +3 -0
  26. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_table.scss +1108 -0
  27. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/mixins/.DS_Store +0 -0
  28. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/mixins/_clearfix.scss +1 -0
  29. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/mixins/_grid-framework.scss +1 -0
  30. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/mixins/_grid.scss +1 -0
  31. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_all.scss +15 -0
  32. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_button.scss +3470 -0
  33. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_container.scss +148 -0
  34. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_divider.scss +262 -0
  35. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_flag.scss +1031 -0
  36. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_header.scss +721 -0
  37. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_icon.scss +3148 -0
  38. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_image.scss +306 -0
  39. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_input.scss +517 -0
  40. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_label.scss +1314 -0
  41. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_list.scss +951 -0
  42. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_loader.scss +349 -0
  43. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_rail.scss +152 -0
  44. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_reveal.scss +307 -0
  45. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_segment.scss +799 -0
  46. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_step.scss +646 -0
  47. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/globals/_all.scss +3 -0
  48. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/globals/_reset.scss +424 -0
  49. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/globals/_site.scss +163 -0
  50. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/globals/_variables.scss +32 -0
  51. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_accordion.scss +256 -0
  52. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_all.scss +17 -0
  53. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_checkbox.scss +627 -0
  54. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_dimmer.scss +199 -0
  55. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1425 -0
  56. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_embed.scss +167 -0
  57. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_modal.scss +509 -0
  58. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_nag.scss +147 -0
  59. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_popup.scss +764 -0
  60. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_progress.scss +516 -0
  61. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_rating.scss +265 -0
  62. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_search.scss +409 -0
  63. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_shape.scss +157 -0
  64. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_sidebar.scss +644 -0
  65. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_sticky.scss +78 -0
  66. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_tab.scss +91 -0
  67. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_transition.scss +1981 -0
  68. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_video.scss +125 -0
  69. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_ad.scss +276 -0
  70. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_all.scss +6 -0
  71. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_card.scss +685 -0
  72. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_comment.scss +270 -0
  73. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_feed.scss +300 -0
  74. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_item.scss +481 -0
  75. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_statistic.scss +583 -0
  76. data/lib/generators/vue_crud/templates/example/user.rb +10 -0
  77. data/lib/generators/vue_crud/templates/example/users/index.html.erb +154 -0
  78. data/lib/generators/vue_crud/templates/example/users/index.json.jbuilder +15 -0
  79. data/lib/generators/vue_crud/templates/example/users/show.json.jbuilder +11 -0
  80. data/lib/generators/vue_crud/templates/example/users_controller.rb +85 -0
  81. data/lib/generators/vue_crud/vuejs_generator.rb +10 -0
  82. data/lib/vue_crud/version.rb +1 -1
  83. data/vendor/assets/javascripts/vue_crud.js +24 -3
  84. data/vendor/assets/stylesheets/vue_crud.css +0 -2
  85. metadata +80 -6
  86. data/vue_crud-0.1.5.gem +0 -0
  87. data/vue_crud-0.1.6.gem +0 -0
  88. data/vue_crud-0.1.7.gem +0 -0
  89. data/vue_crud-0.1.8.gem +0 -0
  90. data/vue_crud-0.1.9.gem +0 -0
@@ -0,0 +1,583 @@
1
+ /*!
2
+ * # Semantic UI 2.2.4 - Statistic
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
+ Statistic
14
+ *******************************/
15
+
16
+
17
+ /* Standalone */
18
+ .ui.statistic {
19
+ display: -webkit-inline-box;
20
+ display: -webkit-inline-flex;
21
+ display: -ms-inline-flexbox;
22
+ display: inline-flex;
23
+ -webkit-box-orient: vertical;
24
+ -webkit-box-direction: normal;
25
+ -webkit-flex-direction: column;
26
+ -ms-flex-direction: column;
27
+ flex-direction: column;
28
+ margin: 1em 0em;
29
+ max-width: auto;
30
+ }
31
+ .ui.statistic + .ui.statistic {
32
+ margin: 0em 0em 0em 1.5em;
33
+ }
34
+ .ui.statistic:first-child {
35
+ margin-top: 0em;
36
+ }
37
+ .ui.statistic:last-child {
38
+ margin-bottom: 0em;
39
+ }
40
+
41
+
42
+ /*******************************
43
+ Group
44
+ *******************************/
45
+
46
+
47
+ /* Grouped */
48
+ .ui.statistics {
49
+ display: -webkit-box;
50
+ display: -webkit-flex;
51
+ display: -ms-flexbox;
52
+ display: flex;
53
+ -webkit-box-align: start;
54
+ -webkit-align-items: flex-start;
55
+ -ms-flex-align: start;
56
+ align-items: flex-start;
57
+ -webkit-flex-wrap: wrap;
58
+ -ms-flex-wrap: wrap;
59
+ flex-wrap: wrap;
60
+ }
61
+ .ui.statistics > .statistic {
62
+ display: -webkit-inline-box;
63
+ display: -webkit-inline-flex;
64
+ display: -ms-inline-flexbox;
65
+ display: inline-flex;
66
+ -webkit-box-flex: 0;
67
+ -webkit-flex: 0 1 auto;
68
+ -ms-flex: 0 1 auto;
69
+ flex: 0 1 auto;
70
+ -webkit-box-orient: vertical;
71
+ -webkit-box-direction: normal;
72
+ -webkit-flex-direction: column;
73
+ -ms-flex-direction: column;
74
+ flex-direction: column;
75
+ margin: 0em 1.5em 2em;
76
+ max-width: auto;
77
+ }
78
+ .ui.statistics {
79
+ display: -webkit-box;
80
+ display: -webkit-flex;
81
+ display: -ms-flexbox;
82
+ display: flex;
83
+ margin: 1em -1.5em -2em;
84
+ }
85
+
86
+ /* Clearing */
87
+ .ui.statistics:after {
88
+ display: block;
89
+ content: ' ';
90
+ height: 0px;
91
+ clear: both;
92
+ overflow: hidden;
93
+ visibility: hidden;
94
+ }
95
+ .ui.statistics:first-child {
96
+ margin-top: 0em;
97
+ }
98
+ .ui.statistics:last-child {
99
+ margin-bottom: 0em;
100
+ }
101
+
102
+
103
+ /*******************************
104
+ Content
105
+ *******************************/
106
+
107
+
108
+ /*--------------
109
+ Value
110
+ ---------------*/
111
+
112
+ .ui.statistics .statistic > .value,
113
+ .ui.statistic > .value {
114
+ font-family: $font-family;
115
+ font-size: 4rem;
116
+ font-weight: normal;
117
+ line-height: 1em;
118
+ color: #1B1C1D;
119
+ text-transform: uppercase;
120
+ text-align: center;
121
+ }
122
+
123
+ /*--------------
124
+ Label
125
+ ---------------*/
126
+
127
+ .ui.statistics .statistic > .label,
128
+ .ui.statistic > .label {
129
+ font-family: $font-family;
130
+ font-size: 1em;
131
+ font-weight: bold;
132
+ color: rgba(0, 0, 0, 0.87);
133
+ text-transform: uppercase;
134
+ text-align: center;
135
+ }
136
+
137
+ /* Top Label */
138
+ .ui.statistics .statistic > .label ~ .value,
139
+ .ui.statistic > .label ~ .value {
140
+ margin-top: 0rem;
141
+ }
142
+
143
+ /* Bottom Label */
144
+ .ui.statistics .statistic > .value ~ .label,
145
+ .ui.statistic > .value ~ .label {
146
+ margin-top: 0rem;
147
+ }
148
+
149
+
150
+ /*******************************
151
+ Types
152
+ *******************************/
153
+
154
+
155
+ /*--------------
156
+ Icon Value
157
+ ---------------*/
158
+
159
+ .ui.statistics .statistic > .value .icon,
160
+ .ui.statistic > .value .icon {
161
+ opacity: 1;
162
+ width: auto;
163
+ margin: 0em;
164
+ }
165
+
166
+ /*--------------
167
+ Text Value
168
+ ---------------*/
169
+
170
+ .ui.statistics .statistic > .text.value,
171
+ .ui.statistic > .text.value {
172
+ line-height: 1em;
173
+ min-height: 2em;
174
+ font-weight: bold;
175
+ text-align: center;
176
+ }
177
+ .ui.statistics .statistic > .text.value + .label,
178
+ .ui.statistic > .text.value + .label {
179
+ text-align: center;
180
+ }
181
+
182
+ /*--------------
183
+ Image Value
184
+ ---------------*/
185
+
186
+ .ui.statistics .statistic > .value img,
187
+ .ui.statistic > .value img {
188
+ max-height: 3rem;
189
+ vertical-align: baseline;
190
+ }
191
+
192
+
193
+ /*******************************
194
+ Variations
195
+ *******************************/
196
+
197
+
198
+ /*--------------
199
+ Count
200
+ ---------------*/
201
+
202
+ .ui.ten.statistics {
203
+ margin: 0em 0em -2em;
204
+ }
205
+ .ui.ten.statistics .statistic {
206
+ min-width: 10%;
207
+ margin: 0em 0em 2em;
208
+ }
209
+ .ui.nine.statistics {
210
+ margin: 0em 0em -2em;
211
+ }
212
+ .ui.nine.statistics .statistic {
213
+ min-width: 11.11111111%;
214
+ margin: 0em 0em 2em;
215
+ }
216
+ .ui.eight.statistics {
217
+ margin: 0em 0em -2em;
218
+ }
219
+ .ui.eight.statistics .statistic {
220
+ min-width: 12.5%;
221
+ margin: 0em 0em 2em;
222
+ }
223
+ .ui.seven.statistics {
224
+ margin: 0em 0em -2em;
225
+ }
226
+ .ui.seven.statistics .statistic {
227
+ min-width: 14.28571429%;
228
+ margin: 0em 0em 2em;
229
+ }
230
+ .ui.six.statistics {
231
+ margin: 0em 0em -2em;
232
+ }
233
+ .ui.six.statistics .statistic {
234
+ min-width: 16.66666667%;
235
+ margin: 0em 0em 2em;
236
+ }
237
+ .ui.five.statistics {
238
+ margin: 0em 0em -2em;
239
+ }
240
+ .ui.five.statistics .statistic {
241
+ min-width: 20%;
242
+ margin: 0em 0em 2em;
243
+ }
244
+ .ui.four.statistics {
245
+ margin: 0em 0em -2em;
246
+ }
247
+ .ui.four.statistics .statistic {
248
+ min-width: 25%;
249
+ margin: 0em 0em 2em;
250
+ }
251
+ .ui.three.statistics {
252
+ margin: 0em 0em -2em;
253
+ }
254
+ .ui.three.statistics .statistic {
255
+ min-width: 33.33333333%;
256
+ margin: 0em 0em 2em;
257
+ }
258
+ .ui.two.statistics {
259
+ margin: 0em 0em -2em;
260
+ }
261
+ .ui.two.statistics .statistic {
262
+ min-width: 50%;
263
+ margin: 0em 0em 2em;
264
+ }
265
+ .ui.one.statistics {
266
+ margin: 0em 0em -2em;
267
+ }
268
+ .ui.one.statistics .statistic {
269
+ min-width: 100%;
270
+ margin: 0em 0em 2em;
271
+ }
272
+
273
+ /*--------------
274
+ Horizontal
275
+ ---------------*/
276
+
277
+ .ui.horizontal.statistic {
278
+ -webkit-box-orient: horizontal;
279
+ -webkit-box-direction: normal;
280
+ -webkit-flex-direction: row;
281
+ -ms-flex-direction: row;
282
+ flex-direction: row;
283
+ -webkit-box-align: center;
284
+ -webkit-align-items: center;
285
+ -ms-flex-align: center;
286
+ align-items: center;
287
+ }
288
+ .ui.horizontal.statistics {
289
+ -webkit-box-orient: vertical;
290
+ -webkit-box-direction: normal;
291
+ -webkit-flex-direction: column;
292
+ -ms-flex-direction: column;
293
+ flex-direction: column;
294
+ margin: 0em;
295
+ max-width: none;
296
+ }
297
+ .ui.horizontal.statistics .statistic {
298
+ -webkit-box-orient: horizontal;
299
+ -webkit-box-direction: normal;
300
+ -webkit-flex-direction: row;
301
+ -ms-flex-direction: row;
302
+ flex-direction: row;
303
+ -webkit-box-align: center;
304
+ -webkit-align-items: center;
305
+ -ms-flex-align: center;
306
+ align-items: center;
307
+ max-width: none;
308
+ margin: 1em 0em;
309
+ }
310
+ .ui.horizontal.statistic > .text.value,
311
+ .ui.horizontal.statistics > .statistic > .text.value {
312
+ min-height: 0em !important;
313
+ }
314
+ .ui.horizontal.statistics .statistic > .value .icon,
315
+ .ui.horizontal.statistic > .value .icon {
316
+ width: 1.18em;
317
+ }
318
+ .ui.horizontal.statistics .statistic > .value,
319
+ .ui.horizontal.statistic > .value {
320
+ display: inline-block;
321
+ vertical-align: middle;
322
+ }
323
+ .ui.horizontal.statistics .statistic > .label,
324
+ .ui.horizontal.statistic > .label {
325
+ display: inline-block;
326
+ vertical-align: middle;
327
+ margin: 0em 0em 0em 0.75em;
328
+ }
329
+
330
+ /*--------------
331
+ Colors
332
+ ---------------*/
333
+
334
+ .ui.red.statistics .statistic > .value,
335
+ .ui.statistics .red.statistic > .value,
336
+ .ui.red.statistic > .value {
337
+ color: #DB2828;
338
+ }
339
+ .ui.orange.statistics .statistic > .value,
340
+ .ui.statistics .orange.statistic > .value,
341
+ .ui.orange.statistic > .value {
342
+ color: #F2711C;
343
+ }
344
+ .ui.yellow.statistics .statistic > .value,
345
+ .ui.statistics .yellow.statistic > .value,
346
+ .ui.yellow.statistic > .value {
347
+ color: #FBBD08;
348
+ }
349
+ .ui.olive.statistics .statistic > .value,
350
+ .ui.statistics .olive.statistic > .value,
351
+ .ui.olive.statistic > .value {
352
+ color: #B5CC18;
353
+ }
354
+ .ui.green.statistics .statistic > .value,
355
+ .ui.statistics .green.statistic > .value,
356
+ .ui.green.statistic > .value {
357
+ color: #21BA45;
358
+ }
359
+ .ui.teal.statistics .statistic > .value,
360
+ .ui.statistics .teal.statistic > .value,
361
+ .ui.teal.statistic > .value {
362
+ color: #00B5AD;
363
+ }
364
+ .ui.blue.statistics .statistic > .value,
365
+ .ui.statistics .blue.statistic > .value,
366
+ .ui.blue.statistic > .value {
367
+ color: #2185D0;
368
+ }
369
+ .ui.violet.statistics .statistic > .value,
370
+ .ui.statistics .violet.statistic > .value,
371
+ .ui.violet.statistic > .value {
372
+ color: #6435C9;
373
+ }
374
+ .ui.purple.statistics .statistic > .value,
375
+ .ui.statistics .purple.statistic > .value,
376
+ .ui.purple.statistic > .value {
377
+ color: #A333C8;
378
+ }
379
+ .ui.pink.statistics .statistic > .value,
380
+ .ui.statistics .pink.statistic > .value,
381
+ .ui.pink.statistic > .value {
382
+ color: #E03997;
383
+ }
384
+ .ui.brown.statistics .statistic > .value,
385
+ .ui.statistics .brown.statistic > .value,
386
+ .ui.brown.statistic > .value {
387
+ color: #A5673F;
388
+ }
389
+ .ui.grey.statistics .statistic > .value,
390
+ .ui.statistics .grey.statistic > .value,
391
+ .ui.grey.statistic > .value {
392
+ color: #767676;
393
+ }
394
+
395
+ /*--------------
396
+ Inverted
397
+ ---------------*/
398
+
399
+ .ui.inverted.statistics .statistic > .value,
400
+ .ui.inverted.statistic .value {
401
+ color: #FFFFFF;
402
+ }
403
+ .ui.inverted.statistics .statistic > .label,
404
+ .ui.inverted.statistic .label {
405
+ color: rgba(255, 255, 255, 0.9);
406
+ }
407
+ .ui.inverted.red.statistics .statistic > .value,
408
+ .ui.statistics .inverted.red.statistic > .value,
409
+ .ui.inverted.red.statistic > .value {
410
+ color: #FF695E;
411
+ }
412
+ .ui.inverted.orange.statistics .statistic > .value,
413
+ .ui.statistics .inverted.orange.statistic > .value,
414
+ .ui.inverted.orange.statistic > .value {
415
+ color: #FF851B;
416
+ }
417
+ .ui.inverted.yellow.statistics .statistic > .value,
418
+ .ui.statistics .inverted.yellow.statistic > .value,
419
+ .ui.inverted.yellow.statistic > .value {
420
+ color: #FFE21F;
421
+ }
422
+ .ui.inverted.olive.statistics .statistic > .value,
423
+ .ui.statistics .inverted.olive.statistic > .value,
424
+ .ui.inverted.olive.statistic > .value {
425
+ color: #D9E778;
426
+ }
427
+ .ui.inverted.green.statistics .statistic > .value,
428
+ .ui.statistics .inverted.green.statistic > .value,
429
+ .ui.inverted.green.statistic > .value {
430
+ color: #2ECC40;
431
+ }
432
+ .ui.inverted.teal.statistics .statistic > .value,
433
+ .ui.statistics .inverted.teal.statistic > .value,
434
+ .ui.inverted.teal.statistic > .value {
435
+ color: #6DFFFF;
436
+ }
437
+ .ui.inverted.blue.statistics .statistic > .value,
438
+ .ui.statistics .inverted.blue.statistic > .value,
439
+ .ui.inverted.blue.statistic > .value {
440
+ color: #54C8FF;
441
+ }
442
+ .ui.inverted.violet.statistics .statistic > .value,
443
+ .ui.statistics .inverted.violet.statistic > .value,
444
+ .ui.inverted.violet.statistic > .value {
445
+ color: #A291FB;
446
+ }
447
+ .ui.inverted.purple.statistics .statistic > .value,
448
+ .ui.statistics .inverted.purple.statistic > .value,
449
+ .ui.inverted.purple.statistic > .value {
450
+ color: #DC73FF;
451
+ }
452
+ .ui.inverted.pink.statistics .statistic > .value,
453
+ .ui.statistics .inverted.pink.statistic > .value,
454
+ .ui.inverted.pink.statistic > .value {
455
+ color: #FF8EDF;
456
+ }
457
+ .ui.inverted.brown.statistics .statistic > .value,
458
+ .ui.statistics .inverted.brown.statistic > .value,
459
+ .ui.inverted.brown.statistic > .value {
460
+ color: #D67C1C;
461
+ }
462
+ .ui.inverted.grey.statistics .statistic > .value,
463
+ .ui.statistics .inverted.grey.statistic > .value,
464
+ .ui.inverted.grey.statistic > .value {
465
+ color: #DCDDDE;
466
+ }
467
+
468
+ /*--------------
469
+ Floated
470
+ ---------------*/
471
+
472
+ .ui[class*="left floated"].statistic {
473
+ float: left;
474
+ margin: 0em 2em 1em 0em;
475
+ }
476
+ .ui[class*="right floated"].statistic {
477
+ float: right;
478
+ margin: 0em 0em 1em 2em;
479
+ }
480
+ .ui.floated.statistic:last-child {
481
+ margin-bottom: 0em;
482
+ }
483
+
484
+ /*--------------
485
+ Sizes
486
+ ---------------*/
487
+
488
+
489
+ /* Mini */
490
+ .ui.mini.statistics .statistic > .value,
491
+ .ui.mini.statistic > .value {
492
+ font-size: 1.5rem !important;
493
+ }
494
+ .ui.mini.horizontal.statistics .statistic > .value,
495
+ .ui.mini.horizontal.statistic > .value {
496
+ font-size: 1.5rem !important;
497
+ }
498
+ .ui.mini.statistics .statistic > .text.value,
499
+ .ui.mini.statistic > .text.value {
500
+ font-size: 1rem !important;
501
+ }
502
+
503
+ /* Tiny */
504
+ .ui.tiny.statistics .statistic > .value,
505
+ .ui.tiny.statistic > .value {
506
+ font-size: 2rem !important;
507
+ }
508
+ .ui.tiny.horizontal.statistics .statistic > .value,
509
+ .ui.tiny.horizontal.statistic > .value {
510
+ font-size: 2rem !important;
511
+ }
512
+ .ui.tiny.statistics .statistic > .text.value,
513
+ .ui.tiny.statistic > .text.value {
514
+ font-size: 1rem !important;
515
+ }
516
+
517
+ /* Small */
518
+ .ui.small.statistics .statistic > .value,
519
+ .ui.small.statistic > .value {
520
+ font-size: 3rem !important;
521
+ }
522
+ .ui.small.horizontal.statistics .statistic > .value,
523
+ .ui.small.horizontal.statistic > .value {
524
+ font-size: 2rem !important;
525
+ }
526
+ .ui.small.statistics .statistic > .text.value,
527
+ .ui.small.statistic > .text.value {
528
+ font-size: 1rem !important;
529
+ }
530
+
531
+ /* Medium */
532
+ .ui.statistics .statistic > .value,
533
+ .ui.statistic > .value {
534
+ font-size: 4rem !important;
535
+ }
536
+ .ui.horizontal.statistics .statistic > .value,
537
+ .ui.horizontal.statistic > .value {
538
+ font-size: 3rem !important;
539
+ }
540
+ .ui.statistics .statistic > .text.value,
541
+ .ui.statistic > .text.value {
542
+ font-size: 2rem !important;
543
+ }
544
+
545
+ /* Large */
546
+ .ui.large.statistics .statistic > .value,
547
+ .ui.large.statistic > .value {
548
+ font-size: 5rem !important;
549
+ }
550
+ .ui.large.horizontal.statistics .statistic > .value,
551
+ .ui.large.horizontal.statistic > .value {
552
+ font-size: 4rem !important;
553
+ }
554
+ .ui.large.statistics .statistic > .text.value,
555
+ .ui.large.statistic > .text.value {
556
+ font-size: 2.5rem !important;
557
+ }
558
+
559
+ /* Huge */
560
+ .ui.huge.statistics .statistic > .value,
561
+ .ui.huge.statistic > .value {
562
+ font-size: 6rem !important;
563
+ }
564
+ .ui.huge.horizontal.statistics .statistic > .value,
565
+ .ui.huge.horizontal.statistic > .value {
566
+ font-size: 5rem !important;
567
+ }
568
+ .ui.huge.statistics .statistic > .text.value,
569
+ .ui.huge.statistic > .text.value {
570
+ font-size: 2.5rem !important;
571
+ }
572
+
573
+
574
+ /*******************************
575
+ Theme Overrides
576
+ *******************************/
577
+
578
+
579
+
580
+ /*******************************
581
+ User Variable Overrides
582
+ *******************************/
583
+