litestream_rails 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +39 -0
- data/Rakefile +10 -0
- data/app/controllers/litestream_rails/application_controller.rb +7 -0
- data/app/controllers/litestream_rails/databases_controller.rb +32 -0
- data/app/views/layouts/litestream_rails/_style.html +1118 -0
- data/app/views/layouts/litestream_rails/application.html.erb +56 -0
- data/app/views/litestream_rails/databases/index.html.erb +85 -0
- data/config/routes.rb +5 -0
- data/lib/litestream_rails/engine.rb +15 -0
- data/lib/litestream_rails/version.rb +5 -0
- data/lib/litestream_rails.rb +48 -0
- metadata +127 -0
@@ -0,0 +1,1118 @@
|
|
1
|
+
<style>
|
2
|
+
/*
|
3
|
+
! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
|
4
|
+
*/
|
5
|
+
|
6
|
+
/*
|
7
|
+
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
8
|
+
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
9
|
+
*/
|
10
|
+
|
11
|
+
*,
|
12
|
+
::before,
|
13
|
+
::after {
|
14
|
+
box-sizing: border-box;
|
15
|
+
/* 1 */
|
16
|
+
border-width: 0;
|
17
|
+
/* 2 */
|
18
|
+
border-style: solid;
|
19
|
+
/* 2 */
|
20
|
+
border-color: #e5e7eb;
|
21
|
+
/* 2 */
|
22
|
+
}
|
23
|
+
|
24
|
+
::before,
|
25
|
+
::after {
|
26
|
+
--tw-content: '';
|
27
|
+
}
|
28
|
+
|
29
|
+
/*
|
30
|
+
1. Use a consistent sensible line-height in all browsers.
|
31
|
+
2. Prevent adjustments of font size after orientation changes in iOS.
|
32
|
+
3. Use a more readable tab size.
|
33
|
+
4. Use the user's configured `sans` font-family by default.
|
34
|
+
5. Use the user's configured `sans` font-feature-settings by default.
|
35
|
+
6. Use the user's configured `sans` font-variation-settings by default.
|
36
|
+
7. Disable tap highlights on iOS
|
37
|
+
*/
|
38
|
+
|
39
|
+
html,
|
40
|
+
:host {
|
41
|
+
line-height: 1.5;
|
42
|
+
/* 1 */
|
43
|
+
-webkit-text-size-adjust: 100%;
|
44
|
+
/* 2 */
|
45
|
+
-moz-tab-size: 4;
|
46
|
+
/* 3 */
|
47
|
+
tab-size: 4;
|
48
|
+
/* 3 */
|
49
|
+
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
50
|
+
/* 4 */
|
51
|
+
font-feature-settings: normal;
|
52
|
+
/* 5 */
|
53
|
+
font-variation-settings: normal;
|
54
|
+
/* 6 */
|
55
|
+
-webkit-tap-highlight-color: transparent;
|
56
|
+
/* 7 */
|
57
|
+
}
|
58
|
+
|
59
|
+
/*
|
60
|
+
1. Remove the margin in all browsers.
|
61
|
+
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
62
|
+
*/
|
63
|
+
|
64
|
+
body {
|
65
|
+
margin: 0;
|
66
|
+
/* 1 */
|
67
|
+
line-height: inherit;
|
68
|
+
/* 2 */
|
69
|
+
}
|
70
|
+
|
71
|
+
/*
|
72
|
+
1. Add the correct height in Firefox.
|
73
|
+
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
74
|
+
3. Ensure horizontal rules are visible by default.
|
75
|
+
*/
|
76
|
+
|
77
|
+
hr {
|
78
|
+
height: 0;
|
79
|
+
/* 1 */
|
80
|
+
color: inherit;
|
81
|
+
/* 2 */
|
82
|
+
border-top-width: 1px;
|
83
|
+
/* 3 */
|
84
|
+
}
|
85
|
+
|
86
|
+
/*
|
87
|
+
Add the correct text decoration in Chrome, Edge, and Safari.
|
88
|
+
*/
|
89
|
+
|
90
|
+
abbr:where([title]) {
|
91
|
+
text-decoration-line: underline;
|
92
|
+
text-decoration-style: dotted;
|
93
|
+
}
|
94
|
+
|
95
|
+
/*
|
96
|
+
Remove the default font size and weight for headings.
|
97
|
+
*/
|
98
|
+
|
99
|
+
h1,
|
100
|
+
h2,
|
101
|
+
h3,
|
102
|
+
h4,
|
103
|
+
h5,
|
104
|
+
h6 {
|
105
|
+
font-size: inherit;
|
106
|
+
font-weight: inherit;
|
107
|
+
}
|
108
|
+
|
109
|
+
/*
|
110
|
+
Reset links to optimize for opt-in styling instead of opt-out.
|
111
|
+
*/
|
112
|
+
|
113
|
+
a {
|
114
|
+
color: inherit;
|
115
|
+
text-decoration: inherit;
|
116
|
+
}
|
117
|
+
|
118
|
+
/*
|
119
|
+
Add the correct font weight in Edge and Safari.
|
120
|
+
*/
|
121
|
+
|
122
|
+
b,
|
123
|
+
strong {
|
124
|
+
font-weight: bolder;
|
125
|
+
}
|
126
|
+
|
127
|
+
/*
|
128
|
+
1. Use the user's configured `mono` font-family by default.
|
129
|
+
2. Use the user's configured `mono` font-feature-settings by default.
|
130
|
+
3. Use the user's configured `mono` font-variation-settings by default.
|
131
|
+
4. Correct the odd `em` font sizing in all browsers.
|
132
|
+
*/
|
133
|
+
|
134
|
+
code,
|
135
|
+
kbd,
|
136
|
+
samp,
|
137
|
+
pre {
|
138
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
139
|
+
/* 1 */
|
140
|
+
font-feature-settings: normal;
|
141
|
+
/* 2 */
|
142
|
+
font-variation-settings: normal;
|
143
|
+
/* 3 */
|
144
|
+
font-size: 1em;
|
145
|
+
/* 4 */
|
146
|
+
}
|
147
|
+
|
148
|
+
/*
|
149
|
+
Add the correct font size in all browsers.
|
150
|
+
*/
|
151
|
+
|
152
|
+
small {
|
153
|
+
font-size: 80%;
|
154
|
+
}
|
155
|
+
|
156
|
+
/*
|
157
|
+
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
158
|
+
*/
|
159
|
+
|
160
|
+
sub,
|
161
|
+
sup {
|
162
|
+
font-size: 75%;
|
163
|
+
line-height: 0;
|
164
|
+
position: relative;
|
165
|
+
vertical-align: baseline;
|
166
|
+
}
|
167
|
+
|
168
|
+
sub {
|
169
|
+
bottom: -0.25em;
|
170
|
+
}
|
171
|
+
|
172
|
+
sup {
|
173
|
+
top: -0.5em;
|
174
|
+
}
|
175
|
+
|
176
|
+
/*
|
177
|
+
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
|
+
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
|
+
3. Remove gaps between table borders by default.
|
180
|
+
*/
|
181
|
+
|
182
|
+
table {
|
183
|
+
text-indent: 0;
|
184
|
+
/* 1 */
|
185
|
+
border-color: inherit;
|
186
|
+
/* 2 */
|
187
|
+
border-collapse: collapse;
|
188
|
+
/* 3 */
|
189
|
+
}
|
190
|
+
|
191
|
+
/*
|
192
|
+
1. Change the font styles in all browsers.
|
193
|
+
2. Remove the margin in Firefox and Safari.
|
194
|
+
3. Remove default padding in all browsers.
|
195
|
+
*/
|
196
|
+
|
197
|
+
button,
|
198
|
+
input,
|
199
|
+
optgroup,
|
200
|
+
select,
|
201
|
+
textarea {
|
202
|
+
font-family: inherit;
|
203
|
+
/* 1 */
|
204
|
+
font-feature-settings: inherit;
|
205
|
+
/* 1 */
|
206
|
+
font-variation-settings: inherit;
|
207
|
+
/* 1 */
|
208
|
+
font-size: 100%;
|
209
|
+
/* 1 */
|
210
|
+
font-weight: inherit;
|
211
|
+
/* 1 */
|
212
|
+
line-height: inherit;
|
213
|
+
/* 1 */
|
214
|
+
color: inherit;
|
215
|
+
/* 1 */
|
216
|
+
margin: 0;
|
217
|
+
/* 2 */
|
218
|
+
padding: 0;
|
219
|
+
/* 3 */
|
220
|
+
}
|
221
|
+
|
222
|
+
/*
|
223
|
+
Remove the inheritance of text transform in Edge and Firefox.
|
224
|
+
*/
|
225
|
+
|
226
|
+
button,
|
227
|
+
select {
|
228
|
+
text-transform: none;
|
229
|
+
}
|
230
|
+
|
231
|
+
/*
|
232
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
233
|
+
2. Remove default button styles.
|
234
|
+
*/
|
235
|
+
|
236
|
+
button,
|
237
|
+
[type='button'],
|
238
|
+
[type='reset'],
|
239
|
+
[type='submit'] {
|
240
|
+
-webkit-appearance: button;
|
241
|
+
/* 1 */
|
242
|
+
background-color: transparent;
|
243
|
+
/* 2 */
|
244
|
+
background-image: none;
|
245
|
+
/* 2 */
|
246
|
+
}
|
247
|
+
|
248
|
+
/*
|
249
|
+
Use the modern Firefox focus style for all focusable elements.
|
250
|
+
*/
|
251
|
+
|
252
|
+
:-moz-focusring {
|
253
|
+
outline: auto;
|
254
|
+
}
|
255
|
+
|
256
|
+
/*
|
257
|
+
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
258
|
+
*/
|
259
|
+
|
260
|
+
:-moz-ui-invalid {
|
261
|
+
box-shadow: none;
|
262
|
+
}
|
263
|
+
|
264
|
+
/*
|
265
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
266
|
+
*/
|
267
|
+
|
268
|
+
progress {
|
269
|
+
vertical-align: baseline;
|
270
|
+
}
|
271
|
+
|
272
|
+
/*
|
273
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
274
|
+
*/
|
275
|
+
|
276
|
+
::-webkit-inner-spin-button,
|
277
|
+
::-webkit-outer-spin-button {
|
278
|
+
height: auto;
|
279
|
+
}
|
280
|
+
|
281
|
+
/*
|
282
|
+
1. Correct the odd appearance in Chrome and Safari.
|
283
|
+
2. Correct the outline style in Safari.
|
284
|
+
*/
|
285
|
+
|
286
|
+
[type='search'] {
|
287
|
+
-webkit-appearance: textfield;
|
288
|
+
/* 1 */
|
289
|
+
outline-offset: -2px;
|
290
|
+
/* 2 */
|
291
|
+
}
|
292
|
+
|
293
|
+
/*
|
294
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
295
|
+
*/
|
296
|
+
|
297
|
+
::-webkit-search-decoration {
|
298
|
+
-webkit-appearance: none;
|
299
|
+
}
|
300
|
+
|
301
|
+
/*
|
302
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
303
|
+
2. Change font properties to `inherit` in Safari.
|
304
|
+
*/
|
305
|
+
|
306
|
+
::-webkit-file-upload-button {
|
307
|
+
-webkit-appearance: button;
|
308
|
+
/* 1 */
|
309
|
+
font: inherit;
|
310
|
+
/* 2 */
|
311
|
+
}
|
312
|
+
|
313
|
+
/*
|
314
|
+
Add the correct display in Chrome and Safari.
|
315
|
+
*/
|
316
|
+
|
317
|
+
summary {
|
318
|
+
display: list-item;
|
319
|
+
}
|
320
|
+
|
321
|
+
/*
|
322
|
+
Removes the default spacing and border for appropriate elements.
|
323
|
+
*/
|
324
|
+
|
325
|
+
blockquote,
|
326
|
+
dl,
|
327
|
+
dd,
|
328
|
+
h1,
|
329
|
+
h2,
|
330
|
+
h3,
|
331
|
+
h4,
|
332
|
+
h5,
|
333
|
+
h6,
|
334
|
+
hr,
|
335
|
+
figure,
|
336
|
+
p,
|
337
|
+
pre {
|
338
|
+
margin: 0;
|
339
|
+
}
|
340
|
+
|
341
|
+
fieldset {
|
342
|
+
margin: 0;
|
343
|
+
padding: 0;
|
344
|
+
}
|
345
|
+
|
346
|
+
legend {
|
347
|
+
padding: 0;
|
348
|
+
}
|
349
|
+
|
350
|
+
ol,
|
351
|
+
ul,
|
352
|
+
menu {
|
353
|
+
list-style: none;
|
354
|
+
margin: 0;
|
355
|
+
padding: 0;
|
356
|
+
}
|
357
|
+
|
358
|
+
/*
|
359
|
+
Reset default styling for dialogs.
|
360
|
+
*/
|
361
|
+
|
362
|
+
dialog {
|
363
|
+
padding: 0;
|
364
|
+
}
|
365
|
+
|
366
|
+
/*
|
367
|
+
Prevent resizing textareas horizontally by default.
|
368
|
+
*/
|
369
|
+
|
370
|
+
textarea {
|
371
|
+
resize: vertical;
|
372
|
+
}
|
373
|
+
|
374
|
+
/*
|
375
|
+
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
376
|
+
2. Set the default placeholder color to the user's configured gray 400 color.
|
377
|
+
*/
|
378
|
+
|
379
|
+
input::placeholder,
|
380
|
+
textarea::placeholder {
|
381
|
+
opacity: 1;
|
382
|
+
/* 1 */
|
383
|
+
color: #9ca3af;
|
384
|
+
/* 2 */
|
385
|
+
}
|
386
|
+
|
387
|
+
/*
|
388
|
+
Set the default cursor for buttons.
|
389
|
+
*/
|
390
|
+
|
391
|
+
button,
|
392
|
+
[role="button"] {
|
393
|
+
cursor: pointer;
|
394
|
+
}
|
395
|
+
|
396
|
+
/*
|
397
|
+
Make sure disabled buttons don't get the pointer cursor.
|
398
|
+
*/
|
399
|
+
|
400
|
+
:disabled {
|
401
|
+
cursor: default;
|
402
|
+
}
|
403
|
+
|
404
|
+
/*
|
405
|
+
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
406
|
+
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
407
|
+
This can trigger a poorly considered lint error in some tools but is included by design.
|
408
|
+
*/
|
409
|
+
|
410
|
+
img,
|
411
|
+
svg,
|
412
|
+
video,
|
413
|
+
canvas,
|
414
|
+
audio,
|
415
|
+
iframe,
|
416
|
+
embed,
|
417
|
+
object {
|
418
|
+
display: block;
|
419
|
+
/* 1 */
|
420
|
+
vertical-align: middle;
|
421
|
+
/* 2 */
|
422
|
+
}
|
423
|
+
|
424
|
+
/*
|
425
|
+
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
426
|
+
*/
|
427
|
+
|
428
|
+
img,
|
429
|
+
video {
|
430
|
+
max-width: 100%;
|
431
|
+
height: auto;
|
432
|
+
}
|
433
|
+
|
434
|
+
/* Make elements with the HTML hidden attribute stay hidden by default */
|
435
|
+
|
436
|
+
[hidden] {
|
437
|
+
display: none;
|
438
|
+
}
|
439
|
+
|
440
|
+
*, ::before, ::after{
|
441
|
+
--tw-border-spacing-x: 0;
|
442
|
+
--tw-border-spacing-y: 0;
|
443
|
+
--tw-translate-x: 0;
|
444
|
+
--tw-translate-y: 0;
|
445
|
+
--tw-rotate: 0;
|
446
|
+
--tw-skew-x: 0;
|
447
|
+
--tw-skew-y: 0;
|
448
|
+
--tw-scale-x: 1;
|
449
|
+
--tw-scale-y: 1;
|
450
|
+
--tw-pan-x: ;
|
451
|
+
--tw-pan-y: ;
|
452
|
+
--tw-pinch-zoom: ;
|
453
|
+
--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: ;
|
463
|
+
--tw-ring-offset-width: 0px;
|
464
|
+
--tw-ring-offset-color: #fff;
|
465
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
466
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
467
|
+
--tw-ring-shadow: 0 0 #0000;
|
468
|
+
--tw-shadow: 0 0 #0000;
|
469
|
+
--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
|
+
::backdrop{
|
491
|
+
--tw-border-spacing-x: 0;
|
492
|
+
--tw-border-spacing-y: 0;
|
493
|
+
--tw-translate-x: 0;
|
494
|
+
--tw-translate-y: 0;
|
495
|
+
--tw-rotate: 0;
|
496
|
+
--tw-skew-x: 0;
|
497
|
+
--tw-skew-y: 0;
|
498
|
+
--tw-scale-x: 1;
|
499
|
+
--tw-scale-y: 1;
|
500
|
+
--tw-pan-x: ;
|
501
|
+
--tw-pan-y: ;
|
502
|
+
--tw-pinch-zoom: ;
|
503
|
+
--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: ;
|
513
|
+
--tw-ring-offset-width: 0px;
|
514
|
+
--tw-ring-offset-color: #fff;
|
515
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
516
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
517
|
+
--tw-ring-shadow: 0 0 #0000;
|
518
|
+
--tw-shadow: 0 0 #0000;
|
519
|
+
--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
|
+
.container{
|
541
|
+
width: 100%
|
542
|
+
}
|
543
|
+
|
544
|
+
@media (min-width: 640px){
|
545
|
+
.container{
|
546
|
+
max-width: 640px
|
547
|
+
}
|
548
|
+
}
|
549
|
+
|
550
|
+
@media (min-width: 768px){
|
551
|
+
.container{
|
552
|
+
max-width: 768px
|
553
|
+
}
|
554
|
+
}
|
555
|
+
|
556
|
+
@media (min-width: 1024px){
|
557
|
+
.container{
|
558
|
+
max-width: 1024px
|
559
|
+
}
|
560
|
+
}
|
561
|
+
|
562
|
+
@media (min-width: 1280px){
|
563
|
+
.container{
|
564
|
+
max-width: 1280px
|
565
|
+
}
|
566
|
+
}
|
567
|
+
|
568
|
+
@media (min-width: 1536px){
|
569
|
+
.container{
|
570
|
+
max-width: 1536px
|
571
|
+
}
|
572
|
+
}
|
573
|
+
|
574
|
+
.sr-only{
|
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
|
592
|
+
}
|
593
|
+
|
594
|
+
.left-0{
|
595
|
+
left: 0px
|
596
|
+
}
|
597
|
+
|
598
|
+
.right-0{
|
599
|
+
right: 0px
|
600
|
+
}
|
601
|
+
|
602
|
+
.top-0{
|
603
|
+
top: 0px
|
604
|
+
}
|
605
|
+
|
606
|
+
.col-span-2 {
|
607
|
+
grid-column: span 2 / span 2;
|
608
|
+
}
|
609
|
+
|
610
|
+
.-mx-2{
|
611
|
+
margin-left: -0.5rem;
|
612
|
+
margin-right: -0.5rem
|
613
|
+
}
|
614
|
+
|
615
|
+
.mx-auto{
|
616
|
+
margin-left: auto;
|
617
|
+
margin-right: auto
|
618
|
+
}
|
619
|
+
|
620
|
+
.mb-3{
|
621
|
+
margin-bottom: 0.75rem
|
622
|
+
}
|
623
|
+
|
624
|
+
.ml-6{
|
625
|
+
margin-left: 1.5rem
|
626
|
+
}
|
627
|
+
|
628
|
+
.mr-2{
|
629
|
+
margin-right: 0.5rem
|
630
|
+
}
|
631
|
+
|
632
|
+
.mt-4{
|
633
|
+
margin-top: 1rem
|
634
|
+
}
|
635
|
+
|
636
|
+
.inline-block{
|
637
|
+
display: inline-block
|
638
|
+
}
|
639
|
+
|
640
|
+
.flex{
|
641
|
+
display: flex
|
642
|
+
}
|
643
|
+
|
644
|
+
.inline-flex{
|
645
|
+
display: inline-flex
|
646
|
+
}
|
647
|
+
|
648
|
+
.table{
|
649
|
+
display: table
|
650
|
+
}
|
651
|
+
|
652
|
+
.grid{
|
653
|
+
display: grid
|
654
|
+
}
|
655
|
+
|
656
|
+
.min-h-full{
|
657
|
+
min-height: 100%
|
658
|
+
}
|
659
|
+
|
660
|
+
.h-full{
|
661
|
+
height: 100%
|
662
|
+
}
|
663
|
+
|
664
|
+
.min-w-full{
|
665
|
+
min-width: 100%
|
666
|
+
}
|
667
|
+
|
668
|
+
.flex-1{
|
669
|
+
flex: 1 1 0%
|
670
|
+
}
|
671
|
+
|
672
|
+
.cursor-help{
|
673
|
+
cursor: help
|
674
|
+
}
|
675
|
+
|
676
|
+
.cursor-pointer{
|
677
|
+
cursor: pointer
|
678
|
+
}
|
679
|
+
|
680
|
+
.select-none{
|
681
|
+
user-select: none
|
682
|
+
}
|
683
|
+
|
684
|
+
.grid-cols-2{
|
685
|
+
grid-template-columns: repeat(2, minmax(0, 1fr))
|
686
|
+
}
|
687
|
+
|
688
|
+
.flex-col{
|
689
|
+
flex-direction: column
|
690
|
+
}
|
691
|
+
|
692
|
+
.flex-wrap{
|
693
|
+
flex-wrap: wrap
|
694
|
+
}
|
695
|
+
|
696
|
+
.grow{
|
697
|
+
flex-grow: 1
|
698
|
+
}
|
699
|
+
|
700
|
+
.items-start{
|
701
|
+
align-items: flex-start
|
702
|
+
}
|
703
|
+
|
704
|
+
.items-center{
|
705
|
+
align-items: center
|
706
|
+
}
|
707
|
+
|
708
|
+
.items-baseline{
|
709
|
+
align-items: baseline
|
710
|
+
}
|
711
|
+
|
712
|
+
.justify-start{
|
713
|
+
justify-content: flex-start
|
714
|
+
}
|
715
|
+
|
716
|
+
.justify-center{
|
717
|
+
justify-content: center
|
718
|
+
}
|
719
|
+
|
720
|
+
.justify-between{
|
721
|
+
justify-content: space-between
|
722
|
+
}
|
723
|
+
|
724
|
+
.gap-1{
|
725
|
+
gap: 0.25rem
|
726
|
+
}
|
727
|
+
|
728
|
+
.gap-2{
|
729
|
+
gap: 0.5rem
|
730
|
+
}
|
731
|
+
|
732
|
+
.gap-3{
|
733
|
+
gap: 0.75rem
|
734
|
+
}
|
735
|
+
|
736
|
+
.gap-x-2{
|
737
|
+
column-gap: 0.5rem
|
738
|
+
}
|
739
|
+
|
740
|
+
.gap-x-4{
|
741
|
+
column-gap: 1rem
|
742
|
+
}
|
743
|
+
|
744
|
+
.space-y-6 > :not([hidden]) ~ :not([hidden]){
|
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))
|
748
|
+
}
|
749
|
+
|
750
|
+
.divide-y > :not([hidden]) ~ :not([hidden]){
|
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))
|
754
|
+
}
|
755
|
+
|
756
|
+
.divide-gray-300 > :not([hidden]) ~ :not([hidden]){
|
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))
|
812
|
+
}
|
813
|
+
|
814
|
+
.bg-green-50{
|
815
|
+
--tw-bg-opacity: 1;
|
816
|
+
background-color: rgb(240 253 244 / var(--tw-bg-opacity))
|
817
|
+
}
|
818
|
+
|
819
|
+
.bg-red-50{
|
820
|
+
--tw-bg-opacity: 1;
|
821
|
+
background-color: rgb(254 242 242 / var(--tw-bg-opacity))
|
822
|
+
}
|
823
|
+
|
824
|
+
.bg-slate-800{
|
825
|
+
--tw-bg-opacity: 1;
|
826
|
+
background-color: rgb(30 41 59 / var(--tw-bg-opacity))
|
827
|
+
}
|
828
|
+
|
829
|
+
.bg-transparent{
|
830
|
+
background-color: transparent
|
831
|
+
}
|
832
|
+
|
833
|
+
.bg-white{
|
834
|
+
--tw-bg-opacity: 1;
|
835
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity))
|
836
|
+
}
|
837
|
+
|
838
|
+
.p-2{
|
839
|
+
padding: 0.5rem
|
840
|
+
}
|
841
|
+
|
842
|
+
.p-4{
|
843
|
+
padding: 1rem
|
844
|
+
}
|
845
|
+
|
846
|
+
.px-0{
|
847
|
+
padding-left: 0px;
|
848
|
+
padding-right: 0px
|
849
|
+
}
|
850
|
+
|
851
|
+
.px-2{
|
852
|
+
padding-left: 0.5rem;
|
853
|
+
padding-right: 0.5rem
|
854
|
+
}
|
855
|
+
|
856
|
+
.px-3{
|
857
|
+
padding-left: 0.75rem;
|
858
|
+
padding-right: 0.75rem
|
859
|
+
}
|
860
|
+
|
861
|
+
.px-5{
|
862
|
+
padding-left: 1.25rem;
|
863
|
+
padding-right: 1.25rem
|
864
|
+
}
|
865
|
+
|
866
|
+
.py-1{
|
867
|
+
padding-top: 0.25rem;
|
868
|
+
padding-bottom: 0.25rem
|
869
|
+
}
|
870
|
+
|
871
|
+
.py-2{
|
872
|
+
padding-top: 0.5rem;
|
873
|
+
padding-bottom: 0.5rem
|
874
|
+
}
|
875
|
+
|
876
|
+
.py-3{
|
877
|
+
padding-top: 0.75rem;
|
878
|
+
padding-bottom: 0.75rem
|
879
|
+
}
|
880
|
+
|
881
|
+
.py-3\.5{
|
882
|
+
padding-top: 0.875rem;
|
883
|
+
padding-bottom: 0.875rem
|
884
|
+
}
|
885
|
+
|
886
|
+
.py-4{
|
887
|
+
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
|
905
|
+
}
|
906
|
+
|
907
|
+
.pr-3{
|
908
|
+
padding-right: 0.75rem
|
909
|
+
}
|
910
|
+
|
911
|
+
.pr-4{
|
912
|
+
padding-right: 1rem
|
913
|
+
}
|
914
|
+
|
915
|
+
.pt-7{
|
916
|
+
padding-top: 1.75rem
|
917
|
+
}
|
918
|
+
|
919
|
+
.rounded-md{
|
920
|
+
border-radius: 0.375rem
|
921
|
+
}
|
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{
|
945
|
+
font-size: 1.5rem;
|
946
|
+
line-height: 2rem
|
947
|
+
}
|
948
|
+
|
949
|
+
.text-base{
|
950
|
+
font-size: 1rem;
|
951
|
+
line-height: 1.5rem
|
952
|
+
}
|
953
|
+
|
954
|
+
.text-sm{
|
955
|
+
font-size: 0.875rem;
|
956
|
+
line-height: 1.25rem
|
957
|
+
}
|
958
|
+
|
959
|
+
.font-bold{
|
960
|
+
font-weight: 700
|
961
|
+
}
|
962
|
+
|
963
|
+
.font-medium{
|
964
|
+
font-weight: 500
|
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))
|
983
|
+
}
|
984
|
+
|
985
|
+
.bg-yellow-100{
|
986
|
+
--tw-bg-opacity: 1;
|
987
|
+
background-color: rgb(254 249 195 / var(--tw-bg-opacity))
|
988
|
+
}
|
989
|
+
|
990
|
+
.text-blue-400{
|
991
|
+
--tw-text-opacity: 1;
|
992
|
+
color: rgb(96 165 250 / var(--tw-text-opacity))
|
993
|
+
}
|
994
|
+
|
995
|
+
.text-blue-500{
|
996
|
+
--tw-text-opacity: 1;
|
997
|
+
color: rgb(59 130 246 / var(--tw-text-opacity))
|
998
|
+
}
|
999
|
+
|
1000
|
+
.text-gray-500{
|
1001
|
+
--tw-text-opacity: 1;
|
1002
|
+
color: rgb(107 114 128 / var(--tw-text-opacity))
|
1003
|
+
}
|
1004
|
+
|
1005
|
+
.text-gray-600{
|
1006
|
+
--tw-text-opacity: 1;
|
1007
|
+
color: rgb(75 85 99 / var(--tw-text-opacity))
|
1008
|
+
}
|
1009
|
+
|
1010
|
+
.text-gray-900{
|
1011
|
+
--tw-text-opacity: 1;
|
1012
|
+
color: rgb(17 24 39 / var(--tw-text-opacity))
|
1013
|
+
}
|
1014
|
+
|
1015
|
+
.text-green-500{
|
1016
|
+
--tw-text-opacity: 1;
|
1017
|
+
color: rgb(34 197 94 / var(--tw-text-opacity))
|
1018
|
+
}
|
1019
|
+
|
1020
|
+
.text-red-500{
|
1021
|
+
--tw-text-opacity: 1;
|
1022
|
+
color: rgb(239 68 68 / var(--tw-text-opacity))
|
1023
|
+
}
|
1024
|
+
|
1025
|
+
.text-blue-800{
|
1026
|
+
--tw-text-opacity: 1;
|
1027
|
+
color: rgb(30 64 175 / var(--tw-text-opacity))
|
1028
|
+
}
|
1029
|
+
|
1030
|
+
.text-red-800{
|
1031
|
+
--tw-text-opacity: 1;
|
1032
|
+
color: rgb(153 27 27 / var(--tw-text-opacity))
|
1033
|
+
}
|
1034
|
+
|
1035
|
+
.text-yellow-800{
|
1036
|
+
--tw-text-opacity: 1;
|
1037
|
+
color: rgb(133 77 14 / var(--tw-text-opacity))
|
1038
|
+
}
|
1039
|
+
|
1040
|
+
.text-white{
|
1041
|
+
--tw-text-opacity: 1;
|
1042
|
+
color: rgb(255 255 255 / var(--tw-text-opacity))
|
1043
|
+
}
|
1044
|
+
|
1045
|
+
.underline{
|
1046
|
+
text-decoration-line: underline
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
.transition-opacity{
|
1050
|
+
transition-property: opacity;
|
1051
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1052
|
+
transition-duration: 150ms
|
1053
|
+
}
|
1054
|
+
|
1055
|
+
.opacity-0{
|
1056
|
+
opacity: 0
|
1057
|
+
}
|
1058
|
+
|
1059
|
+
.even\:bg-gray-50:nth-child(even){
|
1060
|
+
--tw-bg-opacity: 1;
|
1061
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity))
|
1062
|
+
}
|
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{
|
1086
|
+
--tw-bg-opacity: 1;
|
1087
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity))
|
1088
|
+
}
|
1089
|
+
|
1090
|
+
.hover\:text-white:hover{
|
1091
|
+
--tw-text-opacity: 1;
|
1092
|
+
color: rgb(255 255 255 / var(--tw-text-opacity))
|
1093
|
+
}
|
1094
|
+
|
1095
|
+
@media (min-width: 640px){
|
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
|
+
}
|
1117
|
+
}
|
1118
|
+
</style>
|