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,721 @@
1
+ /*!
2
+ * # Semantic UI 2.2.4 - Header
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
+ Header
14
+ *******************************/
15
+
16
+
17
+ /* Standard */
18
+ .ui.header {
19
+ border: none;
20
+ margin: calc(2rem - 0.14285em ) 0em 1rem;
21
+ padding: 0em 0em;
22
+ font-family: $font-family;
23
+ font-weight: bold;
24
+ line-height: 1.2857em;
25
+ text-transform: none;
26
+ color: rgba(0, 0, 0, 0.87);
27
+ }
28
+ .ui.header:first-child {
29
+ margin-top: -0.14285em;
30
+ }
31
+ .ui.header:last-child {
32
+ margin-bottom: 0em;
33
+ }
34
+
35
+ /*--------------
36
+ Sub Header
37
+ ---------------*/
38
+
39
+ .ui.header .sub.header {
40
+ display: block;
41
+ font-weight: normal;
42
+ padding: 0em;
43
+ margin: 0em;
44
+ font-size: 1rem;
45
+ line-height: 1.2em;
46
+ color: rgba(0, 0, 0, 0.6);
47
+ }
48
+
49
+ /*--------------
50
+ Icon
51
+ ---------------*/
52
+
53
+ .ui.header > .icon {
54
+ display: table-cell;
55
+ opacity: 1;
56
+ font-size: 1.5em;
57
+ padding-top: 0.14285em;
58
+ vertical-align: middle;
59
+ }
60
+
61
+ /* With Text Node */
62
+ .ui.header .icon:only-child {
63
+ display: inline-block;
64
+ padding: 0em;
65
+ margin-right: 0.75rem;
66
+ }
67
+
68
+ /*-------------------
69
+ Image
70
+ --------------------*/
71
+
72
+ .ui.header > .image,
73
+ .ui.header > img {
74
+ display: inline-block;
75
+ margin-top: 0.14285em;
76
+ width: 2.5em;
77
+ height: auto;
78
+ vertical-align: middle;
79
+ }
80
+ .ui.header > .image:only-child,
81
+ .ui.header > img:only-child {
82
+ margin-right: 0.75rem;
83
+ }
84
+
85
+ /*--------------
86
+ Content
87
+ ---------------*/
88
+
89
+ .ui.header .content {
90
+ display: inline-block;
91
+ vertical-align: top;
92
+ }
93
+
94
+ /* After Image */
95
+ .ui.header > img + .content,
96
+ .ui.header > .image + .content {
97
+ padding-left: 0.75rem;
98
+ vertical-align: middle;
99
+ }
100
+
101
+ /* After Icon */
102
+ .ui.header > .icon + .content {
103
+ padding-left: 0.75rem;
104
+ display: table-cell;
105
+ vertical-align: middle;
106
+ }
107
+
108
+ /*--------------
109
+ Loose Coupling
110
+ ---------------*/
111
+
112
+ .ui.header .ui.label {
113
+ font-size: '';
114
+ margin-left: 0.5rem;
115
+ vertical-align: middle;
116
+ }
117
+
118
+ /* Positioning */
119
+ .ui.header + p {
120
+ margin-top: 0em;
121
+ }
122
+
123
+
124
+ /*******************************
125
+ Types
126
+ *******************************/
127
+
128
+
129
+ /*--------------
130
+ Page
131
+ ---------------*/
132
+
133
+ h1.ui.header {
134
+ font-size: 2rem;
135
+ }
136
+ h2.ui.header {
137
+ font-size: 1.714rem;
138
+ }
139
+ h3.ui.header {
140
+ font-size: 1.28rem;
141
+ }
142
+ h4.ui.header {
143
+ font-size: 1.071rem;
144
+ }
145
+ h5.ui.header {
146
+ font-size: 1rem;
147
+ }
148
+
149
+ /* Sub Header */
150
+ h1.ui.header .sub.header {
151
+ font-size: 1.14285714rem;
152
+ }
153
+ h2.ui.header .sub.header {
154
+ font-size: 1.14285714rem;
155
+ }
156
+ h3.ui.header .sub.header {
157
+ font-size: 1rem;
158
+ }
159
+ h4.ui.header .sub.header {
160
+ font-size: 1rem;
161
+ }
162
+ h5.ui.header .sub.header {
163
+ font-size: 0.92857143rem;
164
+ }
165
+
166
+ /*--------------
167
+ Content Heading
168
+ ---------------*/
169
+
170
+ .ui.huge.header {
171
+ min-height: 1em;
172
+ font-size: 2em;
173
+ }
174
+ .ui.large.header {
175
+ font-size: 1.714em;
176
+ }
177
+ .ui.medium.header {
178
+ font-size: 1.28em;
179
+ }
180
+ .ui.small.header {
181
+ font-size: 1.071em;
182
+ }
183
+ .ui.tiny.header {
184
+ font-size: 1em;
185
+ }
186
+
187
+ /* Sub Header */
188
+ .ui.huge.header .sub.header {
189
+ font-size: 1.14285714rem;
190
+ }
191
+ .ui.large.header .sub.header {
192
+ font-size: 1.14285714rem;
193
+ }
194
+ .ui.header .sub.header {
195
+ font-size: 1rem;
196
+ }
197
+ .ui.small.header .sub.header {
198
+ font-size: 1rem;
199
+ }
200
+ .ui.tiny.header .sub.header {
201
+ font-size: 0.92857143rem;
202
+ }
203
+
204
+ /*--------------
205
+ Sub Heading
206
+ ---------------*/
207
+
208
+ .ui.sub.header {
209
+ padding: 0em;
210
+ margin-bottom: 0.14285714rem;
211
+ font-weight: bold;
212
+ font-size: 0.85714286em;
213
+ text-transform: uppercase;
214
+ color: '';
215
+ }
216
+ .ui.small.sub.header {
217
+ font-size: 0.78571429em;
218
+ }
219
+ .ui.sub.header {
220
+ font-size: 0.85714286em;
221
+ }
222
+ .ui.large.sub.header {
223
+ font-size: 0.92857143em;
224
+ }
225
+ .ui.huge.sub.header {
226
+ font-size: 1em;
227
+ }
228
+
229
+ /*-------------------
230
+ Icon
231
+ --------------------*/
232
+
233
+ .ui.icon.header {
234
+ display: inline-block;
235
+ text-align: center;
236
+ margin: 2rem 0em 1rem;
237
+ }
238
+ .ui.icon.header:after {
239
+ content: '';
240
+ display: block;
241
+ height: 0px;
242
+ clear: both;
243
+ visibility: hidden;
244
+ }
245
+ .ui.icon.header:first-child {
246
+ margin-top: 0em;
247
+ }
248
+ .ui.icon.header .icon {
249
+ float: none;
250
+ display: block;
251
+ width: auto;
252
+ height: auto;
253
+ line-height: 1;
254
+ padding: 0em;
255
+ font-size: 3em;
256
+ margin: 0em auto 0.5rem;
257
+ opacity: 1;
258
+ }
259
+ .ui.icon.header .content {
260
+ display: block;
261
+ padding: 0em;
262
+ }
263
+ .ui.icon.header .circular.icon {
264
+ font-size: 2em;
265
+ }
266
+ .ui.icon.header .square.icon {
267
+ font-size: 2em;
268
+ }
269
+ .ui.block.icon.header .icon {
270
+ margin-bottom: 0em;
271
+ }
272
+ .ui.icon.header.aligned {
273
+ margin-left: auto;
274
+ margin-right: auto;
275
+ display: block;
276
+ }
277
+
278
+
279
+ /*******************************
280
+ States
281
+ *******************************/
282
+
283
+ .ui.disabled.header {
284
+ opacity: 0.45;
285
+ }
286
+
287
+
288
+ /*******************************
289
+ Variations
290
+ *******************************/
291
+
292
+
293
+ /*-------------------
294
+ Inverted
295
+ --------------------*/
296
+
297
+ .ui.inverted.header {
298
+ color: #FFFFFF;
299
+ }
300
+ .ui.inverted.header .sub.header {
301
+ color: rgba(255, 255, 255, 0.8);
302
+ }
303
+ .ui.inverted.attached.header {
304
+ background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
305
+ background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
306
+ box-shadow: none;
307
+ border-color: transparent;
308
+ }
309
+ .ui.inverted.block.header {
310
+ background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
311
+ background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
312
+ box-shadow: none;
313
+ }
314
+ .ui.inverted.block.header {
315
+ border-bottom: none;
316
+ }
317
+
318
+ /*-------------------
319
+ Colors
320
+ --------------------*/
321
+
322
+
323
+ /*--- Red ---*/
324
+
325
+ .ui.red.header {
326
+ color: #DB2828 !important;
327
+ }
328
+ a.ui.red.header:hover {
329
+ color: #d01919 !important;
330
+ }
331
+ .ui.red.dividing.header {
332
+ border-bottom: 2px solid #DB2828;
333
+ }
334
+
335
+ /* Inverted */
336
+ .ui.inverted.red.header {
337
+ color: #FF695E !important;
338
+ }
339
+ a.ui.inverted.red.header:hover {
340
+ color: #ff5144 !important;
341
+ }
342
+
343
+ /*--- Orange ---*/
344
+
345
+ .ui.orange.header {
346
+ color: #F2711C !important;
347
+ }
348
+ a.ui.orange.header:hover {
349
+ color: #f26202 !important;
350
+ }
351
+ .ui.orange.dividing.header {
352
+ border-bottom: 2px solid #F2711C;
353
+ }
354
+
355
+ /* Inverted */
356
+ .ui.inverted.orange.header {
357
+ color: #FF851B !important;
358
+ }
359
+ a.ui.inverted.orange.header:hover {
360
+ color: #ff7701 !important;
361
+ }
362
+
363
+ /*--- Olive ---*/
364
+
365
+ .ui.olive.header {
366
+ color: #B5CC18 !important;
367
+ }
368
+ a.ui.olive.header:hover {
369
+ color: #a7bd0d !important;
370
+ }
371
+ .ui.olive.dividing.header {
372
+ border-bottom: 2px solid #B5CC18;
373
+ }
374
+
375
+ /* Inverted */
376
+ .ui.inverted.olive.header {
377
+ color: #D9E778 !important;
378
+ }
379
+ a.ui.inverted.olive.header:hover {
380
+ color: #d8ea5c !important;
381
+ }
382
+
383
+ /*--- Yellow ---*/
384
+
385
+ .ui.yellow.header {
386
+ color: #FBBD08 !important;
387
+ }
388
+ a.ui.yellow.header:hover {
389
+ color: #eaae00 !important;
390
+ }
391
+ .ui.yellow.dividing.header {
392
+ border-bottom: 2px solid #FBBD08;
393
+ }
394
+
395
+ /* Inverted */
396
+ .ui.inverted.yellow.header {
397
+ color: #FFE21F !important;
398
+ }
399
+ a.ui.inverted.yellow.header:hover {
400
+ color: #ffdf05 !important;
401
+ }
402
+
403
+ /*--- Green ---*/
404
+
405
+ .ui.green.header {
406
+ color: #21BA45 !important;
407
+ }
408
+ a.ui.green.header:hover {
409
+ color: #16ab39 !important;
410
+ }
411
+ .ui.green.dividing.header {
412
+ border-bottom: 2px solid #21BA45;
413
+ }
414
+
415
+ /* Inverted */
416
+ .ui.inverted.green.header {
417
+ color: #2ECC40 !important;
418
+ }
419
+ a.ui.inverted.green.header:hover {
420
+ color: #22be34 !important;
421
+ }
422
+
423
+ /*--- Teal ---*/
424
+
425
+ .ui.teal.header {
426
+ color: #00B5AD !important;
427
+ }
428
+ a.ui.teal.header:hover {
429
+ color: #009c95 !important;
430
+ }
431
+ .ui.teal.dividing.header {
432
+ border-bottom: 2px solid #00B5AD;
433
+ }
434
+
435
+ /* Inverted */
436
+ .ui.inverted.teal.header {
437
+ color: #6DFFFF !important;
438
+ }
439
+ a.ui.inverted.teal.header:hover {
440
+ color: #54ffff !important;
441
+ }
442
+
443
+ /*--- Blue ---*/
444
+
445
+ .ui.blue.header {
446
+ color: #2185D0 !important;
447
+ }
448
+ a.ui.blue.header:hover {
449
+ color: #1678c2 !important;
450
+ }
451
+ .ui.blue.dividing.header {
452
+ border-bottom: 2px solid #2185D0;
453
+ }
454
+
455
+ /* Inverted */
456
+ .ui.inverted.blue.header {
457
+ color: #54C8FF !important;
458
+ }
459
+ a.ui.inverted.blue.header:hover {
460
+ color: #3ac0ff !important;
461
+ }
462
+
463
+ /*--- Violet ---*/
464
+
465
+ .ui.violet.header {
466
+ color: #6435C9 !important;
467
+ }
468
+ a.ui.violet.header:hover {
469
+ color: #5829bb !important;
470
+ }
471
+ .ui.violet.dividing.header {
472
+ border-bottom: 2px solid #6435C9;
473
+ }
474
+
475
+ /* Inverted */
476
+ .ui.inverted.violet.header {
477
+ color: #A291FB !important;
478
+ }
479
+ a.ui.inverted.violet.header:hover {
480
+ color: #8a73ff !important;
481
+ }
482
+
483
+ /*--- Purple ---*/
484
+
485
+ .ui.purple.header {
486
+ color: #A333C8 !important;
487
+ }
488
+ a.ui.purple.header:hover {
489
+ color: #9627ba !important;
490
+ }
491
+ .ui.purple.dividing.header {
492
+ border-bottom: 2px solid #A333C8;
493
+ }
494
+
495
+ /* Inverted */
496
+ .ui.inverted.purple.header {
497
+ color: #DC73FF !important;
498
+ }
499
+ a.ui.inverted.purple.header:hover {
500
+ color: #d65aff !important;
501
+ }
502
+
503
+ /*--- Pink ---*/
504
+
505
+ .ui.pink.header {
506
+ color: #E03997 !important;
507
+ }
508
+ a.ui.pink.header:hover {
509
+ color: #e61a8d !important;
510
+ }
511
+ .ui.pink.dividing.header {
512
+ border-bottom: 2px solid #E03997;
513
+ }
514
+
515
+ /* Inverted */
516
+ .ui.inverted.pink.header {
517
+ color: #FF8EDF !important;
518
+ }
519
+ a.ui.inverted.pink.header:hover {
520
+ color: #ff74d8 !important;
521
+ }
522
+
523
+ /*--- Brown ---*/
524
+
525
+ .ui.brown.header {
526
+ color: #A5673F !important;
527
+ }
528
+ a.ui.brown.header:hover {
529
+ color: #975b33 !important;
530
+ }
531
+ .ui.brown.dividing.header {
532
+ border-bottom: 2px solid #A5673F;
533
+ }
534
+
535
+ /* Inverted */
536
+ .ui.inverted.brown.header {
537
+ color: #D67C1C !important;
538
+ }
539
+ a.ui.inverted.brown.header:hover {
540
+ color: #c86f11 !important;
541
+ }
542
+
543
+ /*--- Grey ---*/
544
+
545
+ .ui.grey.header {
546
+ color: #767676 !important;
547
+ }
548
+ a.ui.grey.header:hover {
549
+ color: #838383 !important;
550
+ }
551
+ .ui.grey.dividing.header {
552
+ border-bottom: 2px solid #767676;
553
+ }
554
+
555
+ /* Inverted */
556
+ .ui.inverted.grey.header {
557
+ color: #DCDDDE !important;
558
+ }
559
+ a.ui.inverted.grey.header:hover {
560
+ color: #cfd0d2 !important;
561
+ }
562
+
563
+ /*-------------------
564
+ Aligned
565
+ --------------------*/
566
+
567
+ .ui.left.aligned.header {
568
+ text-align: left;
569
+ }
570
+ .ui.right.aligned.header {
571
+ text-align: right;
572
+ }
573
+ .ui.centered.header,
574
+ .ui.center.aligned.header {
575
+ text-align: center;
576
+ }
577
+ .ui.justified.header {
578
+ text-align: justify;
579
+ }
580
+ .ui.justified.header:after {
581
+ display: inline-block;
582
+ content: '';
583
+ width: 100%;
584
+ }
585
+
586
+ /*-------------------
587
+ Floated
588
+ --------------------*/
589
+
590
+ .ui.floated.header,
591
+ .ui[class*="left floated"].header {
592
+ float: left;
593
+ margin-top: 0em;
594
+ margin-right: 0.5em;
595
+ }
596
+ .ui[class*="right floated"].header {
597
+ float: right;
598
+ margin-top: 0em;
599
+ margin-left: 0.5em;
600
+ }
601
+
602
+ /*-------------------
603
+ Fitted
604
+ --------------------*/
605
+
606
+ .ui.fitted.header {
607
+ padding: 0em;
608
+ }
609
+
610
+ /*-------------------
611
+ Dividing
612
+ --------------------*/
613
+
614
+ .ui.dividing.header {
615
+ padding-bottom: 0.21428571rem;
616
+ border-bottom: 1px solid rgba(34, 36, 38, 0.15);
617
+ }
618
+ .ui.dividing.header .sub.header {
619
+ padding-bottom: 0.21428571rem;
620
+ }
621
+ .ui.dividing.header .icon {
622
+ margin-bottom: 0em;
623
+ }
624
+ .ui.inverted.dividing.header {
625
+ border-bottom-color: rgba(255, 255, 255, 0.1);
626
+ }
627
+
628
+ /*-------------------
629
+ Block
630
+ --------------------*/
631
+
632
+ .ui.block.header {
633
+ background: #F3F4F5;
634
+ padding: 0.78571429rem 1rem;
635
+ box-shadow: none;
636
+ border: 1px solid #D4D4D5;
637
+ border-radius: 0.28571429rem;
638
+ }
639
+ .ui.tiny.block.header {
640
+ font-size: 0.85714286rem;
641
+ }
642
+ .ui.small.block.header {
643
+ font-size: 0.92857143rem;
644
+ }
645
+ .ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
646
+ font-size: 1rem;
647
+ }
648
+ .ui.large.block.header {
649
+ font-size: 1.14285714rem;
650
+ }
651
+ .ui.huge.block.header {
652
+ font-size: 1.42857143rem;
653
+ }
654
+
655
+ /*-------------------
656
+ Attached
657
+ --------------------*/
658
+
659
+ .ui.attached.header {
660
+ background: #FFFFFF;
661
+ padding: 0.78571429rem 1rem;
662
+ margin-left: -1px;
663
+ margin-right: -1px;
664
+ box-shadow: none;
665
+ border: 1px solid #D4D4D5;
666
+ }
667
+ .ui.attached.block.header {
668
+ background: #F3F4F5;
669
+ }
670
+ .ui.attached:not(.top):not(.bottom).header {
671
+ margin-top: 0em;
672
+ margin-bottom: 0em;
673
+ border-top: none;
674
+ border-radius: 0em;
675
+ }
676
+ .ui.top.attached.header {
677
+ margin-bottom: 0em;
678
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
679
+ }
680
+ .ui.bottom.attached.header {
681
+ margin-top: 0em;
682
+ border-top: none;
683
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
684
+ }
685
+
686
+ /* Attached Sizes */
687
+ .ui.tiny.attached.header {
688
+ font-size: 0.85714286em;
689
+ }
690
+ .ui.small.attached.header {
691
+ font-size: 0.92857143em;
692
+ }
693
+ .ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
694
+ font-size: 1em;
695
+ }
696
+ .ui.large.attached.header {
697
+ font-size: 1.14285714em;
698
+ }
699
+ .ui.huge.attached.header {
700
+ font-size: 1.42857143em;
701
+ }
702
+
703
+ /*-------------------
704
+ Sizing
705
+ --------------------*/
706
+
707
+ .ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
708
+ font-size: 1.28em;
709
+ }
710
+
711
+
712
+ /*******************************
713
+ Theme Overrides
714
+ *******************************/
715
+
716
+
717
+
718
+ /*******************************
719
+ Site Overrides
720
+ *******************************/
721
+