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 @@
1
+ .pace{-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.pace-inactive{display:none}.pace .pace-progress{background:#29d;position:fixed;z-index:2000;top:0;right:100%;width:100%;height:2px}
@@ -0,0 +1,7 @@
1
+ // @import 'breadcrumb';
2
+ @import 'form';
3
+ @import 'mixins';
4
+ @import 'grid';
5
+ @import 'menu';
6
+ // @import 'message';
7
+ @import 'table';
@@ -0,0 +1,124 @@
1
+ /*!
2
+ * # Semantic UI 2.2.4 - Breadcrumb
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
+ Breadcrumb
14
+ *******************************/
15
+
16
+ .ui.breadcrumb {
17
+ line-height: 1;
18
+ display: inline-block;
19
+ margin: 0em 0em;
20
+ vertical-align: middle;
21
+ }
22
+ .ui.breadcrumb:first-child {
23
+ margin-top: 0em;
24
+ }
25
+ .ui.breadcrumb:last-child {
26
+ margin-bottom: 0em;
27
+ }
28
+
29
+
30
+ /*******************************
31
+ Content
32
+ *******************************/
33
+
34
+
35
+ /* Divider */
36
+ .ui.breadcrumb .divider {
37
+ display: inline-block;
38
+ opacity: 0.7;
39
+ margin: 0em 0.21428571rem 0em;
40
+ font-size: 0.92857143em;
41
+ color: rgba(0, 0, 0, 0.4);
42
+ vertical-align: baseline;
43
+ }
44
+
45
+ /* Link */
46
+ .ui.breadcrumb a {
47
+ color: #4183C4;
48
+ }
49
+ .ui.breadcrumb a:hover {
50
+ color: #1e70bf;
51
+ }
52
+
53
+ /* Icon Divider */
54
+ .ui.breadcrumb .icon.divider {
55
+ font-size: 0.85714286em;
56
+ vertical-align: baseline;
57
+ }
58
+
59
+ /* Section */
60
+ .ui.breadcrumb a.section {
61
+ cursor: pointer;
62
+ }
63
+ .ui.breadcrumb .section {
64
+ display: inline-block;
65
+ margin: 0em;
66
+ padding: 0em;
67
+ }
68
+
69
+ /* Loose Coupling */
70
+ .ui.breadcrumb.segment {
71
+ display: inline-block;
72
+ padding: 0.78571429em 1em;
73
+ }
74
+
75
+
76
+ /*******************************
77
+ States
78
+ *******************************/
79
+
80
+ .ui.breadcrumb .active.section {
81
+ font-weight: bold;
82
+ }
83
+
84
+
85
+ /*******************************
86
+ Variations
87
+ *******************************/
88
+
89
+ .ui.mini.breadcrumb {
90
+ font-size: 0.78571429rem;
91
+ }
92
+ .ui.tiny.breadcrumb {
93
+ font-size: 0.85714286rem;
94
+ }
95
+ .ui.small.breadcrumb {
96
+ font-size: 0.92857143rem;
97
+ }
98
+ .ui.breadcrumb {
99
+ font-size: 1rem;
100
+ }
101
+ .ui.large.breadcrumb {
102
+ font-size: 1.14285714rem;
103
+ }
104
+ .ui.big.breadcrumb {
105
+ font-size: 1.28571429rem;
106
+ }
107
+ .ui.huge.breadcrumb {
108
+ font-size: 1.42857143rem;
109
+ }
110
+ .ui.massive.breadcrumb {
111
+ font-size: 1.71428571rem;
112
+ }
113
+
114
+
115
+ /*******************************
116
+ Theme Overrides
117
+ *******************************/
118
+
119
+
120
+
121
+ /*******************************
122
+ Site Overrides
123
+ *******************************/
124
+
@@ -0,0 +1,1706 @@
1
+ /*!
2
+ * # Semantic UI 2.2.4 - Form
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
+ Elements
14
+ *******************************/
15
+
16
+
17
+ /*--------------------
18
+ Form
19
+ ---------------------*/
20
+
21
+ .form {
22
+ position: relative;
23
+ max-width: 100%;
24
+ }
25
+
26
+ /*--------------------
27
+ Content
28
+ ---------------------*/
29
+
30
+ .form > p {
31
+ margin: 1em 0em;
32
+ }
33
+
34
+ /*--------------------
35
+ Field
36
+ ---------------------*/
37
+
38
+ .form .field {
39
+ clear: both;
40
+ margin: 0em 0em 1em;
41
+ }
42
+ .form .field:last-child,
43
+ .form .fields:last-child .field {
44
+ margin-bottom: 0em;
45
+ }
46
+ .form .fields .field {
47
+ clear: both;
48
+ margin: 0em;
49
+ }
50
+
51
+ /*--------------------
52
+ Labels
53
+ ---------------------*/
54
+
55
+ .form .field > label {
56
+ display: block;
57
+ margin: 0em 0em 0.28571429rem 0em;
58
+ color: rgba(0, 0, 0, 0.87);
59
+ font-size: 0.92857143em;
60
+ font-weight: bold;
61
+ text-transform: none;
62
+ }
63
+
64
+ /*--------------------
65
+ Standard Inputs
66
+ ---------------------*/
67
+
68
+ .form textarea,
69
+ .form input:not([type]),
70
+ .form input[type="date"],
71
+ .form input[type="datetime-local"],
72
+ .form input[type="email"],
73
+ .form input[type="number"],
74
+ .form input[type="password"],
75
+ .form input[type="search"],
76
+ .form input[type="tel"],
77
+ .form input[type="time"],
78
+ .form input[type="text"],
79
+ .form input[type="file"],
80
+ .form input[type="url"] {
81
+ width: 100%;
82
+ vertical-align: top;
83
+ }
84
+
85
+ /* Set max height on unusual input */
86
+ .form ::-webkit-datetime-edit,
87
+ .form ::-webkit-inner-spin-button {
88
+ height: 1.2142em;
89
+ }
90
+ .form input:not([type]),
91
+ .form input[type="date"],
92
+ .form input[type="datetime-local"],
93
+ .form input[type="email"],
94
+ .form input[type="number"],
95
+ .form input[type="password"],
96
+ .form input[type="search"],
97
+ .form input[type="tel"],
98
+ .form input[type="time"],
99
+ .form input[type="text"],
100
+ .form input[type="file"],
101
+ .form input[type="url"] {
102
+ font-family: $font-family;
103
+ margin: 0em;
104
+ outline: none;
105
+ -webkit-appearance: none;
106
+ tap-highlight-color: rgba(255, 255, 255, 0);
107
+ line-height: 1.2142em;
108
+ padding: 0.67861429em 1em;
109
+ font-size: 1em;
110
+ background: #FFFFFF;
111
+ border: 1px solid rgba(34, 36, 38, 0.15);
112
+ color: rgba(0, 0, 0, 0.87);
113
+ border-radius: 0.28571429rem;
114
+ box-shadow: 0em 0em 0em 0em transparent inset;
115
+ -webkit-transition: color 0.1s ease, border-color 0.1s ease;
116
+ transition: color 0.1s ease, border-color 0.1s ease;
117
+ }
118
+
119
+ /* Text Area */
120
+ .form textarea {
121
+ margin: 0em;
122
+ -webkit-appearance: none;
123
+ tap-highlight-color: rgba(255, 255, 255, 0);
124
+ padding: 0.78571429em 1em;
125
+ background: #FFFFFF;
126
+ border: 1px solid rgba(34, 36, 38, 0.15);
127
+ outline: none;
128
+ color: rgba(0, 0, 0, 0.87);
129
+ border-radius: 0.28571429rem;
130
+ box-shadow: 0em 0em 0em 0em transparent inset;
131
+ -webkit-transition: color 0.1s ease, border-color 0.1s ease;
132
+ transition: color 0.1s ease, border-color 0.1s ease;
133
+ font-size: 1em;
134
+ line-height: 1.2857;
135
+ resize: vertical;
136
+ }
137
+ .form textarea:not([rows]) {
138
+ height: 12em;
139
+ min-height: 8em;
140
+ max-height: 24em;
141
+ }
142
+ .form textarea,
143
+ .form input[type="checkbox"] {
144
+ vertical-align: top;
145
+ }
146
+
147
+ /*--------------------------
148
+ Input w/ attached Button
149
+ ---------------------------*/
150
+
151
+ .form input.attached {
152
+ width: auto;
153
+ }
154
+
155
+ /*--------------------
156
+ Basic Select
157
+ ---------------------*/
158
+
159
+ .form select {
160
+ display: block;
161
+ height: auto;
162
+ width: 100%;
163
+ background: #FFFFFF;
164
+ border: 1px solid rgba(34, 36, 38, 0.15);
165
+ border-radius: 0.28571429rem;
166
+ box-shadow: 0em 0em 0em 0em transparent inset;
167
+ padding: 0.62em 1em;
168
+ color: rgba(0, 0, 0, 0.87);
169
+ -webkit-transition: color 0.1s ease, border-color 0.1s ease;
170
+ transition: color 0.1s ease, border-color 0.1s ease;
171
+ }
172
+
173
+ /*--------------------
174
+ Dropdown
175
+ ---------------------*/
176
+
177
+
178
+ /* Block */
179
+ .form .field > .selection.dropdown {
180
+ width: 100%;
181
+ }
182
+ .form .field > .selection.dropdown > .dropdown.icon {
183
+ float: right;
184
+ }
185
+
186
+ /* Inline */
187
+ .form .inline.fields .field > .selection.dropdown,
188
+ .form .inline.field > .selection.dropdown {
189
+ width: auto;
190
+ }
191
+ .form .inline.fields .field > .selection.dropdown > .dropdown.icon,
192
+ .form .inline.field > .selection.dropdown > .dropdown.icon {
193
+ float: none;
194
+ }
195
+
196
+ /*--------------------
197
+ UI Input
198
+ ---------------------*/
199
+
200
+
201
+ /* Block */
202
+ .form .field .input,
203
+ .form .fields .field .input,
204
+ .form .wide.field .input {
205
+ width: 100%;
206
+ }
207
+
208
+ /* Inline */
209
+ .form .inline.fields .field:not(.wide) .input,
210
+ .form .inline.field:not(.wide) .input {
211
+ width: auto;
212
+ vertical-align: middle;
213
+ }
214
+
215
+ /* Auto Input */
216
+ .form .fields .field .input input,
217
+ .form .field .input input {
218
+ width: auto;
219
+ }
220
+
221
+ /* Full Width Input */
222
+ .form .ten.fields .input input,
223
+ .form .nine.fields .input input,
224
+ .form .eight.fields .input input,
225
+ .form .seven.fields .input input,
226
+ .form .six.fields .input input,
227
+ .form .five.fields .input input,
228
+ .form .four.fields .input input,
229
+ .form .three.fields .input input,
230
+ .form .two.fields .input input,
231
+ .form .wide.field .input input {
232
+ -webkit-box-flex: 1;
233
+ -webkit-flex: 1 0 auto;
234
+ -ms-flex: 1 0 auto;
235
+ flex: 1 0 auto;
236
+ width: 0px;
237
+ }
238
+
239
+ /*--------------------
240
+ Types of Messages
241
+ ---------------------*/
242
+
243
+ .form .success.message,
244
+ .form .warning.message,
245
+ .form .error.message {
246
+ display: none;
247
+ }
248
+
249
+ /* Assumptions */
250
+ .form .message:first-child {
251
+ margin-top: 0px;
252
+ }
253
+
254
+ /*--------------------
255
+ Validation Prompt
256
+ ---------------------*/
257
+
258
+ .form .field .prompt.label {
259
+ white-space: normal;
260
+ background: #FFFFFF !important;
261
+ border: 1px solid #E0B4B4 !important;
262
+ color: #9F3A38 !important;
263
+ }
264
+ .form .inline.fields .field .prompt,
265
+ .form .inline.field .prompt {
266
+ vertical-align: top;
267
+ margin: -0.25em 0em -0.5em 0.5em;
268
+ }
269
+ .form .inline.fields .field .prompt:before,
270
+ .form .inline.field .prompt:before {
271
+ border-width: 0px 0px 1px 1px;
272
+ bottom: auto;
273
+ right: auto;
274
+ top: 50%;
275
+ left: 0em;
276
+ }
277
+
278
+
279
+ /*******************************
280
+ States
281
+ *******************************/
282
+
283
+
284
+ /*--------------------
285
+ Autofilled
286
+ ---------------------*/
287
+
288
+ .form .field.field input:-webkit-autofill {
289
+ box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important;
290
+ border-color: #E5DFA1 !important;
291
+ }
292
+
293
+ /* Focus */
294
+ .form .field.field input:-webkit-autofill:focus {
295
+ box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important;
296
+ border-color: #D5C315 !important;
297
+ }
298
+
299
+ /* Error */
300
+ .form .error.error input:-webkit-autofill {
301
+ box-shadow: 0px 0px 0px 100px #FFFAF0 inset !important;
302
+ border-color: #E0B4B4 !important;
303
+ }
304
+
305
+ /*--------------------
306
+ Placeholder
307
+ ---------------------*/
308
+
309
+
310
+ /* browsers require these rules separate */
311
+ .form ::-webkit-input-placeholder {
312
+ color: rgba(191, 191, 191, 0.87);
313
+ }
314
+ .form :-ms-input-placeholder {
315
+ color: rgba(191, 191, 191, 0.87);
316
+ }
317
+ .form ::-moz-placeholder {
318
+ color: rgba(191, 191, 191, 0.87);
319
+ }
320
+ .form :focus::-webkit-input-placeholder {
321
+ color: rgba(115, 115, 115, 0.87);
322
+ }
323
+ .form :focus:-ms-input-placeholder {
324
+ color: rgba(115, 115, 115, 0.87);
325
+ }
326
+ .form :focus::-moz-placeholder {
327
+ color: rgba(115, 115, 115, 0.87);
328
+ }
329
+
330
+ /* Error Placeholder */
331
+ .form .error ::-webkit-input-placeholder {
332
+ color: #e7bdbc;
333
+ }
334
+ .form .error :-ms-input-placeholder {
335
+ color: #e7bdbc !important;
336
+ }
337
+ .form .error ::-moz-placeholder {
338
+ color: #e7bdbc;
339
+ }
340
+ .form .error :focus::-webkit-input-placeholder {
341
+ color: #da9796;
342
+ }
343
+ .form .error :focus:-ms-input-placeholder {
344
+ color: #da9796 !important;
345
+ }
346
+ .form .error :focus::-moz-placeholder {
347
+ color: #da9796;
348
+ }
349
+
350
+ /*--------------------
351
+ Focus
352
+ ---------------------*/
353
+
354
+ .form input:not([type]):focus,
355
+ .form input[type="date"]:focus,
356
+ .form input[type="datetime-local"]:focus,
357
+ .form input[type="email"]:focus,
358
+ .form input[type="number"]:focus,
359
+ .form input[type="password"]:focus,
360
+ .form input[type="search"]:focus,
361
+ .form input[type="tel"]:focus,
362
+ .form input[type="time"]:focus,
363
+ .form input[type="text"]:focus,
364
+ .form input[type="file"]:focus,
365
+ .form input[type="url"]:focus {
366
+ color: rgba(0, 0, 0, 0.95);
367
+ border-color: #85B7D9;
368
+ border-radius: 0.28571429rem;
369
+ background: #FFFFFF;
370
+ box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset;
371
+ }
372
+ .form textarea:focus {
373
+ color: rgba(0, 0, 0, 0.95);
374
+ border-color: #85B7D9;
375
+ border-radius: 0.28571429rem;
376
+ background: #FFFFFF;
377
+ box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset;
378
+ -webkit-appearance: none;
379
+ }
380
+
381
+ /*--------------------
382
+ Success
383
+ ---------------------*/
384
+
385
+
386
+ /* On Form */
387
+ .form.success .success.message:not(:empty) {
388
+ display: block;
389
+ }
390
+ .form.success .compact.success.message:not(:empty) {
391
+ display: inline-block;
392
+ }
393
+ .form.success .icon.success.message:not(:empty) {
394
+ display: -webkit-box;
395
+ display: -webkit-flex;
396
+ display: -ms-flexbox;
397
+ display: flex;
398
+ }
399
+
400
+ /*--------------------
401
+ Warning
402
+ ---------------------*/
403
+
404
+
405
+ /* On Form */
406
+ .form.warning .warning.message:not(:empty) {
407
+ display: block;
408
+ }
409
+ .form.warning .compact.warning.message:not(:empty) {
410
+ display: inline-block;
411
+ }
412
+ .form.warning .icon.warning.message:not(:empty) {
413
+ display: -webkit-box;
414
+ display: -webkit-flex;
415
+ display: -ms-flexbox;
416
+ display: flex;
417
+ }
418
+
419
+ /*--------------------
420
+ Error
421
+ ---------------------*/
422
+
423
+
424
+ /* On Form */
425
+ .form.error .error.message:not(:empty) {
426
+ display: block;
427
+ }
428
+ .form.error .compact.error.message:not(:empty) {
429
+ display: inline-block;
430
+ }
431
+ .form.error .icon.error.message:not(:empty) {
432
+ display: -webkit-box;
433
+ display: -webkit-flex;
434
+ display: -ms-flexbox;
435
+ display: flex;
436
+ }
437
+
438
+ /* On Field(s) */
439
+ .form .fields.error .field label,
440
+ .form .field.error label,
441
+ .form .fields.error .field .input,
442
+ .form .field.error .input {
443
+ color: #9F3A38;
444
+ }
445
+ .form .fields.error .field .corner.label,
446
+ .form .field.error .corner.label {
447
+ border-color: #9F3A38;
448
+ color: #FFFFFF;
449
+ }
450
+ .form .fields.error .field textarea,
451
+ .form .fields.error .field select,
452
+ .form .fields.error .field input:not([type]),
453
+ .form .fields.error .field input[type="date"],
454
+ .form .fields.error .field input[type="datetime-local"],
455
+ .form .fields.error .field input[type="email"],
456
+ .form .fields.error .field input[type="number"],
457
+ .form .fields.error .field input[type="password"],
458
+ .form .fields.error .field input[type="search"],
459
+ .form .fields.error .field input[type="tel"],
460
+ .form .fields.error .field input[type="time"],
461
+ .form .fields.error .field input[type="text"],
462
+ .form .fields.error .field input[type="file"],
463
+ .form .fields.error .field input[type="url"],
464
+ .form .field.error textarea,
465
+ .form .field.error select,
466
+ .form .field.error input:not([type]),
467
+ .form .field.error input[type="date"],
468
+ .form .field.error input[type="datetime-local"],
469
+ .form .field.error input[type="email"],
470
+ .form .field.error input[type="number"],
471
+ .form .field.error input[type="password"],
472
+ .form .field.error input[type="search"],
473
+ .form .field.error input[type="tel"],
474
+ .form .field.error input[type="time"],
475
+ .form .field.error input[type="text"],
476
+ .form .field.error input[type="file"],
477
+ .form .field.error input[type="url"] {
478
+ background: #FFF6F6;
479
+ border-color: #E0B4B4;
480
+ color: #9F3A38;
481
+ border-radius: '';
482
+ box-shadow: none;
483
+ }
484
+ .form .field.error textarea:focus,
485
+ .form .field.error select:focus,
486
+ .form .field.error input:not([type]):focus,
487
+ .form .field.error input[type="date"]:focus,
488
+ .form .field.error input[type="datetime-local"]:focus,
489
+ .form .field.error input[type="email"]:focus,
490
+ .form .field.error input[type="number"]:focus,
491
+ .form .field.error input[type="password"]:focus,
492
+ .form .field.error input[type="search"]:focus,
493
+ .form .field.error input[type="tel"]:focus,
494
+ .form .field.error input[type="time"]:focus,
495
+ .form .field.error input[type="text"]:focus,
496
+ .form .field.error input[type="file"]:focus,
497
+ .form .field.error input[type="url"]:focus {
498
+ background: #FFF6F6;
499
+ border-color: #E0B4B4;
500
+ color: #9F3A38;
501
+ -webkit-appearance: none;
502
+ box-shadow: none;
503
+ }
504
+
505
+ /* Preserve Native Select Stylings */
506
+ .form .field.error select {
507
+ -webkit-appearance: menulist-button;
508
+ }
509
+
510
+ /*------------------
511
+ Dropdown Error
512
+ --------------------*/
513
+
514
+ .form .fields.error .field .dropdown,
515
+ .form .fields.error .field .dropdown .item,
516
+ .form .field.error .dropdown,
517
+ .form .field.error .dropdown .text,
518
+ .form .field.error .dropdown .item {
519
+ background: #FFF6F6;
520
+ color: #9F3A38;
521
+ }
522
+ .form .fields.error .field .dropdown,
523
+ .form .field.error .dropdown {
524
+ border-color: #E0B4B4 !important;
525
+ }
526
+ .form .fields.error .field .dropdown:hover,
527
+ .form .field.error .dropdown:hover {
528
+ border-color: #E0B4B4 !important;
529
+ }
530
+ .form .fields.error .field .dropdown:hover .menu,
531
+ .form .field.error .dropdown:hover .menu {
532
+ border-color: #E0B4B4;
533
+ }
534
+ .form .fields.error .field .multiple.selection.dropdown > .label,
535
+ .form .field.error .multiple.selection.dropdown > .label {
536
+ background-color: #EACBCB;
537
+ color: #9F3A38;
538
+ }
539
+
540
+ /* Hover */
541
+ .form .fields.error .field .dropdown .menu .item:hover,
542
+ .form .field.error .dropdown .menu .item:hover {
543
+ background-color: #FBE7E7;
544
+ }
545
+
546
+ /* Selected */
547
+ .form .fields.error .field .dropdown .menu .selected.item,
548
+ .form .field.error .dropdown .menu .selected.item {
549
+ background-color: #FBE7E7;
550
+ }
551
+
552
+ /* Active */
553
+ .form .fields.error .field .dropdown .menu .active.item,
554
+ .form .field.error .dropdown .menu .active.item {
555
+ background-color: #FDCFCF !important;
556
+ }
557
+
558
+ /*--------------------
559
+ Checkbox Error
560
+ ---------------------*/
561
+
562
+ .form .fields.error .field .checkbox:not(.toggle):not(.slider) label,
563
+ .form .field.error .checkbox:not(.toggle):not(.slider) label,
564
+ .form .fields.error .field .checkbox:not(.toggle):not(.slider) .box,
565
+ .form .field.error .checkbox:not(.toggle):not(.slider) .box {
566
+ color: #9F3A38;
567
+ }
568
+ .form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before,
569
+ .form .field.error .checkbox:not(.toggle):not(.slider) label:before,
570
+ .form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before,
571
+ .form .field.error .checkbox:not(.toggle):not(.slider) .box:before {
572
+ background: #FFF6F6;
573
+ border-color: #E0B4B4;
574
+ }
575
+ .form .fields.error .field .checkbox label:after,
576
+ .form .field.error .checkbox label:after,
577
+ .form .fields.error .field .checkbox .box:after,
578
+ .form .field.error .checkbox .box:after {
579
+ color: #9F3A38;
580
+ }
581
+
582
+ /*--------------------
583
+ Disabled
584
+ ---------------------*/
585
+
586
+ .form .disabled.fields .field,
587
+ .form .disabled.field,
588
+ .form .field :disabled {
589
+ pointer-events: none;
590
+ opacity: 0.45;
591
+ }
592
+ .form .field.disabled > label,
593
+ .form .fields.disabled > label {
594
+ opacity: 0.45;
595
+ }
596
+ .form .field.disabled :disabled {
597
+ opacity: 1;
598
+ }
599
+
600
+ /*--------------
601
+ Loading
602
+ ---------------*/
603
+
604
+ .loading.form {
605
+ position: relative;
606
+ cursor: default;
607
+ pointer-events: none;
608
+ }
609
+ .loading.form:before {
610
+ position: absolute;
611
+ content: '';
612
+ top: 0%;
613
+ left: 0%;
614
+ background: rgba(255, 255, 255, 0.8);
615
+ width: 100%;
616
+ height: 100%;
617
+ z-index: 100;
618
+ }
619
+ .loading.form:after {
620
+ position: absolute;
621
+ content: '';
622
+ top: 50%;
623
+ left: 50%;
624
+ margin: -1.5em 0em 0em -1.5em;
625
+ width: 3em;
626
+ height: 3em;
627
+ -webkit-animation: form-spin 0.6s linear;
628
+ animation: form-spin 0.6s linear;
629
+ -webkit-animation-iteration-count: infinite;
630
+ animation-iteration-count: infinite;
631
+ border-radius: 500rem;
632
+ border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
633
+ border-style: solid;
634
+ border-width: 0.2em;
635
+ box-shadow: 0px 0px 0px 1px transparent;
636
+ visibility: visible;
637
+ z-index: 101;
638
+ }
639
+ @-webkit-keyframes form-spin {
640
+ from {
641
+ -webkit-transform: rotate(0deg);
642
+ transform: rotate(0deg);
643
+ }
644
+ to {
645
+ -webkit-transform: rotate(360deg);
646
+ transform: rotate(360deg);
647
+ }
648
+ }
649
+ @keyframes form-spin {
650
+ from {
651
+ -webkit-transform: rotate(0deg);
652
+ transform: rotate(0deg);
653
+ }
654
+ to {
655
+ -webkit-transform: rotate(360deg);
656
+ transform: rotate(360deg);
657
+ }
658
+ }
659
+
660
+
661
+ /*******************************
662
+ Element Types
663
+ *******************************/
664
+
665
+
666
+ /*--------------------
667
+ Required Field
668
+ ---------------------*/
669
+
670
+ .form .required.fields:not(.grouped) > .field > label:after,
671
+ .form .required.fields.grouped > label:after,
672
+ .form .required.field > label:after,
673
+ .form .required.fields:not(.grouped) > .field > .checkbox:after,
674
+ .form .required.field > .checkbox:after {
675
+ margin: -0.2em 0em 0em 0.2em;
676
+ content: '*';
677
+ color: #DB2828;
678
+ }
679
+ .form .required.fields:not(.grouped) > .field > label:after,
680
+ .form .required.fields.grouped > label:after,
681
+ .form .required.field > label:after {
682
+ display: inline-block;
683
+ vertical-align: top;
684
+ }
685
+ .form .required.fields:not(.grouped) > .field > .checkbox:after,
686
+ .form .required.field > .checkbox:after {
687
+ position: absolute;
688
+ top: 0%;
689
+ left: 100%;
690
+ }
691
+
692
+
693
+ /*******************************
694
+ Variations
695
+ *******************************/
696
+
697
+
698
+ /*--------------------
699
+ Inverted Colors
700
+ ---------------------*/
701
+
702
+ .inverted.form label,
703
+ .form .inverted.segment label,
704
+ .form .inverted.segment .checkbox label,
705
+ .form .inverted.segment .checkbox .box,
706
+ .inverted.form .checkbox label,
707
+ .inverted.form .checkbox .box,
708
+ .inverted.form .inline.fields > label,
709
+ .inverted.form .inline.fields .field > label,
710
+ .inverted.form .inline.fields .field > p,
711
+ .inverted.form .inline.field > label,
712
+ .inverted.form .inline.field > p {
713
+ color: rgba(255, 255, 255, 0.9);
714
+ }
715
+
716
+ /* Inverted Field */
717
+ .inverted.form input:not([type]),
718
+ .inverted.form input[type="date"],
719
+ .inverted.form input[type="datetime-local"],
720
+ .inverted.form input[type="email"],
721
+ .inverted.form input[type="number"],
722
+ .inverted.form input[type="password"],
723
+ .inverted.form input[type="search"],
724
+ .inverted.form input[type="tel"],
725
+ .inverted.form input[type="time"],
726
+ .inverted.form input[type="text"],
727
+ .inverted.form input[type="file"],
728
+ .inverted.form input[type="url"] {
729
+ background: #FFFFFF;
730
+ border-color: rgba(255, 255, 255, 0.1);
731
+ color: rgba(0, 0, 0, 0.87);
732
+ box-shadow: none;
733
+ }
734
+
735
+ /*--------------------
736
+ Field Groups
737
+ ---------------------*/
738
+
739
+
740
+ /* Grouped Vertically */
741
+ .form .grouped.fields {
742
+ display: block;
743
+ margin: 0em 0em 1em;
744
+ }
745
+ .form .grouped.fields:last-child {
746
+ margin-bottom: 0em;
747
+ }
748
+ .form .grouped.fields > label {
749
+ margin: 0em 0em 0.28571429rem 0em;
750
+ color: rgba(0, 0, 0, 0.87);
751
+ font-size: 0.92857143em;
752
+ font-weight: bold;
753
+ text-transform: none;
754
+ }
755
+ .form .grouped.fields .field,
756
+ .form .grouped.inline.fields .field {
757
+ display: block;
758
+ margin: 0.5em 0em;
759
+ padding: 0em;
760
+ }
761
+
762
+ /*--------------------
763
+ Fields
764
+ ---------------------*/
765
+
766
+
767
+ /* Split fields */
768
+ .form .fields {
769
+ display: -webkit-box;
770
+ display: -webkit-flex;
771
+ display: -ms-flexbox;
772
+ display: flex;
773
+ -webkit-box-orient: horizontal;
774
+ -webkit-box-direction: normal;
775
+ -webkit-flex-direction: row;
776
+ -ms-flex-direction: row;
777
+ flex-direction: row;
778
+ margin: 0em -0.5em 1em;
779
+ }
780
+ .form .fields > .field {
781
+ -webkit-box-flex: 0;
782
+ -webkit-flex: 0 1 auto;
783
+ -ms-flex: 0 1 auto;
784
+ flex: 0 1 auto;
785
+ padding-left: 0.5em;
786
+ padding-right: 0.5em;
787
+ }
788
+ .form .fields > .field:first-child {
789
+ border-left: none;
790
+ box-shadow: none;
791
+ }
792
+
793
+ /* Other Combinations */
794
+ .form .two.fields > .fields,
795
+ .form .two.fields > .field {
796
+ width: 50%;
797
+ }
798
+ .form .three.fields > .fields,
799
+ .form .three.fields > .field {
800
+ width: 33.33333333%;
801
+ }
802
+ .form .four.fields > .fields,
803
+ .form .four.fields > .field {
804
+ width: 25%;
805
+ }
806
+ .form .five.fields > .fields,
807
+ .form .five.fields > .field {
808
+ width: 20%;
809
+ }
810
+ .form .six.fields > .fields,
811
+ .form .six.fields > .field {
812
+ width: 16.66666667%;
813
+ }
814
+ .form .seven.fields > .fields,
815
+ .form .seven.fields > .field {
816
+ width: 14.28571429%;
817
+ }
818
+ .form .eight.fields > .fields,
819
+ .form .eight.fields > .field {
820
+ width: 12.5%;
821
+ }
822
+ .form .nine.fields > .fields,
823
+ .form .nine.fields > .field {
824
+ width: 11.11111111%;
825
+ }
826
+ .form .ten.fields > .fields,
827
+ .form .ten.fields > .field {
828
+ width: 10%;
829
+ }
830
+
831
+ /* Swap to full width on mobile */
832
+ @media only screen and (max-width: 767px) {
833
+ .form .fields {
834
+ -webkit-flex-wrap: wrap;
835
+ -ms-flex-wrap: wrap;
836
+ flex-wrap: wrap;
837
+ }
838
+ [class*="equal width"].form .fields > .field,
839
+ .form [class*="equal width"].fields > .field,
840
+ .form .two.fields > .fields,
841
+ .form .two.fields > .field,
842
+ .form .three.fields > .fields,
843
+ .form .three.fields > .field,
844
+ .form .four.fields > .fields,
845
+ .form .four.fields > .field,
846
+ .form .five.fields > .fields,
847
+ .form .five.fields > .field,
848
+ .form .six.fields > .fields,
849
+ .form .six.fields > .field,
850
+ .form .seven.fields > .fields,
851
+ .form .seven.fields > .field,
852
+ .form .eight.fields > .fields,
853
+ .form .eight.fields > .field,
854
+ .form .nine.fields > .fields,
855
+ .form .nine.fields > .field,
856
+ .form .ten.fields > .fields,
857
+ .form .ten.fields > .field {
858
+ width: 100% !important;
859
+ margin: 0em 0em 1em;
860
+ }
861
+ }
862
+
863
+ /* Sizing Combinations */
864
+ .form .fields .wide.field {
865
+ width: 6.25%;
866
+ padding-left: 0.5em;
867
+ padding-right: 0.5em;
868
+ }
869
+ .form .one.wide.field {
870
+ width: 6.25% !important;
871
+ }
872
+ .form .two.wide.field {
873
+ width: 12.5% !important;
874
+ }
875
+ .form .three.wide.field {
876
+ width: 18.75% !important;
877
+ }
878
+ .form .four.wide.field {
879
+ width: 25% !important;
880
+ }
881
+ .form .five.wide.field {
882
+ width: 31.25% !important;
883
+ }
884
+ .form .six.wide.field {
885
+ width: 37.5% !important;
886
+ }
887
+ .form .seven.wide.field {
888
+ width: 43.75% !important;
889
+ }
890
+ .form .eight.wide.field {
891
+ width: 50% !important;
892
+ }
893
+ .form .nine.wide.field {
894
+ width: 56.25% !important;
895
+ }
896
+ .form .ten.wide.field {
897
+ width: 62.5% !important;
898
+ }
899
+ .form .eleven.wide.field {
900
+ width: 68.75% !important;
901
+ }
902
+ .form .twelve.wide.field {
903
+ width: 75% !important;
904
+ }
905
+ .form .thirteen.wide.field {
906
+ width: 81.25% !important;
907
+ }
908
+ .form .fourteen.wide.field {
909
+ width: 87.5% !important;
910
+ }
911
+ .form .fifteen.wide.field {
912
+ width: 93.75% !important;
913
+ }
914
+ .form .sixteen.wide.field {
915
+ width: 100% !important;
916
+ }
917
+
918
+ /* Swap to full width on mobile */
919
+ @media only screen and (max-width: 767px) {
920
+ .form .two.fields > .fields,
921
+ .form .two.fields > .field,
922
+ .form .three.fields > .fields,
923
+ .form .three.fields > .field,
924
+ .form .four.fields > .fields,
925
+ .form .four.fields > .field,
926
+ .form .five.fields > .fields,
927
+ .form .five.fields > .field,
928
+ .form .fields > .two.wide.field,
929
+ .form .fields > .three.wide.field,
930
+ .form .fields > .four.wide.field,
931
+ .form .fields > .five.wide.field,
932
+ .form .fields > .six.wide.field,
933
+ .form .fields > .seven.wide.field,
934
+ .form .fields > .eight.wide.field,
935
+ .form .fields > .nine.wide.field,
936
+ .form .fields > .ten.wide.field,
937
+ .form .fields > .eleven.wide.field,
938
+ .form .fields > .twelve.wide.field,
939
+ .form .fields > .thirteen.wide.field,
940
+ .form .fields > .fourteen.wide.field,
941
+ .form .fields > .fifteen.wide.field,
942
+ .form .fields > .sixteen.wide.field {
943
+ width: 100% !important;
944
+ }
945
+ .form .fields {
946
+ margin-bottom: 0em;
947
+ }
948
+ }
949
+
950
+ /*--------------------
951
+ Equal Width
952
+ ---------------------*/
953
+
954
+ [class*="equal width"].form .fields > .field,
955
+ .form [class*="equal width"].fields > .field {
956
+ width: 100%;
957
+ -webkit-box-flex: 1;
958
+ -webkit-flex: 1 1 auto;
959
+ -ms-flex: 1 1 auto;
960
+ flex: 1 1 auto;
961
+ }
962
+
963
+ /*--------------------
964
+ Inline Fields
965
+ ---------------------*/
966
+
967
+ .form .inline.fields {
968
+ margin: 0em 0em 1em;
969
+ -webkit-box-align: center;
970
+ -webkit-align-items: center;
971
+ -ms-flex-align: center;
972
+ align-items: center;
973
+ }
974
+ .form .inline.fields .field {
975
+ margin: 0em;
976
+ padding: 0em 1em 0em 0em;
977
+ }
978
+
979
+ /* Inline Label */
980
+ .form .inline.fields > label,
981
+ .form .inline.fields .field > label,
982
+ .form .inline.fields .field > p,
983
+ .form .inline.field > label,
984
+ .form .inline.field > p {
985
+ display: inline-block;
986
+ width: auto;
987
+ margin-top: 0em;
988
+ margin-bottom: 0em;
989
+ vertical-align: baseline;
990
+ font-size: 0.92857143em;
991
+ font-weight: bold;
992
+ color: rgba(0, 0, 0, 0.87);
993
+ text-transform: none;
994
+ }
995
+
996
+ /* Grouped Inline Label */
997
+ .form .inline.fields > label {
998
+ margin: 0.035714em 1em 0em 0em;
999
+ }
1000
+
1001
+ /* Inline Input */
1002
+ .form .inline.fields .field > input,
1003
+ .form .inline.fields .field > select,
1004
+ .form .inline.field > input,
1005
+ .form .inline.field > select {
1006
+ display: inline-block;
1007
+ width: auto;
1008
+ margin-top: 0em;
1009
+ margin-bottom: 0em;
1010
+ vertical-align: middle;
1011
+ font-size: 1em;
1012
+ }
1013
+
1014
+ /* Label */
1015
+ .form .inline.fields .field > :first-child,
1016
+ .form .inline.field > :first-child {
1017
+ margin: 0em 0.85714286em 0em 0em;
1018
+ }
1019
+ .form .inline.fields .field > :only-child,
1020
+ .form .inline.field > :only-child {
1021
+ margin: 0em;
1022
+ }
1023
+
1024
+ /* Wide */
1025
+ .form .inline.fields .wide.field {
1026
+ display: -webkit-box;
1027
+ display: -webkit-flex;
1028
+ display: -ms-flexbox;
1029
+ display: flex;
1030
+ -webkit-box-align: center;
1031
+ -webkit-align-items: center;
1032
+ -ms-flex-align: center;
1033
+ align-items: center;
1034
+ }
1035
+ .form .inline.fields .wide.field > input,
1036
+ .form .inline.fields .wide.field > select {
1037
+ width: 100%;
1038
+ }
1039
+
1040
+ /*--------------------
1041
+ Sizes
1042
+ ---------------------*/
1043
+
1044
+ .mini.form {
1045
+ font-size: 0.78571429rem;
1046
+ }
1047
+ .tiny.form {
1048
+ font-size: 0.85714286rem;
1049
+ }
1050
+ .small.form {
1051
+ font-size: 0.92857143rem;
1052
+ }
1053
+ .form {
1054
+ font-size: 1rem;
1055
+ }
1056
+ .large.form {
1057
+ font-size: 1.14285714rem;
1058
+ }
1059
+ .big.form {
1060
+ font-size: 1.28571429rem;
1061
+ }
1062
+ .huge.form {
1063
+ font-size: 1.42857143rem;
1064
+ }
1065
+ .massive.form {
1066
+ font-size: 1.71428571rem;
1067
+ }
1068
+
1069
+
1070
+ /*******************************
1071
+ Theme Overrides
1072
+ *******************************/
1073
+
1074
+
1075
+
1076
+ /*******************************
1077
+ Site Overrides
1078
+ *******************************/
1079
+
1080
+
1081
+ /*!
1082
+ * # Semantic UI 2.2.4 - Checkbox
1083
+ * http://github.com/semantic-org/semantic-ui/
1084
+ *
1085
+ *
1086
+ * Released under the MIT license
1087
+ * http://opensource.org/licenses/MIT
1088
+ *
1089
+ */
1090
+
1091
+
1092
+ /*******************************
1093
+ Checkbox
1094
+ *******************************/
1095
+
1096
+
1097
+ /*--------------
1098
+ Content
1099
+ ---------------*/
1100
+
1101
+ .ui.checkbox {
1102
+ position: relative;
1103
+ display: inline-block;
1104
+ -webkit-backface-visibility: hidden;
1105
+ backface-visibility: hidden;
1106
+ outline: none;
1107
+ vertical-align: baseline;
1108
+ font-style: normal;
1109
+ min-height: 17px;
1110
+ font-size: 1rem;
1111
+ line-height: 17px;
1112
+ min-width: 17px;
1113
+ }
1114
+
1115
+ /* HTML Checkbox */
1116
+ .ui.checkbox input[type="checkbox"],
1117
+ .ui.checkbox input[type="radio"] {
1118
+ cursor: pointer;
1119
+ position: absolute;
1120
+ top: 0px;
1121
+ left: 0px;
1122
+ opacity: 0 !important;
1123
+ outline: none;
1124
+ z-index: 3;
1125
+ width: 17px;
1126
+ height: 17px;
1127
+ }
1128
+
1129
+ /*--------------
1130
+ Box
1131
+ ---------------*/
1132
+
1133
+ .ui.checkbox .box,
1134
+ .ui.checkbox label {
1135
+ cursor: auto;
1136
+ position: relative;
1137
+ display: block;
1138
+ padding-left: 1.85714em;
1139
+ outline: none;
1140
+ font-size: 1em;
1141
+ }
1142
+ .ui.checkbox .box:before,
1143
+ .ui.checkbox label:before {
1144
+ position: absolute;
1145
+ top: 0px;
1146
+ left: 0px;
1147
+ width: 17px;
1148
+ height: 17px;
1149
+ content: '';
1150
+ background: #FFFFFF;
1151
+ border-radius: 0.21428571rem;
1152
+ -webkit-transition: border 0.1s ease, opacity 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease;
1153
+ transition: border 0.1s ease, opacity 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease;
1154
+ transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
1155
+ transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease;
1156
+ border: 1px solid #D4D4D5;
1157
+ }
1158
+
1159
+ /*--------------
1160
+ Checkmark
1161
+ ---------------*/
1162
+
1163
+ .ui.checkbox .box:after,
1164
+ .ui.checkbox label:after {
1165
+ position: absolute;
1166
+ font-size: 14px;
1167
+ top: 0px;
1168
+ left: 0px;
1169
+ width: 17px;
1170
+ height: 17px;
1171
+ text-align: center;
1172
+ opacity: 0;
1173
+ color: rgba(0, 0, 0, 0.87);
1174
+ -webkit-transition: border 0.1s ease, opacity 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease;
1175
+ transition: border 0.1s ease, opacity 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease;
1176
+ transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
1177
+ transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease;
1178
+ }
1179
+
1180
+ /*--------------
1181
+ Label
1182
+ ---------------*/
1183
+
1184
+
1185
+ /* Inside */
1186
+ .ui.checkbox label,
1187
+ .ui.checkbox + label {
1188
+ color: rgba(0, 0, 0, 0.87);
1189
+ -webkit-transition: color 0.1s ease;
1190
+ transition: color 0.1s ease;
1191
+ }
1192
+
1193
+ /* Outside */
1194
+ .ui.checkbox + label {
1195
+ vertical-align: middle;
1196
+ }
1197
+
1198
+
1199
+ /*******************************
1200
+ States
1201
+ *******************************/
1202
+
1203
+
1204
+ /*--------------
1205
+ Hover
1206
+ ---------------*/
1207
+
1208
+ .ui.checkbox .box:hover::before,
1209
+ .ui.checkbox label:hover::before {
1210
+ background: #FFFFFF;
1211
+ border-color: rgba(34, 36, 38, 0.35);
1212
+ }
1213
+ .ui.checkbox label:hover,
1214
+ .ui.checkbox + label:hover {
1215
+ color: rgba(0, 0, 0, 0.8);
1216
+ }
1217
+
1218
+ /*--------------
1219
+ Down
1220
+ ---------------*/
1221
+
1222
+ .ui.checkbox .box:active::before,
1223
+ .ui.checkbox label:active::before {
1224
+ background: #F9FAFB;
1225
+ border-color: rgba(34, 36, 38, 0.35);
1226
+ }
1227
+ .ui.checkbox .box:active::after,
1228
+ .ui.checkbox label:active::after {
1229
+ color: rgba(0, 0, 0, 0.95);
1230
+ }
1231
+ .ui.checkbox input:active ~ label {
1232
+ color: rgba(0, 0, 0, 0.95);
1233
+ }
1234
+
1235
+ /*--------------
1236
+ Focus
1237
+ ---------------*/
1238
+
1239
+ .ui.checkbox input:focus ~ .box:before,
1240
+ .ui.checkbox input:focus ~ label:before {
1241
+ background: #FFFFFF;
1242
+ border-color: #96C8DA;
1243
+ }
1244
+ .ui.checkbox input:focus ~ .box:after,
1245
+ .ui.checkbox input:focus ~ label:after {
1246
+ color: rgba(0, 0, 0, 0.95);
1247
+ }
1248
+ .ui.checkbox input:focus ~ label {
1249
+ color: rgba(0, 0, 0, 0.95);
1250
+ }
1251
+
1252
+ /*--------------
1253
+ Active
1254
+ ---------------*/
1255
+
1256
+ .ui.checkbox input:checked ~ .box:before,
1257
+ .ui.checkbox input:checked ~ label:before {
1258
+ background: #FFFFFF;
1259
+ border-color: rgba(34, 36, 38, 0.35);
1260
+ }
1261
+ .ui.checkbox input:checked ~ .box:after,
1262
+ .ui.checkbox input:checked ~ label:after {
1263
+ opacity: 1;
1264
+ color: rgba(0, 0, 0, 0.95);
1265
+ }
1266
+
1267
+ /*--------------
1268
+ Indeterminate
1269
+ ---------------*/
1270
+
1271
+ .ui.checkbox input:not([type=radio]):indeterminate ~ .box:before,
1272
+ .ui.checkbox input:not([type=radio]):indeterminate ~ label:before {
1273
+ background: #FFFFFF;
1274
+ border-color: rgba(34, 36, 38, 0.35);
1275
+ }
1276
+ .ui.checkbox input:not([type=radio]):indeterminate ~ .box:after,
1277
+ .ui.checkbox input:not([type=radio]):indeterminate ~ label:after {
1278
+ opacity: 1;
1279
+ color: rgba(0, 0, 0, 0.95);
1280
+ }
1281
+
1282
+ /*--------------
1283
+ Active Focus
1284
+ ---------------*/
1285
+
1286
+ .ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:before,
1287
+ .ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:before,
1288
+ .ui.checkbox input:checked:focus ~ .box:before,
1289
+ .ui.checkbox input:checked:focus ~ label:before {
1290
+ background: #FFFFFF;
1291
+ border-color: #96C8DA;
1292
+ }
1293
+ .ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:after,
1294
+ .ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:after,
1295
+ .ui.checkbox input:checked:focus ~ .box:after,
1296
+ .ui.checkbox input:checked:focus ~ label:after {
1297
+ color: rgba(0, 0, 0, 0.95);
1298
+ }
1299
+
1300
+ /*--------------
1301
+ Read-Only
1302
+ ---------------*/
1303
+
1304
+ .ui.read-only.checkbox,
1305
+ .ui.read-only.checkbox label {
1306
+ cursor: default;
1307
+ }
1308
+
1309
+ /*--------------
1310
+ Disabled
1311
+ ---------------*/
1312
+
1313
+ .ui.disabled.checkbox .box:after,
1314
+ .ui.disabled.checkbox label,
1315
+ .ui.checkbox input[disabled] ~ .box:after,
1316
+ .ui.checkbox input[disabled] ~ label {
1317
+ cursor: default !important;
1318
+ opacity: 0.5;
1319
+ color: #000000;
1320
+ }
1321
+
1322
+ /*--------------
1323
+ Hidden
1324
+ ---------------*/
1325
+
1326
+
1327
+ /* Initialized checkbox moves input below element
1328
+ to prevent manually triggering */
1329
+ .ui.checkbox input.hidden {
1330
+ z-index: -1;
1331
+ }
1332
+
1333
+ /* Selectable Label */
1334
+ .ui.checkbox input.hidden + label {
1335
+ cursor: pointer;
1336
+ -webkit-user-select: none;
1337
+ -moz-user-select: none;
1338
+ -ms-user-select: none;
1339
+ user-select: none;
1340
+ }
1341
+
1342
+
1343
+ /*******************************
1344
+ Types
1345
+ *******************************/
1346
+
1347
+
1348
+ /*--------------
1349
+ Radio
1350
+ ---------------*/
1351
+
1352
+ .ui.radio.checkbox {
1353
+ min-height: 15px;
1354
+ }
1355
+ .ui.radio.checkbox .box,
1356
+ .ui.radio.checkbox label {
1357
+ padding-left: 1.85714em;
1358
+ }
1359
+
1360
+ /* Box */
1361
+ .ui.radio.checkbox .box:before,
1362
+ .ui.radio.checkbox label:before {
1363
+ content: '';
1364
+ -webkit-transform: none;
1365
+ -ms-transform: none;
1366
+ transform: none;
1367
+ width: 15px;
1368
+ height: 15px;
1369
+ border-radius: 500rem;
1370
+ top: 1px;
1371
+ left: 0px;
1372
+ }
1373
+
1374
+ /* Bullet */
1375
+ .ui.radio.checkbox .box:after,
1376
+ .ui.radio.checkbox label:after {
1377
+ border: none;
1378
+ content: '' !important;
1379
+ width: 15px;
1380
+ height: 15px;
1381
+ line-height: 15px;
1382
+ }
1383
+
1384
+ /* Radio Checkbox */
1385
+ .ui.radio.checkbox .box:after,
1386
+ .ui.radio.checkbox label:after {
1387
+ top: 1px;
1388
+ left: 0px;
1389
+ width: 15px;
1390
+ height: 15px;
1391
+ border-radius: 500rem;
1392
+ -webkit-transform: scale(0.46666667);
1393
+ -ms-transform: scale(0.46666667);
1394
+ transform: scale(0.46666667);
1395
+ background-color: rgba(0, 0, 0, 0.87);
1396
+ }
1397
+
1398
+ /* Focus */
1399
+ .ui.radio.checkbox input:focus ~ .box:before,
1400
+ .ui.radio.checkbox input:focus ~ label:before {
1401
+ background-color: #FFFFFF;
1402
+ }
1403
+ .ui.radio.checkbox input:focus ~ .box:after,
1404
+ .ui.radio.checkbox input:focus ~ label:after {
1405
+ background-color: rgba(0, 0, 0, 0.95);
1406
+ }
1407
+
1408
+ /* Indeterminate */
1409
+ .ui.radio.checkbox input:indeterminate ~ .box:after,
1410
+ .ui.radio.checkbox input:indeterminate ~ label:after {
1411
+ opacity: 0;
1412
+ }
1413
+
1414
+ /* Active */
1415
+ .ui.radio.checkbox input:checked ~ .box:before,
1416
+ .ui.radio.checkbox input:checked ~ label:before {
1417
+ background-color: #FFFFFF;
1418
+ }
1419
+ .ui.radio.checkbox input:checked ~ .box:after,
1420
+ .ui.radio.checkbox input:checked ~ label:after {
1421
+ background-color: rgba(0, 0, 0, 0.95);
1422
+ }
1423
+
1424
+ /* Active Focus */
1425
+ .ui.radio.checkbox input:focus:checked ~ .box:before,
1426
+ .ui.radio.checkbox input:focus:checked ~ label:before {
1427
+ background-color: #FFFFFF;
1428
+ }
1429
+ .ui.radio.checkbox input:focus:checked ~ .box:after,
1430
+ .ui.radio.checkbox input:focus:checked ~ label:after {
1431
+ background-color: rgba(0, 0, 0, 0.95);
1432
+ }
1433
+
1434
+ /*--------------
1435
+ Slider
1436
+ ---------------*/
1437
+
1438
+ .ui.slider.checkbox {
1439
+ min-height: 1.25rem;
1440
+ }
1441
+
1442
+ /* Input */
1443
+ .ui.slider.checkbox input {
1444
+ width: 3.5rem;
1445
+ height: 1.25rem;
1446
+ }
1447
+
1448
+ /* Label */
1449
+ .ui.slider.checkbox .box,
1450
+ .ui.slider.checkbox label {
1451
+ padding-left: 4.5rem;
1452
+ line-height: 1rem;
1453
+ color: rgba(0, 0, 0, 0.4);
1454
+ }
1455
+
1456
+ /* Line */
1457
+ .ui.slider.checkbox .box:before,
1458
+ .ui.slider.checkbox label:before {
1459
+ display: block;
1460
+ position: absolute;
1461
+ content: '';
1462
+ border: none !important;
1463
+ left: 0em;
1464
+ z-index: 1;
1465
+ top: 0.4rem;
1466
+ background-color: rgba(0, 0, 0, 0.05);
1467
+ width: 3.5rem;
1468
+ height: 0.21428571rem;
1469
+ -webkit-transform: none;
1470
+ -ms-transform: none;
1471
+ transform: none;
1472
+ border-radius: 500rem;
1473
+ -webkit-transition: background 0.3s ease;
1474
+ transition: background 0.3s ease;
1475
+ }
1476
+
1477
+ /* Handle */
1478
+ .ui.slider.checkbox .box:after,
1479
+ .ui.slider.checkbox label:after {
1480
+ background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
1481
+ background: #FFFFFF linear-gradient(transparent, rgba(0, 0, 0, 0.05));
1482
+ position: absolute;
1483
+ content: '' !important;
1484
+ opacity: 1;
1485
+ z-index: 2;
1486
+ border: none;
1487
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
1488
+ width: 1.5rem;
1489
+ height: 1.5rem;
1490
+ top: -0.25rem;
1491
+ left: 0em;
1492
+ -webkit-transform: none;
1493
+ -ms-transform: none;
1494
+ transform: none;
1495
+ border-radius: 500rem;
1496
+ -webkit-transition: left 0.3s ease;
1497
+ transition: left 0.3s ease;
1498
+ }
1499
+
1500
+ /* Focus */
1501
+ .ui.slider.checkbox input:focus ~ .box:before,
1502
+ .ui.slider.checkbox input:focus ~ label:before {
1503
+ background-color: rgba(0, 0, 0, 0.15);
1504
+ border: none;
1505
+ }
1506
+
1507
+ /* Hover */
1508
+ .ui.slider.checkbox .box:hover,
1509
+ .ui.slider.checkbox label:hover {
1510
+ color: rgba(0, 0, 0, 0.8);
1511
+ }
1512
+ .ui.slider.checkbox .box:hover::before,
1513
+ .ui.slider.checkbox label:hover::before {
1514
+ background: rgba(0, 0, 0, 0.15);
1515
+ }
1516
+
1517
+ /* Active */
1518
+ .ui.slider.checkbox input:checked ~ .box,
1519
+ .ui.slider.checkbox input:checked ~ label {
1520
+ color: rgba(0, 0, 0, 0.95) !important;
1521
+ }
1522
+ .ui.slider.checkbox input:checked ~ .box:before,
1523
+ .ui.slider.checkbox input:checked ~ label:before {
1524
+ background-color: #545454 !important;
1525
+ }
1526
+ .ui.slider.checkbox input:checked ~ .box:after,
1527
+ .ui.slider.checkbox input:checked ~ label:after {
1528
+ left: 2rem;
1529
+ }
1530
+
1531
+ /* Active Focus */
1532
+ .ui.slider.checkbox input:focus:checked ~ .box,
1533
+ .ui.slider.checkbox input:focus:checked ~ label {
1534
+ color: rgba(0, 0, 0, 0.95) !important;
1535
+ }
1536
+ .ui.slider.checkbox input:focus:checked ~ .box:before,
1537
+ .ui.slider.checkbox input:focus:checked ~ label:before {
1538
+ background-color: #000000 !important;
1539
+ }
1540
+
1541
+ /*--------------
1542
+ Toggle
1543
+ ---------------*/
1544
+
1545
+ .ui.toggle.checkbox {
1546
+ min-height: 1.5rem;
1547
+ }
1548
+
1549
+ /* Input */
1550
+ .ui.toggle.checkbox input {
1551
+ width: 3.5rem;
1552
+ height: 1.5rem;
1553
+ }
1554
+
1555
+ /* Label */
1556
+ .ui.toggle.checkbox .box,
1557
+ .ui.toggle.checkbox label {
1558
+ min-height: 1.5rem;
1559
+ padding-left: 4.5rem;
1560
+ color: rgba(0, 0, 0, 0.87);
1561
+ }
1562
+ .ui.toggle.checkbox label {
1563
+ padding-top: 0.15em;
1564
+ }
1565
+
1566
+ /* Switch */
1567
+ .ui.toggle.checkbox .box:before,
1568
+ .ui.toggle.checkbox label:before {
1569
+ display: block;
1570
+ position: absolute;
1571
+ content: '';
1572
+ z-index: 1;
1573
+ -webkit-transform: none;
1574
+ -ms-transform: none;
1575
+ transform: none;
1576
+ border: none;
1577
+ top: 0rem;
1578
+ background: rgba(0, 0, 0, 0.05);
1579
+ width: 3.5rem;
1580
+ height: 1.5rem;
1581
+ border-radius: 500rem;
1582
+ }
1583
+
1584
+ /* Handle */
1585
+ .ui.toggle.checkbox .box:after,
1586
+ .ui.toggle.checkbox label:after {
1587
+ background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
1588
+ background: #FFFFFF linear-gradient(transparent, rgba(0, 0, 0, 0.05));
1589
+ position: absolute;
1590
+ content: '' !important;
1591
+ opacity: 1;
1592
+ z-index: 2;
1593
+ border: none;
1594
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
1595
+ width: 1.5rem;
1596
+ height: 1.5rem;
1597
+ top: 0rem;
1598
+ left: 0em;
1599
+ border-radius: 500rem;
1600
+ -webkit-transition: background 0.3s ease, left 0.3s ease;
1601
+ transition: background 0.3s ease, left 0.3s ease;
1602
+ }
1603
+ .ui.toggle.checkbox input ~ .box:after,
1604
+ .ui.toggle.checkbox input ~ label:after {
1605
+ left: -0.05rem;
1606
+ }
1607
+
1608
+ /* Focus */
1609
+ .ui.toggle.checkbox input:focus ~ .box:before,
1610
+ .ui.toggle.checkbox input:focus ~ label:before {
1611
+ background-color: rgba(0, 0, 0, 0.15);
1612
+ border: none;
1613
+ }
1614
+
1615
+ /* Hover */
1616
+ .ui.toggle.checkbox .box:hover::before,
1617
+ .ui.toggle.checkbox label:hover::before {
1618
+ background-color: rgba(0, 0, 0, 0.15);
1619
+ border: none;
1620
+ }
1621
+
1622
+ /* Active */
1623
+ .ui.toggle.checkbox input:checked ~ .box,
1624
+ .ui.toggle.checkbox input:checked ~ label {
1625
+ color: rgba(0, 0, 0, 0.95) !important;
1626
+ }
1627
+ .ui.toggle.checkbox input:checked ~ .box:before,
1628
+ .ui.toggle.checkbox input:checked ~ label:before {
1629
+ background-color: #2185D0 !important;
1630
+ }
1631
+ .ui.toggle.checkbox input:checked ~ .box:after,
1632
+ .ui.toggle.checkbox input:checked ~ label:after {
1633
+ left: 2.15rem;
1634
+ }
1635
+
1636
+ /* Active Focus */
1637
+ .ui.toggle.checkbox input:focus:checked ~ .box,
1638
+ .ui.toggle.checkbox input:focus:checked ~ label {
1639
+ color: rgba(0, 0, 0, 0.95) !important;
1640
+ }
1641
+ .ui.toggle.checkbox input:focus:checked ~ .box:before,
1642
+ .ui.toggle.checkbox input:focus:checked ~ label:before {
1643
+ background-color: #0d71bb !important;
1644
+ }
1645
+
1646
+
1647
+ /*******************************
1648
+ Variations
1649
+ *******************************/
1650
+
1651
+
1652
+ /*--------------
1653
+ Fitted
1654
+ ---------------*/
1655
+
1656
+ .ui.fitted.checkbox .box,
1657
+ .ui.fitted.checkbox label {
1658
+ padding-left: 0em !important;
1659
+ }
1660
+ .ui.fitted.toggle.checkbox,
1661
+ .ui.fitted.toggle.checkbox {
1662
+ width: 3.5rem;
1663
+ }
1664
+ .ui.fitted.slider.checkbox,
1665
+ .ui.fitted.slider.checkbox {
1666
+ width: 3.5rem;
1667
+ }
1668
+
1669
+
1670
+ /*******************************
1671
+ Theme Overrides
1672
+ *******************************/
1673
+
1674
+ @font-face {
1675
+ font-family: 'Checkbox';
1676
+ src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBD8AAAC8AAAAYGNtYXAYVtCJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zn4huwUAAAF4AAABYGhlYWQGPe1ZAAAC2AAAADZoaGVhB30DyAAAAxAAAAAkaG10eBBKAEUAAAM0AAAAHGxvY2EAmgESAAADUAAAABBtYXhwAAkALwAAA2AAAAAgbmFtZSC8IugAAAOAAAABknBvc3QAAwAAAAAFFAAAACAAAwMTAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6AL//f//AAAAAAAg6AD//f//AAH/4xgEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAEUAUQO7AvgAGgAAARQHAQYjIicBJjU0PwE2MzIfAQE2MzIfARYVA7sQ/hQQFhcQ/uMQEE4QFxcQqAF2EBcXEE4QAnMWEP4UEBABHRAXFhBOEBCoAXcQEE4QFwAAAAABAAABbgMlAkkAFAAAARUUBwYjISInJj0BNDc2MyEyFxYVAyUQEBf9SRcQEBAQFwK3FxAQAhJtFxAQEBAXbRcQEBAQFwAAAAABAAAASQMlA24ALAAAARUUBwYrARUUBwYrASInJj0BIyInJj0BNDc2OwE1NDc2OwEyFxYdATMyFxYVAyUQEBfuEBAXbhYQEO4XEBAQEBfuEBAWbhcQEO4XEBACEm0XEBDuFxAQEBAX7hAQF20XEBDuFxAQEBAX7hAQFwAAAQAAAAIAAHRSzT9fDzz1AAsEAAAAAADRsdR3AAAAANGx1HcAAAAAA7sDbgAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAADuwABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAABFAyUAAAMlAAAAAAAAAAoAFAAeAE4AcgCwAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhWZXJzaW9uIDIuMABWAGUAcgBzAGkAbwBuACAAMgAuADBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhDaGVja2JveABDAGgAZQBjAGsAYgBvAHhSZWd1bGFyAFIAZQBnAHUAbABhAHJDaGVja2JveABDAGgAZQBjAGsAYgBvAHhGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype');
1677
+ }
1678
+
1679
+ /* Checkmark */
1680
+ .ui.checkbox label:after,
1681
+ .ui.checkbox .box:after {
1682
+ font-family: 'Checkbox';
1683
+ }
1684
+
1685
+ /* Checked */
1686
+ .ui.checkbox input:checked ~ .box:after,
1687
+ .ui.checkbox input:checked ~ label:after {
1688
+ content: '\e800';
1689
+ }
1690
+
1691
+ /* Indeterminate */
1692
+ .ui.checkbox input:indeterminate ~ .box:after,
1693
+ .ui.checkbox input:indeterminate ~ label:after {
1694
+ font-size: 12px;
1695
+ content: '\e801';
1696
+ }
1697
+ /* UTF Reference
1698
+ .check:before { content: '\e800'; }
1699
+ .dash:before { content: '\e801'; }
1700
+ .plus:before { content: '\e802'; }
1701
+ */
1702
+
1703
+
1704
+ /*******************************
1705
+ Site Overrides
1706
+ *******************************/