hack_css-rails 0.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,11 @@
1
+ {
2
+ "requires": true,
3
+ "lockfileVersion": 1,
4
+ "dependencies": {
5
+ "hack": {
6
+ "version": "0.8.1",
7
+ "resolved": "https://registry.npmjs.org/hack/-/hack-0.8.1.tgz",
8
+ "integrity": "sha1-TC52st3Aia1NiB1poGGweWDMyzU="
9
+ }
10
+ }
11
+ }
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'json'
4
+ package_lock_file = JSON.parse( File.read '../src/package-lock.json' )
5
+ version = package_lock_file.to_h.dig( 'dependencies', 'hack', 'version' )
6
+ puts version
@@ -0,0 +1,142 @@
1
+ .dark-grey {
2
+ background-color: #181818;
3
+ color: #ccc
4
+ }
5
+
6
+ .dark-grey pre {
7
+ background-color: #181818;
8
+ padding: 0;
9
+ border: none
10
+ }
11
+
12
+ .dark-grey pre code {
13
+ color: #00bcd4
14
+ }
15
+
16
+ .dark-grey h1 a,
17
+ .dark-grey h2 a,
18
+ .dark-grey h3 a,
19
+ .dark-grey h4 a,
20
+ .dark-grey h5 a {
21
+ color: #ccc
22
+ }
23
+
24
+ .dark-grey code,
25
+ .dark-grey strong {
26
+ color: #fff
27
+ }
28
+
29
+ .dark-grey code {
30
+ font-weight: 100
31
+ }
32
+
33
+ .dark-grey table {
34
+ color: #ccc
35
+ }
36
+
37
+ .dark-grey table td,
38
+ .dark-grey table th {
39
+ border-color: #444
40
+ }
41
+
42
+ .dark-grey table tbody td:first-child {
43
+ color: #fff
44
+ }
45
+
46
+ .dark-grey .form-group label {
47
+ color: #ccc;
48
+ border-color: rgba(95, 95, 95, .78)
49
+ }
50
+
51
+ .dark-grey .form-group.form-textarea label:after {
52
+ background-color: #181818
53
+ }
54
+
55
+ .dark-grey .form-control {
56
+ color: #ccc;
57
+ border-color: rgba(95, 95, 95, .78)
58
+ }
59
+
60
+ .dark-grey .form-control:focus {
61
+ border-color: #ccc;
62
+ color: #ccc
63
+ }
64
+
65
+ .dark-grey textarea.form-control {
66
+ color: #ccc
67
+ }
68
+
69
+ .dark-grey .card {
70
+ border-color: rgba(95, 95, 95, .78)
71
+ }
72
+
73
+ .dark-grey .card .card-header {
74
+ background-color: transparent;
75
+ color: #ccc;
76
+ border-bottom: 1px solid rgba(95, 95, 95, .78)
77
+ }
78
+
79
+ .dark-grey .btn.btn-ghost.btn-default {
80
+ border-color: #ababab;
81
+ color: #ababab
82
+ }
83
+
84
+ .dark-grey .btn.btn-ghost.btn-default:focus,
85
+ .dark-grey .btn.btn-ghost.btn-default:hover {
86
+ border-color: #9c9c9c;
87
+ color: #9c9c9c;
88
+ z-index: 1
89
+ }
90
+
91
+ .dark-grey .btn.btn-ghost.btn-default:focus,
92
+ .dark-grey .btn.btn-ghost.btn-default:hover {
93
+ border-color: #e0e0e0;
94
+ color: #e0e0e0
95
+ }
96
+
97
+ .dark-grey .btn.btn-ghost.btn-primary:focus,
98
+ .dark-grey .btn.btn-ghost.btn-primary:hover {
99
+ border-color: #64b5f6;
100
+ color: #64b5f6
101
+ }
102
+
103
+ .dark-grey .btn.btn-ghost.btn-success:focus,
104
+ .dark-grey .btn.btn-ghost.btn-success:hover {
105
+ border-color: #81c784;
106
+ color: #81c784
107
+ }
108
+
109
+ .dark-grey .btn.btn-ghost.btn-info:focus,
110
+ .dark-grey .btn.btn-ghost.btn-info:hover {
111
+ border-color: #4dd0e1;
112
+ color: #4dd0e1
113
+ }
114
+
115
+ .dark-grey .btn.btn-ghost.btn-error:focus,
116
+ .dark-grey .btn.btn-ghost.btn-error:hover {
117
+ border-color: #e57373;
118
+ color: #e57373
119
+ }
120
+
121
+ .dark-grey .btn.btn-ghost.btn-warning:focus,
122
+ .dark-grey .btn.btn-ghost.btn-warning:hover {
123
+ border-color: #ffb74d;
124
+ color: #ffb74d
125
+ }
126
+
127
+ .dark-grey .avatarholder,
128
+ .dark-grey .placeholder {
129
+ background-color: transparent;
130
+ border-color: #333
131
+ }
132
+
133
+ .dark-grey .menu .menu-item {
134
+ color: #ccc;
135
+ border-color: rgba(95, 95, 95, .78)
136
+ }
137
+
138
+ .dark-grey .menu .menu-item.active,
139
+ .dark-grey .menu .menu-item:hover {
140
+ color: #fff;
141
+ border-color: #ccc
142
+ }
@@ -0,0 +1,145 @@
1
+ .dark {
2
+ color: #ccc
3
+ }
4
+
5
+ .dark,
6
+ .dark pre {
7
+ background-color: #000
8
+ }
9
+
10
+ .dark pre {
11
+ padding: 0;
12
+ border: none
13
+ }
14
+
15
+ .dark pre code {
16
+ color: #00bcd4
17
+ }
18
+
19
+ .dark h1 a,
20
+ .dark h2 a,
21
+ .dark h3 a,
22
+ .dark h4 a,
23
+ .dark h5 a {
24
+ color: #ccc
25
+ }
26
+
27
+ .dark code,
28
+ .dark strong {
29
+ color: #fff
30
+ }
31
+
32
+ .dark code {
33
+ font-weight: 100
34
+ }
35
+
36
+ .dark table {
37
+ color: #ccc
38
+ }
39
+
40
+ .dark table td,
41
+ .dark table th {
42
+ border-color: #444
43
+ }
44
+
45
+ .dark table tbody td:first-child {
46
+ color: #fff
47
+ }
48
+
49
+ .dark .form-group label {
50
+ color: #ccc;
51
+ border-color: rgba(95, 95, 95, .78)
52
+ }
53
+
54
+ .dark .form-group.form-textarea label:after {
55
+ background-color: #000
56
+ }
57
+
58
+ .dark .form-control {
59
+ color: #ccc;
60
+ border-color: rgba(95, 95, 95, .78)
61
+ }
62
+
63
+ .dark .form-control:focus {
64
+ border-color: #ccc;
65
+ color: #ccc
66
+ }
67
+
68
+ .dark textarea.form-control {
69
+ color: #ccc
70
+ }
71
+
72
+ .dark .card {
73
+ border-color: rgba(95, 95, 95, .78)
74
+ }
75
+
76
+ .dark .card .card-header {
77
+ background-color: transparent;
78
+ color: #ccc;
79
+ border-bottom: 1px solid rgba(95, 95, 95, .78)
80
+ }
81
+
82
+ .dark .btn.btn-ghost.btn-default {
83
+ border-color: #ababab;
84
+ color: #ababab
85
+ }
86
+
87
+ .dark .btn.btn-ghost.btn-default:focus,
88
+ .dark .btn.btn-ghost.btn-default:hover {
89
+ border-color: #9c9c9c;
90
+ color: #9c9c9c;
91
+ z-index: 1
92
+ }
93
+
94
+ .dark .btn.btn-ghost.btn-default:focus,
95
+ .dark .btn.btn-ghost.btn-default:hover {
96
+ border-color: #e0e0e0;
97
+ color: #e0e0e0
98
+ }
99
+
100
+ .dark .btn.btn-ghost.btn-primary:focus,
101
+ .dark .btn.btn-ghost.btn-primary:hover {
102
+ border-color: #64b5f6;
103
+ color: #64b5f6
104
+ }
105
+
106
+ .dark .btn.btn-ghost.btn-success:focus,
107
+ .dark .btn.btn-ghost.btn-success:hover {
108
+ border-color: #81c784;
109
+ color: #81c784
110
+ }
111
+
112
+ .dark .btn.btn-ghost.btn-info:focus,
113
+ .dark .btn.btn-ghost.btn-info:hover {
114
+ border-color: #4dd0e1;
115
+ color: #4dd0e1
116
+ }
117
+
118
+ .dark .btn.btn-ghost.btn-error:focus,
119
+ .dark .btn.btn-ghost.btn-error:hover {
120
+ border-color: #e57373;
121
+ color: #e57373
122
+ }
123
+
124
+ .dark .btn.btn-ghost.btn-warning:focus,
125
+ .dark .btn.btn-ghost.btn-warning:hover {
126
+ border-color: #ffb74d;
127
+ color: #ffb74d
128
+ }
129
+
130
+ .dark .avatarholder,
131
+ .dark .placeholder {
132
+ background-color: transparent;
133
+ border-color: #333
134
+ }
135
+
136
+ .dark .menu .menu-item {
137
+ color: #ccc;
138
+ border-color: rgba(95, 95, 95, .78)
139
+ }
140
+
141
+ .dark .menu .menu-item.active,
142
+ .dark .menu .menu-item:hover {
143
+ color: #fff;
144
+ border-color: #ccc
145
+ }
@@ -0,0 +1,944 @@
1
+ html {
2
+ font-size: 12px
3
+ }
4
+
5
+ * {
6
+ box-sizing: border-box;
7
+ text-rendering: geometricPrecision
8
+ }
9
+
10
+ body {
11
+ font-size: 1rem;
12
+ line-height: 1.5rem;
13
+ margin: 0;
14
+ font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
15
+ word-wrap: break-word
16
+ }
17
+
18
+ h1,
19
+ h2,
20
+ h3,
21
+ h4,
22
+ h5,
23
+ h6 {
24
+ line-height: 1.3em
25
+ }
26
+
27
+ fieldset {
28
+ border: none;
29
+ padding: 0;
30
+ margin: 0
31
+ }
32
+
33
+ pre {
34
+ padding: 2rem;
35
+ margin: 1.75rem 0;
36
+ background-color: #fff;
37
+ border: 1px solid #ccc;
38
+ overflow: auto
39
+ }
40
+
41
+ code[class*=language-],
42
+ pre[class*=language-],
43
+ pre code {
44
+ font-weight: 100;
45
+ text-shadow: none;
46
+ margin: 1.75rem 0
47
+ }
48
+
49
+ a {
50
+ cursor: pointer;
51
+ color: #ff2e88;
52
+ text-decoration: none;
53
+ border-bottom: 1px solid #ff2e88
54
+ }
55
+
56
+ a:hover {
57
+ background-color: #ff2e88;
58
+ color: #fff
59
+ }
60
+
61
+ .grid {
62
+ display: -ms-flexbox;
63
+ display: flex;
64
+ -ms-flex-wrap: wrap;
65
+ flex-wrap: wrap
66
+ }
67
+
68
+ .grid.\-top {
69
+ -ms-flex-align: start;
70
+ align-items: flex-start
71
+ }
72
+
73
+ .grid.\-middle {
74
+ -ms-flex-align: center;
75
+ align-items: center
76
+ }
77
+
78
+ .grid.\-bottom {
79
+ -ms-flex-align: end;
80
+ align-items: flex-end
81
+ }
82
+
83
+ .grid.\-stretch {
84
+ -ms-flex-align: stretch;
85
+ align-items: stretch
86
+ }
87
+
88
+ .grid.\-baseline {
89
+ -ms-flex-align: baseline;
90
+ align-items: baseline
91
+ }
92
+
93
+ .grid.\-left {
94
+ -ms-flex-pack: start;
95
+ justify-content: flex-start
96
+ }
97
+
98
+ .grid.\-center {
99
+ -ms-flex-pack: center;
100
+ justify-content: center
101
+ }
102
+
103
+ .grid.\-right {
104
+ -ms-flex-pack: end;
105
+ justify-content: flex-end
106
+ }
107
+
108
+ .grid.\-between {
109
+ -ms-flex-pack: justify;
110
+ justify-content: space-between
111
+ }
112
+
113
+ .grid.\-around {
114
+ -ms-flex-pack: distribute;
115
+ justify-content: space-around
116
+ }
117
+
118
+ .cell {
119
+ -ms-flex: 1;
120
+ flex: 1;
121
+ box-sizing: border-box
122
+ }
123
+
124
+ @media screen and (min-width:768px) {
125
+ .cell.\-1of12 {
126
+ -ms-flex: 0 0 8.33333%;
127
+ flex: 0 0 8.33333%
128
+ }
129
+
130
+ .cell.\-2of12 {
131
+ -ms-flex: 0 0 16.66667%;
132
+ flex: 0 0 16.66667%
133
+ }
134
+
135
+ .cell.\-3of12 {
136
+ -ms-flex: 0 0 25%;
137
+ flex: 0 0 25%
138
+ }
139
+
140
+ .cell.\-4of12 {
141
+ -ms-flex: 0 0 33.33333%;
142
+ flex: 0 0 33.33333%
143
+ }
144
+
145
+ .cell.\-5of12 {
146
+ -ms-flex: 0 0 41.66667%;
147
+ flex: 0 0 41.66667%
148
+ }
149
+
150
+ .cell.\-6of12 {
151
+ -ms-flex: 0 0 50%;
152
+ flex: 0 0 50%
153
+ }
154
+
155
+ .cell.\-7of12 {
156
+ -ms-flex: 0 0 58.33333%;
157
+ flex: 0 0 58.33333%
158
+ }
159
+
160
+ .cell.\-8of12 {
161
+ -ms-flex: 0 0 66.66667%;
162
+ flex: 0 0 66.66667%
163
+ }
164
+
165
+ .cell.\-9of12 {
166
+ -ms-flex: 0 0 75%;
167
+ flex: 0 0 75%
168
+ }
169
+
170
+ .cell.\-10of12 {
171
+ -ms-flex: 0 0 83.33333%;
172
+ flex: 0 0 83.33333%
173
+ }
174
+
175
+ .cell.\-11of12 {
176
+ -ms-flex: 0 0 91.66667%;
177
+ flex: 0 0 91.66667%
178
+ }
179
+ }
180
+
181
+ @media screen and (max-width:768px) {
182
+ .grid {
183
+ -ms-flex-direction: column;
184
+ flex-direction: column
185
+ }
186
+
187
+ .cell {
188
+ -ms-flex: 0 0 auto;
189
+ flex: 0 0 auto
190
+ }
191
+ }
192
+
193
+ .hack,
194
+ .hack blockquote,
195
+ .hack code,
196
+ .hack em,
197
+ .hack h1,
198
+ .hack h2,
199
+ .hack h3,
200
+ .hack h4,
201
+ .hack h5,
202
+ .hack h6,
203
+ .hack strong {
204
+ font-size: 1rem;
205
+ font-style: normal;
206
+ font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif
207
+ }
208
+
209
+ .hack blockquote,
210
+ .hack code,
211
+ .hack em,
212
+ .hack strong {
213
+ line-height: 20px
214
+ }
215
+
216
+ .hack blockquote,
217
+ .hack code,
218
+ .hack footer,
219
+ .hack h1,
220
+ .hack h2,
221
+ .hack h3,
222
+ .hack h4,
223
+ .hack h5,
224
+ .hack h6,
225
+ .hack header,
226
+ .hack li,
227
+ .hack ol,
228
+ .hack p,
229
+ .hack section,
230
+ .hack ul {
231
+ float: none;
232
+ margin: 0;
233
+ padding: 0
234
+ }
235
+
236
+ .hack blockquote,
237
+ .hack h1,
238
+ .hack ol,
239
+ .hack p,
240
+ .hack ul {
241
+ margin-top: 20px;
242
+ margin-bottom: 20px
243
+ }
244
+
245
+ .hack h1 {
246
+ position: relative;
247
+ display: inline-block;
248
+ display: table-cell;
249
+ padding: 20px 0 30px;
250
+ margin: 0;
251
+ overflow: hidden
252
+ }
253
+
254
+ .hack h1:after {
255
+ content: "====================================================================================================";
256
+ position: absolute;
257
+ bottom: 10px;
258
+ left: 0
259
+ }
260
+
261
+ .hack h1+* {
262
+ margin-top: 0
263
+ }
264
+
265
+ .hack h2,
266
+ .hack h3,
267
+ .hack h4,
268
+ .hack h5,
269
+ .hack h6 {
270
+ position: relative;
271
+ margin-bottom: 1.75rem
272
+ }
273
+
274
+ .hack h2:before,
275
+ .hack h3:before,
276
+ .hack h4:before,
277
+ .hack h5:before,
278
+ .hack h6:before {
279
+ display: inline
280
+ }
281
+
282
+ .hack h2:before {
283
+ content: "## "
284
+ }
285
+
286
+ .hack h3:before {
287
+ content: "### "
288
+ }
289
+
290
+ .hack h4:before {
291
+ content: "#### "
292
+ }
293
+
294
+ .hack h5:before {
295
+ content: "##### "
296
+ }
297
+
298
+ .hack h6:before {
299
+ content: "###### "
300
+ }
301
+
302
+ .hack li {
303
+ position: relative;
304
+ display: block;
305
+ padding-left: 20px
306
+ }
307
+
308
+ .hack li:after {
309
+ position: absolute;
310
+ top: 0;
311
+ left: 0
312
+ }
313
+
314
+ .hack ul>li:after {
315
+ content: "-"
316
+ }
317
+
318
+ .hack ol {
319
+ counter-reset: a
320
+ }
321
+
322
+ .hack ol>li:after {
323
+ content: counter(a) ".";
324
+ counter-increment: a
325
+ }
326
+
327
+ .hack ol li:nth-child(n+10):after {
328
+ left: -7px
329
+ }
330
+
331
+ .hack blockquote {
332
+ position: relative;
333
+ padding-left: 17px;
334
+ padding-left: 2ch;
335
+ overflow: hidden
336
+ }
337
+
338
+ .hack blockquote:after {
339
+ content: ">\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>";
340
+ white-space: pre;
341
+ position: absolute;
342
+ top: 0;
343
+ left: 0;
344
+ line-height: 20px
345
+ }
346
+
347
+ .hack em:after,
348
+ .hack em:before {
349
+ content: "*";
350
+ display: inline
351
+ }
352
+
353
+ .hack pre code:after,
354
+ .hack pre code:before {
355
+ content: ""
356
+ }
357
+
358
+ .hack code {
359
+ font-weight: 700
360
+ }
361
+
362
+ .hack code:after,
363
+ .hack code:before {
364
+ content: "`";
365
+ display: inline
366
+ }
367
+
368
+ .hack hr {
369
+ position: relative;
370
+ height: 20px;
371
+ overflow: hidden;
372
+ border: 0;
373
+ margin: 20px 0
374
+ }
375
+
376
+ .hack hr:after {
377
+ content: "----------------------------------------------------------------------------------------------------";
378
+ position: absolute;
379
+ top: 0;
380
+ left: 0;
381
+ line-height: 20px;
382
+ width: 100%;
383
+ word-wrap: break-word
384
+ }
385
+
386
+ @-moz-document url-prefix() {
387
+ .hack h1 {
388
+ display: block
389
+ }
390
+ }
391
+
392
+ .hack-ones ol>li:after {
393
+ content: "1."
394
+ }
395
+
396
+ p {
397
+ margin: 0 0 1.75rem
398
+ }
399
+
400
+ .container {
401
+ max-width: 70rem
402
+ }
403
+
404
+ .container,
405
+ .container-fluid {
406
+ margin: 0 auto;
407
+ padding: 0 1rem
408
+ }
409
+
410
+ .inner {
411
+ padding: 1rem
412
+ }
413
+
414
+ .inner2x {
415
+ padding: 2rem
416
+ }
417
+
418
+ .pull-left {
419
+ float: left
420
+ }
421
+
422
+ .pull-right {
423
+ float: right
424
+ }
425
+
426
+ .progress-bar {
427
+ height: 8px;
428
+ opacity: .8;
429
+ background-color: #ccc;
430
+ margin-top: 12px
431
+ }
432
+
433
+ .progress-bar.progress-bar-show-percent {
434
+ margin-top: 38px
435
+ }
436
+
437
+ .progress-bar-filled {
438
+ background-color: gray;
439
+ height: 100%;
440
+ transition: width .3s ease;
441
+ position: relative;
442
+ width: 0
443
+ }
444
+
445
+ .progress-bar-filled:before {
446
+ content: "";
447
+ border: 6px solid transparent;
448
+ border-top-color: gray;
449
+ position: absolute;
450
+ top: -12px;
451
+ right: -6px
452
+ }
453
+
454
+ .progress-bar-filled:after {
455
+ color: gray;
456
+ content: attr(data-filled);
457
+ display: block;
458
+ font-size: 12px;
459
+ white-space: nowrap;
460
+ position: absolute;
461
+ border: 6px solid transparent;
462
+ top: -38px;
463
+ right: 0;
464
+ -ms-transform: translateX(50%);
465
+ transform: translateX(50%)
466
+ }
467
+
468
+ table {
469
+ width: 100%;
470
+ border-collapse: collapse;
471
+ margin: 1.75rem 0;
472
+ color: #778087
473
+ }
474
+
475
+ table td,
476
+ table th {
477
+ vertical-align: top;
478
+ border: 1px solid #ccc;
479
+ line-height: 15px;
480
+ padding: 10px
481
+ }
482
+
483
+ table thead th {
484
+ font-size: 10px
485
+ }
486
+
487
+ table tbody td:first-child {
488
+ font-weight: 700;
489
+ color: #333
490
+ }
491
+
492
+ .form {
493
+ width: 30rem
494
+ }
495
+
496
+ .form-group {
497
+ margin-bottom: 1.75rem;
498
+ overflow: auto
499
+ }
500
+
501
+ .form-group label {
502
+ border-bottom: 2px solid #ccc;
503
+ color: #333;
504
+ width: 10rem;
505
+ display: inline-block;
506
+ height: 38px;
507
+ line-height: 38px;
508
+ padding: 0;
509
+ float: left;
510
+ position: relative
511
+ }
512
+
513
+ .form-group.form-success label {
514
+ color: #4caf50 !important;
515
+ border-color: #4caf50 !important
516
+ }
517
+
518
+ .form-group.form-warning label {
519
+ color: #ff9800 !important;
520
+ border-color: #ff9800 !important
521
+ }
522
+
523
+ .form-group.form-error label {
524
+ color: #f44336 !important;
525
+ border-color: #f44336 !important
526
+ }
527
+
528
+ .form-control {
529
+ outline: none;
530
+ border: none;
531
+ border-bottom: 2px solid #ccc;
532
+ padding: .5rem 0;
533
+ width: 20rem;
534
+ height: 38px;
535
+ background-color: transparent
536
+ }
537
+
538
+ .form-control:focus {
539
+ border-color: #555
540
+ }
541
+
542
+ .form-group.form-textarea label:after {
543
+ position: absolute;
544
+ content: "";
545
+ width: 2px;
546
+ background-color: #fff;
547
+ right: -2px;
548
+ top: 0;
549
+ bottom: 0
550
+ }
551
+
552
+ textarea.form-control {
553
+ height: auto;
554
+ resize: none;
555
+ padding: 1rem 0;
556
+ border-bottom: 2px solid #ccc;
557
+ border-left: 2px solid #ccc;
558
+ padding: .5rem
559
+ }
560
+
561
+ select.form-control {
562
+ border-radius: 0;
563
+ background-color: transparent;
564
+ -webkit-appearance: none;
565
+ -moz-appearance: none;
566
+ -ms-appearance: none
567
+ }
568
+
569
+ .help-block {
570
+ color: #999;
571
+ margin-top: .5rem
572
+ }
573
+
574
+ .form-actions {
575
+ margin-bottom: 1.75rem
576
+ }
577
+
578
+ .btn {
579
+ display: -ms-inline-flexbox;
580
+ display: inline-flex;
581
+ -ms-flex-align: center;
582
+ align-items: center;
583
+ -ms-flex-pack: center;
584
+ justify-content: center;
585
+ cursor: pointer;
586
+ outline: none;
587
+ padding: .65rem 2rem;
588
+ font-size: 1rem;
589
+ -webkit-user-select: none;
590
+ -moz-user-select: none;
591
+ -ms-user-select: none;
592
+ user-select: none;
593
+ position: relative;
594
+ z-index: 1
595
+ }
596
+
597
+ .btn:active {
598
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, .12)
599
+ }
600
+
601
+ .btn.btn-ghost {
602
+ border-color: #757575;
603
+ color: #757575;
604
+ background-color: transparent
605
+ }
606
+
607
+ .btn.btn-ghost:focus,
608
+ .btn.btn-ghost:hover {
609
+ border-color: #424242;
610
+ color: #424242;
611
+ z-index: 2
612
+ }
613
+
614
+ .btn.btn-ghost:hover {
615
+ background-color: transparent
616
+ }
617
+
618
+ .btn-block {
619
+ width: 100%;
620
+ display: -ms-flexbox;
621
+ display: flex
622
+ }
623
+
624
+ .btn-default {
625
+ color: #fff;
626
+ background-color: #e0e0e0;
627
+ border: 1px solid #e0e0e0;
628
+ color: #333
629
+ }
630
+
631
+ .btn-default:focus:not(.btn-ghost),
632
+ .btn-default:hover {
633
+ background-color: #dcdcdc;
634
+ border-color: #dcdcdc
635
+ }
636
+
637
+ .btn-success {
638
+ color: #fff;
639
+ background-color: #4caf50;
640
+ border: 1px solid #4caf50
641
+ }
642
+
643
+ .btn-success:focus:not(.btn-ghost),
644
+ .btn-success:hover {
645
+ background-color: #43a047;
646
+ border-color: #43a047
647
+ }
648
+
649
+ .btn-success.btn-ghost {
650
+ border-color: #4caf50;
651
+ color: #4caf50
652
+ }
653
+
654
+ .btn-success.btn-ghost:focus,
655
+ .btn-success.btn-ghost:hover {
656
+ border-color: #388e3c;
657
+ color: #388e3c;
658
+ z-index: 2
659
+ }
660
+
661
+ .btn-error {
662
+ color: #fff;
663
+ background-color: #f44336;
664
+ border: 1px solid #f44336
665
+ }
666
+
667
+ .btn-error:focus:not(.btn-ghost),
668
+ .btn-error:hover {
669
+ background-color: #e53935;
670
+ border-color: #e53935
671
+ }
672
+
673
+ .btn-error.btn-ghost {
674
+ border-color: #f44336;
675
+ color: #f44336
676
+ }
677
+
678
+ .btn-error.btn-ghost:focus,
679
+ .btn-error.btn-ghost:hover {
680
+ border-color: #d32f2f;
681
+ color: #d32f2f;
682
+ z-index: 2
683
+ }
684
+
685
+ .btn-warning {
686
+ color: #fff;
687
+ background-color: #ff9800;
688
+ border: 1px solid #ff9800
689
+ }
690
+
691
+ .btn-warning:focus:not(.btn-ghost),
692
+ .btn-warning:hover {
693
+ background-color: #fb8c00;
694
+ border-color: #fb8c00
695
+ }
696
+
697
+ .btn-warning.btn-ghost {
698
+ border-color: #ff9800;
699
+ color: #ff9800
700
+ }
701
+
702
+ .btn-warning.btn-ghost:focus,
703
+ .btn-warning.btn-ghost:hover {
704
+ border-color: #f57c00;
705
+ color: #f57c00;
706
+ z-index: 2
707
+ }
708
+
709
+ .btn-info {
710
+ color: #fff;
711
+ background-color: #00bcd4;
712
+ border: 1px solid #00bcd4
713
+ }
714
+
715
+ .btn-info:focus:not(.btn-ghost),
716
+ .btn-info:hover {
717
+ background-color: #00acc1;
718
+ border-color: #00acc1
719
+ }
720
+
721
+ .btn-info.btn-ghost {
722
+ border-color: #00bcd4;
723
+ color: #00bcd4
724
+ }
725
+
726
+ .btn-info.btn-ghost:focus,
727
+ .btn-info.btn-ghost:hover {
728
+ border-color: #0097a7;
729
+ color: #0097a7;
730
+ z-index: 2
731
+ }
732
+
733
+ .btn-primary {
734
+ color: #fff;
735
+ background-color: #2196f3;
736
+ border: 1px solid #2196f3
737
+ }
738
+
739
+ .btn-primary:focus:not(.btn-ghost),
740
+ .btn-primary:hover {
741
+ background-color: #1e88e5;
742
+ border-color: #1e88e5
743
+ }
744
+
745
+ .btn-primary.btn-ghost {
746
+ border-color: #2196f3;
747
+ color: #2196f3
748
+ }
749
+
750
+ .btn-primary.btn-ghost:focus,
751
+ .btn-primary.btn-ghost:hover {
752
+ border-color: #1976d2;
753
+ color: #1976d2;
754
+ z-index: 2
755
+ }
756
+
757
+ .btn-group {
758
+ overflow: auto
759
+ }
760
+
761
+ .btn-group .btn {
762
+ float: left
763
+ }
764
+
765
+ .btn-group .btn-ghost:not(:first-child) {
766
+ margin-left: -1px
767
+ }
768
+
769
+ .card {
770
+ border: 1px solid #ccc
771
+ }
772
+
773
+ .card .card-header {
774
+ color: #333;
775
+ text-align: center;
776
+ background-color: #ddd;
777
+ padding: .5rem 0
778
+ }
779
+
780
+ .alert {
781
+ color: #ccc;
782
+ padding: 1rem;
783
+ border: 1px solid #ccc;
784
+ margin-bottom: 1.75rem
785
+ }
786
+
787
+ .alert-success {
788
+ color: #4caf50;
789
+ border-color: #4caf50
790
+ }
791
+
792
+ .alert-error {
793
+ color: #f44336;
794
+ border-color: #f44336
795
+ }
796
+
797
+ .alert-info {
798
+ color: #00bcd4;
799
+ border-color: #00bcd4
800
+ }
801
+
802
+ .alert-warning {
803
+ color: #ff9800;
804
+ border-color: #ff9800
805
+ }
806
+
807
+ .media:not(:last-child) {
808
+ margin-bottom: 1.25rem
809
+ }
810
+
811
+ .media-left {
812
+ padding-right: 1rem
813
+ }
814
+
815
+ .media-left,
816
+ .media-right {
817
+ display: table-cell;
818
+ vertical-align: top
819
+ }
820
+
821
+ .media-right {
822
+ padding-left: 1rem
823
+ }
824
+
825
+ .media-body {
826
+ display: table-cell;
827
+ vertical-align: top
828
+ }
829
+
830
+ .media-heading {
831
+ font-size: 1.16667rem;
832
+ font-weight: 700
833
+ }
834
+
835
+ .media-content {
836
+ margin-top: .3rem
837
+ }
838
+
839
+ .avatarholder,
840
+ .placeholder {
841
+ background-color: #f0f0f0;
842
+ text-align: center;
843
+ color: #b9b9b9;
844
+ font-size: 1rem;
845
+ border: 1px solid #f0f0f0
846
+ }
847
+
848
+ .avatarholder {
849
+ width: 48px;
850
+ height: 48px;
851
+ line-height: 46px;
852
+ font-size: 2rem;
853
+ background-size: cover;
854
+ background-position: 50%;
855
+ background-repeat: no-repeat
856
+ }
857
+
858
+ .avatarholder.rounded {
859
+ border-radius: 33px
860
+ }
861
+
862
+ .loading {
863
+ display: inline-block;
864
+ content: " ";
865
+ height: 20px;
866
+ width: 20px;
867
+ margin: 0 .5rem;
868
+ animation: a .6s infinite linear;
869
+ border: 2px solid #e91e63;
870
+ border-right-color: transparent;
871
+ border-radius: 50%
872
+ }
873
+
874
+ .btn .loading {
875
+ margin-bottom: 0;
876
+ width: 14px;
877
+ height: 14px
878
+ }
879
+
880
+ .btn div.loading {
881
+ float: left
882
+ }
883
+
884
+ .alert .loading {
885
+ margin-bottom: -5px
886
+ }
887
+
888
+ @keyframes a {
889
+ 0% {
890
+ transform: rotate(0deg)
891
+ }
892
+
893
+ to {
894
+ transform: rotate(1turn)
895
+ }
896
+ }
897
+
898
+ .menu {
899
+ width: 100%
900
+ }
901
+
902
+ .menu .menu-item {
903
+ display: block;
904
+ color: #616161;
905
+ border-color: #616161
906
+ }
907
+
908
+ .menu .menu-item.active,
909
+ .menu .menu-item:hover {
910
+ color: #000;
911
+ border-color: #000;
912
+ background-color: transparent
913
+ }
914
+
915
+ @media screen and (max-width:768px) {
916
+ .form-group label {
917
+ display: block;
918
+ border-bottom: none;
919
+ width: 100%
920
+ }
921
+
922
+ .form-group.form-textarea label:after {
923
+ display: none
924
+ }
925
+
926
+ .form-control {
927
+ width: 100%
928
+ }
929
+
930
+ textarea.form-control {
931
+ border-left: none;
932
+ padding: .5rem 0
933
+ }
934
+
935
+ pre::-webkit-scrollbar {
936
+ height: 3px
937
+ }
938
+ }
939
+
940
+ @media screen and (max-width:480px) {
941
+ .form {
942
+ width: 100%
943
+ }
944
+ }