litestream_rails 0.1.0 → 0.3.0
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.
- checksums.yaml +4 -4
- data/README.md +172 -13
- data/app/controllers/litestream_rails/application_controller.rb +7 -0
- data/app/controllers/litestream_rails/processes_controller.rb +9 -0
- data/app/views/layouts/litestream_rails/_style.html +269 -612
- data/app/views/layouts/litestream_rails/application.html.erb +3 -3
- data/app/views/litestream_rails/processes/show.html.erb +121 -0
- data/config/routes.rb +2 -2
- data/lib/litestream_rails/version.rb +1 -1
- data/lib/litestream_rails.rb +58 -13
- metadata +8 -8
- data/app/controllers/litestream_rails/databases_controller.rb +0 -32
- data/app/views/litestream_rails/databases/index.html.erb +0 -85
@@ -1,13 +1,11 @@
|
|
1
1
|
<style>
|
2
2
|
/*
|
3
|
-
! tailwindcss v3.4.
|
3
|
+
! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
|
4
4
|
*/
|
5
|
-
|
6
5
|
/*
|
7
6
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
8
7
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
9
8
|
*/
|
10
|
-
|
11
9
|
*,
|
12
10
|
::before,
|
13
11
|
::after {
|
@@ -20,12 +18,10 @@
|
|
20
18
|
border-color: #e5e7eb;
|
21
19
|
/* 2 */
|
22
20
|
}
|
23
|
-
|
24
21
|
::before,
|
25
22
|
::after {
|
26
23
|
--tw-content: '';
|
27
24
|
}
|
28
|
-
|
29
25
|
/*
|
30
26
|
1. Use a consistent sensible line-height in all browsers.
|
31
27
|
2. Prevent adjustments of font size after orientation changes in iOS.
|
@@ -35,7 +31,6 @@
|
|
35
31
|
6. Use the user's configured `sans` font-variation-settings by default.
|
36
32
|
7. Disable tap highlights on iOS
|
37
33
|
*/
|
38
|
-
|
39
34
|
html,
|
40
35
|
:host {
|
41
36
|
line-height: 1.5;
|
@@ -55,25 +50,21 @@
|
|
55
50
|
-webkit-tap-highlight-color: transparent;
|
56
51
|
/* 7 */
|
57
52
|
}
|
58
|
-
|
59
53
|
/*
|
60
54
|
1. Remove the margin in all browsers.
|
61
55
|
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
62
56
|
*/
|
63
|
-
|
64
57
|
body {
|
65
58
|
margin: 0;
|
66
59
|
/* 1 */
|
67
60
|
line-height: inherit;
|
68
61
|
/* 2 */
|
69
62
|
}
|
70
|
-
|
71
63
|
/*
|
72
64
|
1. Add the correct height in Firefox.
|
73
65
|
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
74
66
|
3. Ensure horizontal rules are visible by default.
|
75
67
|
*/
|
76
|
-
|
77
68
|
hr {
|
78
69
|
height: 0;
|
79
70
|
/* 1 */
|
@@ -82,20 +73,15 @@
|
|
82
73
|
border-top-width: 1px;
|
83
74
|
/* 3 */
|
84
75
|
}
|
85
|
-
|
86
76
|
/*
|
87
77
|
Add the correct text decoration in Chrome, Edge, and Safari.
|
88
78
|
*/
|
89
|
-
|
90
79
|
abbr:where([title]) {
|
91
|
-
text-decoration
|
92
|
-
text-decoration-style: dotted;
|
80
|
+
text-decoration: underline dotted;
|
93
81
|
}
|
94
|
-
|
95
82
|
/*
|
96
83
|
Remove the default font size and weight for headings.
|
97
84
|
*/
|
98
|
-
|
99
85
|
h1,
|
100
86
|
h2,
|
101
87
|
h3,
|
@@ -105,32 +91,26 @@
|
|
105
91
|
font-size: inherit;
|
106
92
|
font-weight: inherit;
|
107
93
|
}
|
108
|
-
|
109
94
|
/*
|
110
95
|
Reset links to optimize for opt-in styling instead of opt-out.
|
111
96
|
*/
|
112
|
-
|
113
97
|
a {
|
114
98
|
color: inherit;
|
115
99
|
text-decoration: inherit;
|
116
100
|
}
|
117
|
-
|
118
101
|
/*
|
119
102
|
Add the correct font weight in Edge and Safari.
|
120
103
|
*/
|
121
|
-
|
122
104
|
b,
|
123
105
|
strong {
|
124
106
|
font-weight: bolder;
|
125
107
|
}
|
126
|
-
|
127
108
|
/*
|
128
109
|
1. Use the user's configured `mono` font-family by default.
|
129
110
|
2. Use the user's configured `mono` font-feature-settings by default.
|
130
111
|
3. Use the user's configured `mono` font-variation-settings by default.
|
131
112
|
4. Correct the odd `em` font sizing in all browsers.
|
132
113
|
*/
|
133
|
-
|
134
114
|
code,
|
135
115
|
kbd,
|
136
116
|
samp,
|
@@ -144,19 +124,15 @@
|
|
144
124
|
font-size: 1em;
|
145
125
|
/* 4 */
|
146
126
|
}
|
147
|
-
|
148
127
|
/*
|
149
128
|
Add the correct font size in all browsers.
|
150
129
|
*/
|
151
|
-
|
152
130
|
small {
|
153
131
|
font-size: 80%;
|
154
132
|
}
|
155
|
-
|
156
133
|
/*
|
157
134
|
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
158
135
|
*/
|
159
|
-
|
160
136
|
sub,
|
161
137
|
sup {
|
162
138
|
font-size: 75%;
|
@@ -164,21 +140,17 @@
|
|
164
140
|
position: relative;
|
165
141
|
vertical-align: baseline;
|
166
142
|
}
|
167
|
-
|
168
143
|
sub {
|
169
144
|
bottom: -0.25em;
|
170
145
|
}
|
171
|
-
|
172
146
|
sup {
|
173
147
|
top: -0.5em;
|
174
148
|
}
|
175
|
-
|
176
149
|
/*
|
177
150
|
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
178
151
|
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
179
152
|
3. Remove gaps between table borders by default.
|
180
153
|
*/
|
181
|
-
|
182
154
|
table {
|
183
155
|
text-indent: 0;
|
184
156
|
/* 1 */
|
@@ -187,13 +159,11 @@
|
|
187
159
|
border-collapse: collapse;
|
188
160
|
/* 3 */
|
189
161
|
}
|
190
|
-
|
191
162
|
/*
|
192
163
|
1. Change the font styles in all browsers.
|
193
164
|
2. Remove the margin in Firefox and Safari.
|
194
165
|
3. Remove default padding in all browsers.
|
195
166
|
*/
|
196
|
-
|
197
167
|
button,
|
198
168
|
input,
|
199
169
|
optgroup,
|
@@ -211,6 +181,8 @@
|
|
211
181
|
/* 1 */
|
212
182
|
line-height: inherit;
|
213
183
|
/* 1 */
|
184
|
+
letter-spacing: inherit;
|
185
|
+
/* 1 */
|
214
186
|
color: inherit;
|
215
187
|
/* 1 */
|
216
188
|
margin: 0;
|
@@ -218,25 +190,21 @@
|
|
218
190
|
padding: 0;
|
219
191
|
/* 3 */
|
220
192
|
}
|
221
|
-
|
222
193
|
/*
|
223
194
|
Remove the inheritance of text transform in Edge and Firefox.
|
224
195
|
*/
|
225
|
-
|
226
196
|
button,
|
227
197
|
select {
|
228
198
|
text-transform: none;
|
229
199
|
}
|
230
|
-
|
231
200
|
/*
|
232
201
|
1. Correct the inability to style clickable types in iOS and Safari.
|
233
202
|
2. Remove default button styles.
|
234
203
|
*/
|
235
|
-
|
236
204
|
button,
|
237
|
-
[type='button'],
|
238
|
-
[type='reset'],
|
239
|
-
[type='submit'] {
|
205
|
+
input:where([type='button']),
|
206
|
+
input:where([type='reset']),
|
207
|
+
input:where([type='submit']) {
|
240
208
|
-webkit-appearance: button;
|
241
209
|
/* 1 */
|
242
210
|
background-color: transparent;
|
@@ -244,84 +212,66 @@
|
|
244
212
|
background-image: none;
|
245
213
|
/* 2 */
|
246
214
|
}
|
247
|
-
|
248
215
|
/*
|
249
216
|
Use the modern Firefox focus style for all focusable elements.
|
250
217
|
*/
|
251
|
-
|
252
218
|
:-moz-focusring {
|
253
219
|
outline: auto;
|
254
220
|
}
|
255
|
-
|
256
221
|
/*
|
257
222
|
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
258
223
|
*/
|
259
|
-
|
260
224
|
:-moz-ui-invalid {
|
261
225
|
box-shadow: none;
|
262
226
|
}
|
263
|
-
|
264
227
|
/*
|
265
228
|
Add the correct vertical alignment in Chrome and Firefox.
|
266
229
|
*/
|
267
|
-
|
268
230
|
progress {
|
269
231
|
vertical-align: baseline;
|
270
232
|
}
|
271
|
-
|
272
233
|
/*
|
273
234
|
Correct the cursor style of increment and decrement buttons in Safari.
|
274
235
|
*/
|
275
|
-
|
276
236
|
::-webkit-inner-spin-button,
|
277
237
|
::-webkit-outer-spin-button {
|
278
238
|
height: auto;
|
279
239
|
}
|
280
|
-
|
281
240
|
/*
|
282
241
|
1. Correct the odd appearance in Chrome and Safari.
|
283
242
|
2. Correct the outline style in Safari.
|
284
243
|
*/
|
285
|
-
|
286
244
|
[type='search'] {
|
287
245
|
-webkit-appearance: textfield;
|
288
246
|
/* 1 */
|
289
247
|
outline-offset: -2px;
|
290
248
|
/* 2 */
|
291
249
|
}
|
292
|
-
|
293
250
|
/*
|
294
251
|
Remove the inner padding in Chrome and Safari on macOS.
|
295
252
|
*/
|
296
|
-
|
297
253
|
::-webkit-search-decoration {
|
298
254
|
-webkit-appearance: none;
|
299
255
|
}
|
300
|
-
|
301
256
|
/*
|
302
257
|
1. Correct the inability to style clickable types in iOS and Safari.
|
303
258
|
2. Change font properties to `inherit` in Safari.
|
304
259
|
*/
|
305
|
-
|
306
260
|
::-webkit-file-upload-button {
|
307
261
|
-webkit-appearance: button;
|
308
262
|
/* 1 */
|
309
263
|
font: inherit;
|
310
264
|
/* 2 */
|
311
265
|
}
|
312
|
-
|
313
266
|
/*
|
314
267
|
Add the correct display in Chrome and Safari.
|
315
268
|
*/
|
316
|
-
|
317
269
|
summary {
|
318
270
|
display: list-item;
|
319
271
|
}
|
320
|
-
|
321
272
|
/*
|
322
273
|
Removes the default spacing and border for appropriate elements.
|
323
274
|
*/
|
324
|
-
|
325
275
|
blockquote,
|
326
276
|
dl,
|
327
277
|
dd,
|
@@ -337,16 +287,13 @@
|
|
337
287
|
pre {
|
338
288
|
margin: 0;
|
339
289
|
}
|
340
|
-
|
341
290
|
fieldset {
|
342
291
|
margin: 0;
|
343
292
|
padding: 0;
|
344
293
|
}
|
345
|
-
|
346
294
|
legend {
|
347
295
|
padding: 0;
|
348
296
|
}
|
349
|
-
|
350
297
|
ol,
|
351
298
|
ul,
|
352
299
|
menu {
|
@@ -354,28 +301,22 @@
|
|
354
301
|
margin: 0;
|
355
302
|
padding: 0;
|
356
303
|
}
|
357
|
-
|
358
304
|
/*
|
359
305
|
Reset default styling for dialogs.
|
360
306
|
*/
|
361
|
-
|
362
307
|
dialog {
|
363
308
|
padding: 0;
|
364
309
|
}
|
365
|
-
|
366
310
|
/*
|
367
311
|
Prevent resizing textareas horizontally by default.
|
368
312
|
*/
|
369
|
-
|
370
313
|
textarea {
|
371
314
|
resize: vertical;
|
372
315
|
}
|
373
|
-
|
374
316
|
/*
|
375
317
|
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
376
318
|
2. Set the default placeholder color to the user's configured gray 400 color.
|
377
319
|
*/
|
378
|
-
|
379
320
|
input::placeholder,
|
380
321
|
textarea::placeholder {
|
381
322
|
opacity: 1;
|
@@ -383,30 +324,24 @@
|
|
383
324
|
color: #9ca3af;
|
384
325
|
/* 2 */
|
385
326
|
}
|
386
|
-
|
387
327
|
/*
|
388
328
|
Set the default cursor for buttons.
|
389
329
|
*/
|
390
|
-
|
391
330
|
button,
|
392
331
|
[role="button"] {
|
393
332
|
cursor: pointer;
|
394
333
|
}
|
395
|
-
|
396
334
|
/*
|
397
335
|
Make sure disabled buttons don't get the pointer cursor.
|
398
336
|
*/
|
399
|
-
|
400
337
|
:disabled {
|
401
338
|
cursor: default;
|
402
339
|
}
|
403
|
-
|
404
340
|
/*
|
405
341
|
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
406
342
|
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
407
343
|
This can trigger a poorly considered lint error in some tools but is included by design.
|
408
344
|
*/
|
409
|
-
|
410
345
|
img,
|
411
346
|
svg,
|
412
347
|
video,
|
@@ -420,24 +355,19 @@
|
|
420
355
|
vertical-align: middle;
|
421
356
|
/* 2 */
|
422
357
|
}
|
423
|
-
|
424
358
|
/*
|
425
359
|
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
426
360
|
*/
|
427
|
-
|
428
361
|
img,
|
429
362
|
video {
|
430
363
|
max-width: 100%;
|
431
364
|
height: auto;
|
432
365
|
}
|
433
|
-
|
434
366
|
/* Make elements with the HTML hidden attribute stay hidden by default */
|
435
|
-
|
436
367
|
[hidden] {
|
437
368
|
display: none;
|
438
369
|
}
|
439
|
-
|
440
|
-
*, ::before, ::after{
|
370
|
+
*, ::before, ::after {
|
441
371
|
--tw-border-spacing-x: 0;
|
442
372
|
--tw-border-spacing-y: 0;
|
443
373
|
--tw-translate-x: 0;
|
@@ -447,19 +377,19 @@
|
|
447
377
|
--tw-skew-y: 0;
|
448
378
|
--tw-scale-x: 1;
|
449
379
|
--tw-scale-y: 1;
|
450
|
-
--tw-pan-x:
|
451
|
-
--tw-pan-y:
|
452
|
-
--tw-pinch-zoom:
|
380
|
+
--tw-pan-x: ;
|
381
|
+
--tw-pan-y: ;
|
382
|
+
--tw-pinch-zoom: ;
|
453
383
|
--tw-scroll-snap-strictness: proximity;
|
454
|
-
--tw-gradient-from-position:
|
455
|
-
--tw-gradient-via-position:
|
456
|
-
--tw-gradient-to-position:
|
457
|
-
--tw-ordinal:
|
458
|
-
--tw-slashed-zero:
|
459
|
-
--tw-numeric-figure:
|
460
|
-
--tw-numeric-spacing:
|
461
|
-
--tw-numeric-fraction:
|
462
|
-
--tw-ring-inset:
|
384
|
+
--tw-gradient-from-position: ;
|
385
|
+
--tw-gradient-via-position: ;
|
386
|
+
--tw-gradient-to-position: ;
|
387
|
+
--tw-ordinal: ;
|
388
|
+
--tw-slashed-zero: ;
|
389
|
+
--tw-numeric-figure: ;
|
390
|
+
--tw-numeric-spacing: ;
|
391
|
+
--tw-numeric-fraction: ;
|
392
|
+
--tw-ring-inset: ;
|
463
393
|
--tw-ring-offset-width: 0px;
|
464
394
|
--tw-ring-offset-color: #fff;
|
465
395
|
--tw-ring-color: rgb(59 130 246 / 0.5);
|
@@ -467,27 +397,30 @@
|
|
467
397
|
--tw-ring-shadow: 0 0 #0000;
|
468
398
|
--tw-shadow: 0 0 #0000;
|
469
399
|
--tw-shadow-colored: 0 0 #0000;
|
470
|
-
--tw-blur:
|
471
|
-
--tw-brightness:
|
472
|
-
--tw-contrast:
|
473
|
-
--tw-grayscale:
|
474
|
-
--tw-hue-rotate:
|
475
|
-
--tw-invert:
|
476
|
-
--tw-saturate:
|
477
|
-
--tw-sepia:
|
478
|
-
--tw-drop-shadow:
|
479
|
-
--tw-backdrop-blur:
|
480
|
-
--tw-backdrop-brightness:
|
481
|
-
--tw-backdrop-contrast:
|
482
|
-
--tw-backdrop-grayscale:
|
483
|
-
--tw-backdrop-hue-rotate:
|
484
|
-
--tw-backdrop-invert:
|
485
|
-
--tw-backdrop-opacity:
|
486
|
-
--tw-backdrop-saturate:
|
487
|
-
--tw-backdrop-sepia:
|
488
|
-
|
489
|
-
|
490
|
-
|
400
|
+
--tw-blur: ;
|
401
|
+
--tw-brightness: ;
|
402
|
+
--tw-contrast: ;
|
403
|
+
--tw-grayscale: ;
|
404
|
+
--tw-hue-rotate: ;
|
405
|
+
--tw-invert: ;
|
406
|
+
--tw-saturate: ;
|
407
|
+
--tw-sepia: ;
|
408
|
+
--tw-drop-shadow: ;
|
409
|
+
--tw-backdrop-blur: ;
|
410
|
+
--tw-backdrop-brightness: ;
|
411
|
+
--tw-backdrop-contrast: ;
|
412
|
+
--tw-backdrop-grayscale: ;
|
413
|
+
--tw-backdrop-hue-rotate: ;
|
414
|
+
--tw-backdrop-invert: ;
|
415
|
+
--tw-backdrop-opacity: ;
|
416
|
+
--tw-backdrop-saturate: ;
|
417
|
+
--tw-backdrop-sepia: ;
|
418
|
+
--tw-contain-size: ;
|
419
|
+
--tw-contain-layout: ;
|
420
|
+
--tw-contain-paint: ;
|
421
|
+
--tw-contain-style: ;
|
422
|
+
}
|
423
|
+
::backdrop {
|
491
424
|
--tw-border-spacing-x: 0;
|
492
425
|
--tw-border-spacing-y: 0;
|
493
426
|
--tw-translate-x: 0;
|
@@ -497,19 +430,19 @@
|
|
497
430
|
--tw-skew-y: 0;
|
498
431
|
--tw-scale-x: 1;
|
499
432
|
--tw-scale-y: 1;
|
500
|
-
--tw-pan-x:
|
501
|
-
--tw-pan-y:
|
502
|
-
--tw-pinch-zoom:
|
433
|
+
--tw-pan-x: ;
|
434
|
+
--tw-pan-y: ;
|
435
|
+
--tw-pinch-zoom: ;
|
503
436
|
--tw-scroll-snap-strictness: proximity;
|
504
|
-
--tw-gradient-from-position:
|
505
|
-
--tw-gradient-via-position:
|
506
|
-
--tw-gradient-to-position:
|
507
|
-
--tw-ordinal:
|
508
|
-
--tw-slashed-zero:
|
509
|
-
--tw-numeric-figure:
|
510
|
-
--tw-numeric-spacing:
|
511
|
-
--tw-numeric-fraction:
|
512
|
-
--tw-ring-inset:
|
437
|
+
--tw-gradient-from-position: ;
|
438
|
+
--tw-gradient-via-position: ;
|
439
|
+
--tw-gradient-to-position: ;
|
440
|
+
--tw-ordinal: ;
|
441
|
+
--tw-slashed-zero: ;
|
442
|
+
--tw-numeric-figure: ;
|
443
|
+
--tw-numeric-spacing: ;
|
444
|
+
--tw-numeric-fraction: ;
|
445
|
+
--tw-ring-inset: ;
|
513
446
|
--tw-ring-offset-width: 0px;
|
514
447
|
--tw-ring-offset-color: #fff;
|
515
448
|
--tw-ring-color: rgb(59 130 246 / 0.5);
|
@@ -517,602 +450,326 @@
|
|
517
450
|
--tw-ring-shadow: 0 0 #0000;
|
518
451
|
--tw-shadow: 0 0 #0000;
|
519
452
|
--tw-shadow-colored: 0 0 #0000;
|
520
|
-
--tw-blur:
|
521
|
-
--tw-brightness:
|
522
|
-
--tw-contrast:
|
523
|
-
--tw-grayscale:
|
524
|
-
--tw-hue-rotate:
|
525
|
-
--tw-invert:
|
526
|
-
--tw-saturate:
|
527
|
-
--tw-sepia:
|
528
|
-
--tw-drop-shadow:
|
529
|
-
--tw-backdrop-blur:
|
530
|
-
--tw-backdrop-brightness:
|
531
|
-
--tw-backdrop-contrast:
|
532
|
-
--tw-backdrop-grayscale:
|
533
|
-
--tw-backdrop-hue-rotate:
|
534
|
-
--tw-backdrop-invert:
|
535
|
-
--tw-backdrop-opacity:
|
536
|
-
--tw-backdrop-saturate:
|
537
|
-
--tw-backdrop-sepia:
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
}
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
453
|
+
--tw-blur: ;
|
454
|
+
--tw-brightness: ;
|
455
|
+
--tw-contrast: ;
|
456
|
+
--tw-grayscale: ;
|
457
|
+
--tw-hue-rotate: ;
|
458
|
+
--tw-invert: ;
|
459
|
+
--tw-saturate: ;
|
460
|
+
--tw-sepia: ;
|
461
|
+
--tw-drop-shadow: ;
|
462
|
+
--tw-backdrop-blur: ;
|
463
|
+
--tw-backdrop-brightness: ;
|
464
|
+
--tw-backdrop-contrast: ;
|
465
|
+
--tw-backdrop-grayscale: ;
|
466
|
+
--tw-backdrop-hue-rotate: ;
|
467
|
+
--tw-backdrop-invert: ;
|
468
|
+
--tw-backdrop-opacity: ;
|
469
|
+
--tw-backdrop-saturate: ;
|
470
|
+
--tw-backdrop-sepia: ;
|
471
|
+
--tw-contain-size: ;
|
472
|
+
--tw-contain-layout: ;
|
473
|
+
--tw-contain-paint: ;
|
474
|
+
--tw-contain-style: ;
|
475
|
+
}
|
476
|
+
.container {
|
477
|
+
width: 100%;
|
478
|
+
}
|
479
|
+
@media (min-width: 640px) {
|
480
|
+
.container {
|
481
|
+
max-width: 640px;
|
547
482
|
}
|
548
483
|
}
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
max-width: 768px
|
484
|
+
@media (min-width: 768px) {
|
485
|
+
.container {
|
486
|
+
max-width: 768px;
|
553
487
|
}
|
554
488
|
}
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
max-width: 1024px
|
489
|
+
@media (min-width: 1024px) {
|
490
|
+
.container {
|
491
|
+
max-width: 1024px;
|
559
492
|
}
|
560
493
|
}
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
max-width: 1280px
|
494
|
+
@media (min-width: 1280px) {
|
495
|
+
.container {
|
496
|
+
max-width: 1280px;
|
565
497
|
}
|
566
498
|
}
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
max-width: 1536px
|
499
|
+
@media (min-width: 1536px) {
|
500
|
+
.container {
|
501
|
+
max-width: 1536px;
|
571
502
|
}
|
572
503
|
}
|
573
|
-
|
574
|
-
|
575
|
-
position: absolute;
|
576
|
-
width: 1px;
|
577
|
-
height: 1px;
|
578
|
-
padding: 0;
|
579
|
-
margin: -1px;
|
580
|
-
overflow: hidden;
|
581
|
-
clip: rect(0, 0, 0, 0);
|
582
|
-
white-space: nowrap;
|
583
|
-
border-width: 0
|
584
|
-
}
|
585
|
-
|
586
|
-
.fixed{
|
587
|
-
position: fixed
|
588
|
-
}
|
589
|
-
|
590
|
-
.relative{
|
591
|
-
position: relative
|
504
|
+
.fixed {
|
505
|
+
position: fixed;
|
592
506
|
}
|
593
|
-
|
594
|
-
|
595
|
-
left: 0px
|
507
|
+
.left-0 {
|
508
|
+
left: 0px;
|
596
509
|
}
|
597
|
-
|
598
|
-
|
599
|
-
right: 0px
|
510
|
+
.right-0 {
|
511
|
+
right: 0px;
|
600
512
|
}
|
601
|
-
|
602
|
-
|
603
|
-
top: 0px
|
513
|
+
.top-0 {
|
514
|
+
top: 0px;
|
604
515
|
}
|
605
|
-
|
606
516
|
.col-span-2 {
|
607
517
|
grid-column: span 2 / span 2;
|
608
518
|
}
|
609
|
-
|
610
|
-
.-mx-2{
|
611
|
-
margin-left: -0.5rem;
|
612
|
-
margin-right: -0.5rem
|
613
|
-
}
|
614
|
-
|
615
|
-
.mx-auto{
|
519
|
+
.mx-auto {
|
616
520
|
margin-left: auto;
|
617
|
-
margin-right: auto
|
521
|
+
margin-right: auto;
|
618
522
|
}
|
619
|
-
|
620
|
-
|
621
|
-
margin-bottom: 0.75rem
|
523
|
+
.mb-3 {
|
524
|
+
margin-bottom: 0.75rem;
|
622
525
|
}
|
623
|
-
|
624
|
-
|
625
|
-
margin-left: 1.5rem
|
526
|
+
.ml-2 {
|
527
|
+
margin-left: 0.5rem;
|
626
528
|
}
|
627
|
-
|
628
|
-
|
629
|
-
margin-right: 0.5rem
|
529
|
+
.ml-4 {
|
530
|
+
margin-left: 1rem;
|
630
531
|
}
|
631
|
-
|
632
|
-
|
633
|
-
margin-top: 1rem
|
532
|
+
.ml-7 {
|
533
|
+
margin-left: 1.75rem;
|
634
534
|
}
|
635
|
-
|
636
|
-
|
637
|
-
display: inline-block
|
535
|
+
.mt-24 {
|
536
|
+
margin-top: 6rem;
|
638
537
|
}
|
639
|
-
|
640
|
-
|
641
|
-
display: flex
|
538
|
+
.mt-4 {
|
539
|
+
margin-top: 1rem;
|
642
540
|
}
|
643
|
-
|
644
|
-
|
645
|
-
display: inline-flex
|
541
|
+
.flex {
|
542
|
+
display: flex;
|
646
543
|
}
|
647
|
-
|
648
|
-
|
649
|
-
display: table
|
544
|
+
.inline-flex {
|
545
|
+
display: inline-flex;
|
650
546
|
}
|
651
|
-
|
652
|
-
|
653
|
-
display: grid
|
547
|
+
.table {
|
548
|
+
display: table;
|
654
549
|
}
|
655
|
-
|
656
|
-
|
657
|
-
min-height: 100%
|
550
|
+
.grid {
|
551
|
+
display: grid;
|
658
552
|
}
|
659
|
-
|
660
|
-
|
661
|
-
height: 100%
|
553
|
+
.h-full {
|
554
|
+
height: 100%;
|
662
555
|
}
|
663
|
-
|
664
|
-
|
665
|
-
min-width: 100%
|
556
|
+
.min-w-full {
|
557
|
+
min-width: 100%;
|
666
558
|
}
|
667
|
-
|
668
|
-
|
669
|
-
flex: 1 1 0%
|
559
|
+
.max-w-4xl {
|
560
|
+
max-width: 56rem;
|
670
561
|
}
|
671
|
-
|
672
|
-
|
673
|
-
cursor: help
|
562
|
+
.grow {
|
563
|
+
flex-grow: 1;
|
674
564
|
}
|
675
|
-
|
676
|
-
|
677
|
-
cursor: pointer
|
565
|
+
.cursor-help {
|
566
|
+
cursor: help;
|
678
567
|
}
|
679
|
-
|
680
|
-
|
681
|
-
user-select: none
|
568
|
+
.cursor-pointer {
|
569
|
+
cursor: pointer;
|
682
570
|
}
|
683
|
-
|
684
|
-
|
685
|
-
grid-template-columns: repeat(2, minmax(0, 1fr))
|
571
|
+
.list-outside {
|
572
|
+
list-style-position: outside;
|
686
573
|
}
|
687
|
-
|
688
|
-
|
689
|
-
flex-direction: column
|
574
|
+
.list-\[square\] {
|
575
|
+
list-style-type: square;
|
690
576
|
}
|
691
|
-
|
692
|
-
|
693
|
-
flex-wrap: wrap
|
577
|
+
.grid-cols-\[fit-content\(100\%\)_1fr\] {
|
578
|
+
grid-template-columns: fit-content(100%) 1fr;
|
694
579
|
}
|
695
|
-
|
696
|
-
|
697
|
-
flex-grow: 1
|
580
|
+
.flex-col {
|
581
|
+
flex-direction: column;
|
698
582
|
}
|
699
|
-
|
700
|
-
|
701
|
-
align-items: flex-start
|
583
|
+
.items-center {
|
584
|
+
align-items: center;
|
702
585
|
}
|
703
|
-
|
704
|
-
|
705
|
-
align-items: center
|
586
|
+
.items-baseline {
|
587
|
+
align-items: baseline;
|
706
588
|
}
|
707
|
-
|
708
|
-
|
709
|
-
align-items: baseline
|
589
|
+
.justify-between {
|
590
|
+
justify-content: space-between;
|
710
591
|
}
|
711
|
-
|
712
|
-
|
713
|
-
justify-content: flex-start
|
592
|
+
.gap-2 {
|
593
|
+
gap: 0.5rem;
|
714
594
|
}
|
715
|
-
|
716
|
-
|
717
|
-
justify-content: center
|
595
|
+
.gap-x-4 {
|
596
|
+
column-gap: 1rem;
|
718
597
|
}
|
719
|
-
|
720
|
-
|
721
|
-
|
598
|
+
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
|
599
|
+
--tw-space-y-reverse: 0;
|
600
|
+
margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
|
601
|
+
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
|
722
602
|
}
|
723
|
-
|
724
|
-
|
725
|
-
|
603
|
+
.divide-y > :not([hidden]) ~ :not([hidden]) {
|
604
|
+
--tw-divide-y-reverse: 0;
|
605
|
+
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
606
|
+
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
726
607
|
}
|
727
|
-
|
728
|
-
|
729
|
-
|
608
|
+
.divide-gray-300 > :not([hidden]) ~ :not([hidden]) {
|
609
|
+
--tw-divide-opacity: 1;
|
610
|
+
border-color: rgb(209 213 219 / var(--tw-divide-opacity));
|
730
611
|
}
|
731
|
-
|
732
|
-
|
733
|
-
gap: 0.75rem
|
612
|
+
.whitespace-nowrap {
|
613
|
+
white-space: nowrap;
|
734
614
|
}
|
735
|
-
|
736
|
-
|
737
|
-
column-gap: 0.5rem
|
615
|
+
.rounded {
|
616
|
+
border-radius: 0.25rem;
|
738
617
|
}
|
739
|
-
|
740
|
-
|
741
|
-
column-gap: 1rem
|
618
|
+
.rounded-full {
|
619
|
+
border-radius: 9999px;
|
742
620
|
}
|
743
|
-
|
744
|
-
|
745
|
-
--tw-space-y-reverse: 0;
|
746
|
-
margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
|
747
|
-
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse))
|
621
|
+
.rounded-md {
|
622
|
+
border-radius: 0.375rem;
|
748
623
|
}
|
749
|
-
|
750
|
-
|
751
|
-
--tw-divide-y-reverse: 0;
|
752
|
-
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
753
|
-
border-bottom-width: calc(1px * var(--tw-divide-y-reverse))
|
624
|
+
.border-b {
|
625
|
+
border-bottom-width: 1px;
|
754
626
|
}
|
755
|
-
|
756
|
-
|
757
|
-
--tw-divide-opacity: 1;
|
758
|
-
border-color: rgb(209 213 219 / var(--tw-divide-opacity))
|
759
|
-
}
|
760
|
-
|
761
|
-
.overflow-auto{
|
762
|
-
overflow: auto
|
763
|
-
}
|
764
|
-
|
765
|
-
.whitespace-nowrap{
|
766
|
-
white-space: nowrap
|
767
|
-
}
|
768
|
-
|
769
|
-
.whitespace-pre-wrap{
|
770
|
-
white-space: pre-wrap
|
771
|
-
}
|
772
|
-
|
773
|
-
.rounded{
|
774
|
-
border-radius: 0.25rem
|
775
|
-
}
|
776
|
-
|
777
|
-
.rounded-lg{
|
778
|
-
border-radius: 0.5rem
|
779
|
-
}
|
780
|
-
|
781
|
-
.rounded-b-lg{
|
782
|
-
border-bottom-right-radius: 0.5rem;
|
783
|
-
border-bottom-left-radius: 0.5rem
|
784
|
-
}
|
785
|
-
|
786
|
-
.border{
|
787
|
-
border-width: 1px
|
788
|
-
}
|
789
|
-
|
790
|
-
.border-b{
|
791
|
-
border-bottom-width: 1px
|
792
|
-
}
|
793
|
-
|
794
|
-
.border-black{
|
795
|
-
--tw-border-opacity: 1;
|
796
|
-
border-color: rgb(0 0 0 / var(--tw-border-opacity))
|
797
|
-
}
|
798
|
-
|
799
|
-
.border-blue-500{
|
800
|
-
--tw-border-opacity: 1;
|
801
|
-
border-color: rgb(59 130 246 / var(--tw-border-opacity))
|
802
|
-
}
|
803
|
-
|
804
|
-
.border-gray-300{
|
805
|
-
--tw-border-opacity: 1;
|
806
|
-
border-color: rgb(209 213 219 / var(--tw-border-opacity))
|
807
|
-
}
|
808
|
-
|
809
|
-
.bg-gray-100{
|
810
|
-
--tw-bg-opacity: 1;
|
811
|
-
background-color: rgb(243 244 246 / var(--tw-bg-opacity))
|
627
|
+
.border-t {
|
628
|
+
border-top-width: 1px;
|
812
629
|
}
|
813
|
-
|
814
|
-
.bg-green-50{
|
630
|
+
.bg-green-100 {
|
815
631
|
--tw-bg-opacity: 1;
|
816
|
-
background-color: rgb(
|
632
|
+
background-color: rgb(220 252 231 / var(--tw-bg-opacity));
|
817
633
|
}
|
818
|
-
|
819
|
-
.bg-red-50{
|
634
|
+
.bg-red-100 {
|
820
635
|
--tw-bg-opacity: 1;
|
821
|
-
background-color: rgb(254
|
636
|
+
background-color: rgb(254 226 226 / var(--tw-bg-opacity));
|
822
637
|
}
|
823
|
-
|
824
|
-
.bg-slate-800{
|
638
|
+
.bg-yellow-100 {
|
825
639
|
--tw-bg-opacity: 1;
|
826
|
-
background-color: rgb(
|
827
|
-
}
|
828
|
-
|
829
|
-
.bg-transparent{
|
830
|
-
background-color: transparent
|
640
|
+
background-color: rgb(254 249 195 / var(--tw-bg-opacity));
|
831
641
|
}
|
832
|
-
|
833
|
-
.bg-white{
|
642
|
+
.bg-slate-800 {
|
834
643
|
--tw-bg-opacity: 1;
|
835
|
-
background-color: rgb(
|
644
|
+
background-color: rgb(30 41 59 / var(--tw-bg-opacity));
|
836
645
|
}
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
}
|
841
|
-
|
842
|
-
.p-4{
|
843
|
-
padding: 1rem
|
646
|
+
.bg-white {
|
647
|
+
--tw-bg-opacity: 1;
|
648
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
844
649
|
}
|
845
|
-
|
846
|
-
|
847
|
-
padding-left: 0px;
|
848
|
-
padding-right: 0px
|
650
|
+
.p-2 {
|
651
|
+
padding: 0.5rem;
|
849
652
|
}
|
850
|
-
|
851
|
-
.px-2{
|
653
|
+
.px-2 {
|
852
654
|
padding-left: 0.5rem;
|
853
|
-
padding-right: 0.5rem
|
655
|
+
padding-right: 0.5rem;
|
854
656
|
}
|
855
|
-
|
856
|
-
|
857
|
-
padding-
|
858
|
-
padding-right: 0.75rem
|
657
|
+
.px-2\.5 {
|
658
|
+
padding-left: 0.625rem;
|
659
|
+
padding-right: 0.625rem;
|
859
660
|
}
|
860
|
-
|
861
|
-
.px-5{
|
862
|
-
padding-left: 1.25rem;
|
863
|
-
padding-right: 1.25rem
|
864
|
-
}
|
865
|
-
|
866
|
-
.py-1{
|
661
|
+
.py-1 {
|
867
662
|
padding-top: 0.25rem;
|
868
|
-
padding-bottom: 0.25rem
|
869
|
-
}
|
870
|
-
|
871
|
-
.py-2{
|
872
|
-
padding-top: 0.5rem;
|
873
|
-
padding-bottom: 0.5rem
|
663
|
+
padding-bottom: 0.25rem;
|
874
664
|
}
|
875
|
-
|
876
|
-
|
877
|
-
padding-
|
878
|
-
padding-bottom: 0.75rem
|
665
|
+
.py-1\.5 {
|
666
|
+
padding-top: 0.375rem;
|
667
|
+
padding-bottom: 0.375rem;
|
879
668
|
}
|
880
|
-
|
881
|
-
|
882
|
-
padding-
|
883
|
-
padding-bottom: 0.875rem
|
669
|
+
.py-2 {
|
670
|
+
padding-top: 0.5rem;
|
671
|
+
padding-bottom: 0.5rem;
|
884
672
|
}
|
885
|
-
|
886
|
-
.py-4{
|
673
|
+
.py-4 {
|
887
674
|
padding-top: 1rem;
|
888
|
-
padding-bottom: 1rem
|
889
|
-
}
|
890
|
-
|
891
|
-
.pb-2{
|
892
|
-
padding-bottom: 0.5rem
|
893
|
-
}
|
894
|
-
|
895
|
-
.pb-4{
|
896
|
-
padding-bottom: 1rem
|
897
|
-
}
|
898
|
-
|
899
|
-
.pl-3{
|
900
|
-
padding-left: 0.75rem
|
901
|
-
}
|
902
|
-
|
903
|
-
.pl-4{
|
904
|
-
padding-left: 1rem
|
675
|
+
padding-bottom: 1rem;
|
905
676
|
}
|
906
|
-
|
907
|
-
|
908
|
-
padding-right: 0.75rem
|
677
|
+
.text-left {
|
678
|
+
text-align: left;
|
909
679
|
}
|
910
|
-
|
911
|
-
|
912
|
-
padding-right: 1rem
|
680
|
+
.text-center {
|
681
|
+
text-align: center;
|
913
682
|
}
|
914
|
-
|
915
|
-
|
916
|
-
padding-top: 1.75rem
|
683
|
+
.text-right {
|
684
|
+
text-align: right;
|
917
685
|
}
|
918
|
-
|
919
|
-
|
920
|
-
border-radius: 0.375rem
|
686
|
+
.align-top {
|
687
|
+
vertical-align: top;
|
921
688
|
}
|
922
|
-
|
923
|
-
.text-left{
|
924
|
-
text-align: left
|
925
|
-
}
|
926
|
-
|
927
|
-
.text-center{
|
928
|
-
text-align: center
|
929
|
-
}
|
930
|
-
|
931
|
-
.text-right{
|
932
|
-
text-align: right
|
933
|
-
}
|
934
|
-
|
935
|
-
.text-black{
|
936
|
-
--tw-text-opacity: 1;
|
937
|
-
color: rgb(0 0 0 / var(--tw-text-opacity))
|
938
|
-
}
|
939
|
-
|
940
|
-
.align-top{
|
941
|
-
vertical-align: top
|
942
|
-
}
|
943
|
-
|
944
|
-
.text-2xl{
|
689
|
+
.text-2xl {
|
945
690
|
font-size: 1.5rem;
|
946
|
-
line-height: 2rem
|
691
|
+
line-height: 2rem;
|
947
692
|
}
|
948
|
-
|
949
|
-
.text-base{
|
693
|
+
.text-base {
|
950
694
|
font-size: 1rem;
|
951
|
-
line-height: 1.5rem
|
952
|
-
}
|
953
|
-
|
954
|
-
.text-sm{
|
955
|
-
font-size: 0.875rem;
|
956
|
-
line-height: 1.25rem
|
695
|
+
line-height: 1.5rem;
|
957
696
|
}
|
958
|
-
|
959
|
-
|
960
|
-
|
697
|
+
.text-lg {
|
698
|
+
font-size: 1.125rem;
|
699
|
+
line-height: 1.75rem;
|
961
700
|
}
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
}
|
966
|
-
|
967
|
-
.font-semibold{
|
968
|
-
font-weight: 600
|
969
|
-
}
|
970
|
-
|
971
|
-
.leading-normal{
|
972
|
-
line-height: 1.5
|
973
|
-
}
|
974
|
-
|
975
|
-
.bg-blue-100{
|
976
|
-
--tw-bg-opacity: 1;
|
977
|
-
background-color: rgb(219 234 254 / var(--tw-bg-opacity))
|
978
|
-
}
|
979
|
-
|
980
|
-
.bg-red-100{
|
981
|
-
--tw-bg-opacity: 1;
|
982
|
-
background-color: rgb(254 226 226 / var(--tw-bg-opacity))
|
701
|
+
.text-sm {
|
702
|
+
font-size: 0.875rem;
|
703
|
+
line-height: 1.25rem;
|
983
704
|
}
|
984
|
-
|
985
|
-
|
986
|
-
--tw-bg-opacity: 1;
|
987
|
-
background-color: rgb(254 249 195 / var(--tw-bg-opacity))
|
705
|
+
.font-bold {
|
706
|
+
font-weight: 700;
|
988
707
|
}
|
989
|
-
|
990
|
-
|
991
|
-
--tw-text-opacity: 1;
|
992
|
-
color: rgb(96 165 250 / var(--tw-text-opacity))
|
708
|
+
.font-semibold {
|
709
|
+
font-weight: 600;
|
993
710
|
}
|
994
|
-
|
995
|
-
.text-blue-500{
|
711
|
+
.text-blue-500 {
|
996
712
|
--tw-text-opacity: 1;
|
997
|
-
color: rgb(59 130 246 / var(--tw-text-opacity))
|
713
|
+
color: rgb(59 130 246 / var(--tw-text-opacity));
|
998
714
|
}
|
999
|
-
|
1000
|
-
.text-gray-500{
|
715
|
+
.text-gray-900 {
|
1001
716
|
--tw-text-opacity: 1;
|
1002
|
-
color: rgb(
|
717
|
+
color: rgb(17 24 39 / var(--tw-text-opacity));
|
1003
718
|
}
|
1004
|
-
|
1005
|
-
.text-gray-600{
|
719
|
+
.text-green-800 {
|
1006
720
|
--tw-text-opacity: 1;
|
1007
|
-
color: rgb(
|
721
|
+
color: rgb(22 101 52 / var(--tw-text-opacity));
|
1008
722
|
}
|
1009
|
-
|
1010
|
-
.text-gray-900{
|
723
|
+
.text-red-800 {
|
1011
724
|
--tw-text-opacity: 1;
|
1012
|
-
color: rgb(
|
725
|
+
color: rgb(153 27 27 / var(--tw-text-opacity));
|
1013
726
|
}
|
1014
|
-
|
1015
|
-
.text-green-500{
|
727
|
+
.text-yellow-800 {
|
1016
728
|
--tw-text-opacity: 1;
|
1017
|
-
color: rgb(
|
729
|
+
color: rgb(133 77 14 / var(--tw-text-opacity));
|
1018
730
|
}
|
1019
|
-
|
1020
|
-
.text-red-500{
|
731
|
+
.text-white {
|
1021
732
|
--tw-text-opacity: 1;
|
1022
|
-
color: rgb(
|
733
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
1023
734
|
}
|
1024
|
-
|
1025
|
-
|
1026
|
-
--tw-text-opacity: 1;
|
1027
|
-
color: rgb(30 64 175 / var(--tw-text-opacity))
|
735
|
+
.underline {
|
736
|
+
text-decoration-line: underline;
|
1028
737
|
}
|
1029
|
-
|
1030
|
-
|
1031
|
-
--tw-text-opacity: 1;
|
1032
|
-
color: rgb(153 27 27 / var(--tw-text-opacity))
|
738
|
+
.decoration-blue-500 {
|
739
|
+
text-decoration-color: #3b82f6;
|
1033
740
|
}
|
1034
|
-
|
1035
|
-
|
1036
|
-
--tw-text-opacity: 1;
|
1037
|
-
color: rgb(133 77 14 / var(--tw-text-opacity))
|
741
|
+
.decoration-gray-500 {
|
742
|
+
text-decoration-color: #6b7280;
|
1038
743
|
}
|
1039
|
-
|
1040
|
-
|
1041
|
-
--tw-text-opacity: 1;
|
1042
|
-
color: rgb(255 255 255 / var(--tw-text-opacity))
|
744
|
+
.decoration-dashed {
|
745
|
+
text-decoration-style: dashed;
|
1043
746
|
}
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
747
|
+
.shadow-sm {
|
748
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
749
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
750
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1047
751
|
}
|
1048
|
-
|
1049
|
-
|
1050
|
-
transition-property: opacity;
|
1051
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1052
|
-
transition-duration: 150ms
|
752
|
+
html, body {
|
753
|
+
height: 100%;
|
1053
754
|
}
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
755
|
+
body {
|
756
|
+
display: flex;
|
757
|
+
height: 100%;
|
758
|
+
flex-direction: column;
|
1057
759
|
}
|
1058
|
-
|
1059
|
-
.even\:bg-gray-50:nth-child(even){
|
760
|
+
.even\:bg-gray-50:nth-child(even) {
|
1060
761
|
--tw-bg-opacity: 1;
|
1061
|
-
background-color: rgb(249 250 251 / var(--tw-bg-opacity))
|
762
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
1062
763
|
}
|
1063
|
-
|
1064
|
-
.hover\:bg-gray-50:hover{
|
1065
|
-
--tw-bg-opacity: 1;
|
1066
|
-
background-color: rgb(249 250 251 / var(--tw-bg-opacity))
|
1067
|
-
}
|
1068
|
-
|
1069
|
-
.hover\:ring-8:hover{
|
1070
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
1071
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
1072
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
|
1073
|
-
}
|
1074
|
-
|
1075
|
-
.hover\:ring-blue-200:hover{
|
1076
|
-
--tw-ring-opacity: 1;
|
1077
|
-
--tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity))
|
1078
|
-
}
|
1079
|
-
|
1080
|
-
.hover\:ring-gray-200:hover{
|
1081
|
-
--tw-ring-opacity: 1;
|
1082
|
-
--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity))
|
1083
|
-
}
|
1084
|
-
|
1085
|
-
.hover\:bg-black:hover{
|
764
|
+
.hover\:bg-gray-50:hover {
|
1086
765
|
--tw-bg-opacity: 1;
|
1087
|
-
background-color: rgb(
|
766
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
1088
767
|
}
|
1089
|
-
|
1090
|
-
|
1091
|
-
--tw-
|
1092
|
-
color: rgb(255 255 255 / var(--tw-text-opacity))
|
768
|
+
.hover\:bg-slate-700:hover {
|
769
|
+
--tw-bg-opacity: 1;
|
770
|
+
background-color: rgb(51 65 85 / var(--tw-bg-opacity));
|
1093
771
|
}
|
1094
|
-
|
1095
|
-
|
1096
|
-
.sm\:mx-0{
|
1097
|
-
margin-left: 0px;
|
1098
|
-
margin-right: 0px
|
1099
|
-
}
|
1100
|
-
|
1101
|
-
.sm\:rounded-md{
|
1102
|
-
border-radius: 0.375rem
|
1103
|
-
}
|
1104
|
-
|
1105
|
-
.sm\:rounded-t-lg{
|
1106
|
-
border-top-left-radius: 0.5rem;
|
1107
|
-
border-top-right-radius: 0.5rem
|
1108
|
-
}
|
1109
|
-
|
1110
|
-
.sm\:pl-3{
|
1111
|
-
padding-left: 0.75rem
|
1112
|
-
}
|
1113
|
-
|
1114
|
-
.sm\:pr-3{
|
1115
|
-
padding-right: 0.75rem
|
1116
|
-
}
|
772
|
+
.hover\:underline:hover {
|
773
|
+
text-decoration-line: underline;
|
1117
774
|
}
|
1118
775
|
</style>
|