administrate-notus_theme 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/MIT-LICENSE +20 -0
- data/README.md +23 -0
- data/Rakefile +3 -0
- data/app/assets/stylesheets/administrate-notus_theme/theme.css +2054 -0
- data/app/assets/stylesheets/administrate-notus_theme/theme.tailwind.css +205 -0
- data/lib/administrate/notus_theme/railtie.rb +7 -0
- data/lib/administrate/notus_theme/version.rb +5 -0
- data/lib/administrate/notus_theme.rb +8 -0
- data/lib/generators/administrate/notus_theme/install_generator.rb +25 -0
- data/lib/tasks/administrate/notus_theme_tasks.rake +4 -0
- metadata +69 -0
@@ -0,0 +1,2054 @@
|
|
1
|
+
/*! tailwindcss v2.2.16 | MIT License | https://tailwindcss.com */
|
2
|
+
|
3
|
+
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
|
4
|
+
|
5
|
+
/*
|
6
|
+
Document
|
7
|
+
========
|
8
|
+
*/
|
9
|
+
|
10
|
+
/**
|
11
|
+
Use a better box model (opinionated).
|
12
|
+
*/
|
13
|
+
|
14
|
+
*,
|
15
|
+
::before,
|
16
|
+
::after {
|
17
|
+
box-sizing: border-box;
|
18
|
+
}
|
19
|
+
|
20
|
+
/**
|
21
|
+
Use a more readable tab size (opinionated).
|
22
|
+
*/
|
23
|
+
|
24
|
+
html {
|
25
|
+
-moz-tab-size: 4;
|
26
|
+
-o-tab-size: 4;
|
27
|
+
tab-size: 4;
|
28
|
+
}
|
29
|
+
|
30
|
+
/**
|
31
|
+
1. Correct the line height in all browsers.
|
32
|
+
2. Prevent adjustments of font size after orientation changes in iOS.
|
33
|
+
*/
|
34
|
+
|
35
|
+
html {
|
36
|
+
line-height: 1.15;
|
37
|
+
/* 1 */
|
38
|
+
-webkit-text-size-adjust: 100%;
|
39
|
+
/* 2 */
|
40
|
+
}
|
41
|
+
|
42
|
+
/*
|
43
|
+
Sections
|
44
|
+
========
|
45
|
+
*/
|
46
|
+
|
47
|
+
/**
|
48
|
+
Remove the margin in all browsers.
|
49
|
+
*/
|
50
|
+
|
51
|
+
body {
|
52
|
+
margin: 0;
|
53
|
+
}
|
54
|
+
|
55
|
+
/**
|
56
|
+
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
57
|
+
*/
|
58
|
+
|
59
|
+
body {
|
60
|
+
font-family:
|
61
|
+
system-ui,
|
62
|
+
-apple-system, /* Firefox supports this but not yet `system-ui` */
|
63
|
+
'Segoe UI',
|
64
|
+
Roboto,
|
65
|
+
Helvetica,
|
66
|
+
Arial,
|
67
|
+
sans-serif,
|
68
|
+
'Apple Color Emoji',
|
69
|
+
'Segoe UI Emoji';
|
70
|
+
}
|
71
|
+
|
72
|
+
/*
|
73
|
+
Grouping content
|
74
|
+
================
|
75
|
+
*/
|
76
|
+
|
77
|
+
/**
|
78
|
+
1. Add the correct height in Firefox.
|
79
|
+
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
80
|
+
*/
|
81
|
+
|
82
|
+
hr {
|
83
|
+
height: 0;
|
84
|
+
/* 1 */
|
85
|
+
color: inherit;
|
86
|
+
/* 2 */
|
87
|
+
}
|
88
|
+
|
89
|
+
/*
|
90
|
+
Text-level semantics
|
91
|
+
====================
|
92
|
+
*/
|
93
|
+
|
94
|
+
/**
|
95
|
+
Add the correct text decoration in Chrome, Edge, and Safari.
|
96
|
+
*/
|
97
|
+
|
98
|
+
abbr[title] {
|
99
|
+
-webkit-text-decoration: underline dotted;
|
100
|
+
text-decoration: underline dotted;
|
101
|
+
}
|
102
|
+
|
103
|
+
/**
|
104
|
+
Add the correct font weight in Edge and Safari.
|
105
|
+
*/
|
106
|
+
|
107
|
+
b,
|
108
|
+
strong {
|
109
|
+
font-weight: bolder;
|
110
|
+
}
|
111
|
+
|
112
|
+
/**
|
113
|
+
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
114
|
+
2. Correct the odd 'em' font sizing in all browsers.
|
115
|
+
*/
|
116
|
+
|
117
|
+
code,
|
118
|
+
kbd,
|
119
|
+
samp,
|
120
|
+
pre {
|
121
|
+
font-family:
|
122
|
+
ui-monospace,
|
123
|
+
SFMono-Regular,
|
124
|
+
Consolas,
|
125
|
+
'Liberation Mono',
|
126
|
+
Menlo,
|
127
|
+
monospace;
|
128
|
+
/* 1 */
|
129
|
+
font-size: 1em;
|
130
|
+
/* 2 */
|
131
|
+
}
|
132
|
+
|
133
|
+
/**
|
134
|
+
Add the correct font size in all browsers.
|
135
|
+
*/
|
136
|
+
|
137
|
+
small {
|
138
|
+
font-size: 80%;
|
139
|
+
}
|
140
|
+
|
141
|
+
/**
|
142
|
+
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
|
143
|
+
*/
|
144
|
+
|
145
|
+
sub,
|
146
|
+
sup {
|
147
|
+
font-size: 75%;
|
148
|
+
line-height: 0;
|
149
|
+
position: relative;
|
150
|
+
vertical-align: baseline;
|
151
|
+
}
|
152
|
+
|
153
|
+
sub {
|
154
|
+
bottom: -0.25em;
|
155
|
+
}
|
156
|
+
|
157
|
+
sup {
|
158
|
+
top: -0.5em;
|
159
|
+
}
|
160
|
+
|
161
|
+
/*
|
162
|
+
Tabular data
|
163
|
+
============
|
164
|
+
*/
|
165
|
+
|
166
|
+
/**
|
167
|
+
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)
|
168
|
+
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)
|
169
|
+
*/
|
170
|
+
|
171
|
+
table {
|
172
|
+
text-indent: 0;
|
173
|
+
/* 1 */
|
174
|
+
border-color: inherit;
|
175
|
+
/* 2 */
|
176
|
+
}
|
177
|
+
|
178
|
+
/*
|
179
|
+
Forms
|
180
|
+
=====
|
181
|
+
*/
|
182
|
+
|
183
|
+
/**
|
184
|
+
1. Change the font styles in all browsers.
|
185
|
+
2. Remove the margin in Firefox and Safari.
|
186
|
+
*/
|
187
|
+
|
188
|
+
button,
|
189
|
+
input,
|
190
|
+
optgroup,
|
191
|
+
select,
|
192
|
+
textarea {
|
193
|
+
font-family: inherit;
|
194
|
+
/* 1 */
|
195
|
+
font-size: 100%;
|
196
|
+
/* 1 */
|
197
|
+
line-height: 1.15;
|
198
|
+
/* 1 */
|
199
|
+
margin: 0;
|
200
|
+
/* 2 */
|
201
|
+
}
|
202
|
+
|
203
|
+
/**
|
204
|
+
Remove the inheritance of text transform in Edge and Firefox.
|
205
|
+
1. Remove the inheritance of text transform in Firefox.
|
206
|
+
*/
|
207
|
+
|
208
|
+
button,
|
209
|
+
select {
|
210
|
+
/* 1 */
|
211
|
+
text-transform: none;
|
212
|
+
}
|
213
|
+
|
214
|
+
/**
|
215
|
+
Correct the inability to style clickable types in iOS and Safari.
|
216
|
+
*/
|
217
|
+
|
218
|
+
button,
|
219
|
+
[type='button'],
|
220
|
+
[type='reset'],
|
221
|
+
[type='submit'] {
|
222
|
+
-webkit-appearance: button;
|
223
|
+
}
|
224
|
+
|
225
|
+
/**
|
226
|
+
Remove the inner border and padding in Firefox.
|
227
|
+
*/
|
228
|
+
|
229
|
+
::-moz-focus-inner {
|
230
|
+
border-style: none;
|
231
|
+
padding: 0;
|
232
|
+
}
|
233
|
+
|
234
|
+
/**
|
235
|
+
Restore the focus styles unset by the previous rule.
|
236
|
+
*/
|
237
|
+
|
238
|
+
/**
|
239
|
+
Remove the additional ':invalid' styles in Firefox.
|
240
|
+
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
|
241
|
+
*/
|
242
|
+
|
243
|
+
/**
|
244
|
+
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
|
245
|
+
*/
|
246
|
+
|
247
|
+
legend {
|
248
|
+
padding: 0;
|
249
|
+
}
|
250
|
+
|
251
|
+
/**
|
252
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
253
|
+
*/
|
254
|
+
|
255
|
+
progress {
|
256
|
+
vertical-align: baseline;
|
257
|
+
}
|
258
|
+
|
259
|
+
/**
|
260
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
261
|
+
*/
|
262
|
+
|
263
|
+
::-webkit-inner-spin-button,
|
264
|
+
::-webkit-outer-spin-button {
|
265
|
+
height: auto;
|
266
|
+
}
|
267
|
+
|
268
|
+
/**
|
269
|
+
1. Correct the odd appearance in Chrome and Safari.
|
270
|
+
2. Correct the outline style in Safari.
|
271
|
+
*/
|
272
|
+
|
273
|
+
[type='search'] {
|
274
|
+
-webkit-appearance: textfield;
|
275
|
+
/* 1 */
|
276
|
+
outline-offset: -2px;
|
277
|
+
/* 2 */
|
278
|
+
}
|
279
|
+
|
280
|
+
/**
|
281
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
282
|
+
*/
|
283
|
+
|
284
|
+
::-webkit-search-decoration {
|
285
|
+
-webkit-appearance: none;
|
286
|
+
}
|
287
|
+
|
288
|
+
/**
|
289
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
290
|
+
2. Change font properties to 'inherit' in Safari.
|
291
|
+
*/
|
292
|
+
|
293
|
+
::-webkit-file-upload-button {
|
294
|
+
-webkit-appearance: button;
|
295
|
+
/* 1 */
|
296
|
+
font: inherit;
|
297
|
+
/* 2 */
|
298
|
+
}
|
299
|
+
|
300
|
+
/*
|
301
|
+
Interactive
|
302
|
+
===========
|
303
|
+
*/
|
304
|
+
|
305
|
+
/*
|
306
|
+
Add the correct display in Chrome and Safari.
|
307
|
+
*/
|
308
|
+
|
309
|
+
summary {
|
310
|
+
display: list-item;
|
311
|
+
}
|
312
|
+
|
313
|
+
/**
|
314
|
+
* Manually forked from SUIT CSS Base: https://github.com/suitcss/base
|
315
|
+
* A thin layer on top of normalize.css that provides a starting point more
|
316
|
+
* suitable for web applications.
|
317
|
+
*/
|
318
|
+
|
319
|
+
/**
|
320
|
+
* Removes the default spacing and border for appropriate elements.
|
321
|
+
*/
|
322
|
+
|
323
|
+
blockquote,
|
324
|
+
dl,
|
325
|
+
dd,
|
326
|
+
h1,
|
327
|
+
h2,
|
328
|
+
h3,
|
329
|
+
h4,
|
330
|
+
h5,
|
331
|
+
h6,
|
332
|
+
hr,
|
333
|
+
figure,
|
334
|
+
p,
|
335
|
+
pre {
|
336
|
+
margin: 0;
|
337
|
+
}
|
338
|
+
|
339
|
+
button {
|
340
|
+
background-color: transparent;
|
341
|
+
background-image: none;
|
342
|
+
}
|
343
|
+
|
344
|
+
fieldset {
|
345
|
+
margin: 0;
|
346
|
+
padding: 0;
|
347
|
+
}
|
348
|
+
|
349
|
+
ol,
|
350
|
+
ul {
|
351
|
+
list-style: none;
|
352
|
+
margin: 0;
|
353
|
+
padding: 0;
|
354
|
+
}
|
355
|
+
|
356
|
+
/**
|
357
|
+
* Tailwind custom reset styles
|
358
|
+
*/
|
359
|
+
|
360
|
+
/**
|
361
|
+
* 1. Use the user's configured `sans` font-family (with Tailwind's default
|
362
|
+
* sans-serif font stack as a fallback) as a sane default.
|
363
|
+
* 2. Use Tailwind's default "normal" line-height so the user isn't forced
|
364
|
+
* to override it to ensure consistency even when using the default theme.
|
365
|
+
*/
|
366
|
+
|
367
|
+
html {
|
368
|
+
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
369
|
+
/* 1 */
|
370
|
+
line-height: 1.5;
|
371
|
+
/* 2 */
|
372
|
+
}
|
373
|
+
|
374
|
+
/**
|
375
|
+
* Inherit font-family and line-height from `html` so users can set them as
|
376
|
+
* a class directly on the `html` element.
|
377
|
+
*/
|
378
|
+
|
379
|
+
body {
|
380
|
+
font-family: inherit;
|
381
|
+
line-height: inherit;
|
382
|
+
}
|
383
|
+
|
384
|
+
/**
|
385
|
+
* 1. Prevent padding and border from affecting element width.
|
386
|
+
*
|
387
|
+
* We used to set this in the html element and inherit from
|
388
|
+
* the parent element for everything else. This caused issues
|
389
|
+
* in shadow-dom-enhanced elements like <details> where the content
|
390
|
+
* is wrapped by a div with box-sizing set to `content-box`.
|
391
|
+
*
|
392
|
+
* https://github.com/mozdevs/cssremedy/issues/4
|
393
|
+
*
|
394
|
+
*
|
395
|
+
* 2. Allow adding a border to an element by just adding a border-width.
|
396
|
+
*
|
397
|
+
* By default, the way the browser specifies that an element should have no
|
398
|
+
* border is by setting it's border-style to `none` in the user-agent
|
399
|
+
* stylesheet.
|
400
|
+
*
|
401
|
+
* In order to easily add borders to elements by just setting the `border-width`
|
402
|
+
* property, we change the default border-style for all elements to `solid`, and
|
403
|
+
* use border-width to hide them instead. This way our `border` utilities only
|
404
|
+
* need to set the `border-width` property instead of the entire `border`
|
405
|
+
* shorthand, making our border utilities much more straightforward to compose.
|
406
|
+
*
|
407
|
+
* https://github.com/tailwindcss/tailwindcss/pull/116
|
408
|
+
*/
|
409
|
+
|
410
|
+
*,
|
411
|
+
::before,
|
412
|
+
::after {
|
413
|
+
box-sizing: border-box;
|
414
|
+
/* 1 */
|
415
|
+
border-width: 0;
|
416
|
+
/* 2 */
|
417
|
+
border-style: solid;
|
418
|
+
/* 2 */
|
419
|
+
border-color: currentColor;
|
420
|
+
/* 2 */
|
421
|
+
}
|
422
|
+
|
423
|
+
/*
|
424
|
+
* Ensure horizontal rules are visible by default
|
425
|
+
*/
|
426
|
+
|
427
|
+
hr {
|
428
|
+
border-top-width: 1px;
|
429
|
+
}
|
430
|
+
|
431
|
+
/**
|
432
|
+
* Undo the `border-style: none` reset that Normalize applies to images so that
|
433
|
+
* our `border-{width}` utilities have the expected effect.
|
434
|
+
*
|
435
|
+
* The Normalize reset is unnecessary for us since we default the border-width
|
436
|
+
* to 0 on all elements.
|
437
|
+
*
|
438
|
+
* https://github.com/tailwindcss/tailwindcss/issues/362
|
439
|
+
*/
|
440
|
+
|
441
|
+
img {
|
442
|
+
border-style: solid;
|
443
|
+
}
|
444
|
+
|
445
|
+
textarea {
|
446
|
+
resize: vertical;
|
447
|
+
}
|
448
|
+
|
449
|
+
input::-moz-placeholder, textarea::-moz-placeholder {
|
450
|
+
opacity: 1;
|
451
|
+
color: #a1a1aa;
|
452
|
+
}
|
453
|
+
|
454
|
+
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
|
455
|
+
opacity: 1;
|
456
|
+
color: #a1a1aa;
|
457
|
+
}
|
458
|
+
|
459
|
+
input::placeholder,
|
460
|
+
textarea::placeholder {
|
461
|
+
opacity: 1;
|
462
|
+
color: #a1a1aa;
|
463
|
+
}
|
464
|
+
|
465
|
+
button,
|
466
|
+
[role="button"] {
|
467
|
+
cursor: pointer;
|
468
|
+
}
|
469
|
+
|
470
|
+
/**
|
471
|
+
* Override legacy focus reset from Normalize with modern Firefox focus styles.
|
472
|
+
*
|
473
|
+
* This is actually an improvement over the new defaults in Firefox in our testing,
|
474
|
+
* as it triggers the better focus styles even for links, which still use a dotted
|
475
|
+
* outline in Firefox by default.
|
476
|
+
*/
|
477
|
+
|
478
|
+
table {
|
479
|
+
border-collapse: collapse;
|
480
|
+
}
|
481
|
+
|
482
|
+
h1,
|
483
|
+
h2,
|
484
|
+
h3,
|
485
|
+
h4,
|
486
|
+
h5,
|
487
|
+
h6 {
|
488
|
+
font-size: inherit;
|
489
|
+
font-weight: inherit;
|
490
|
+
}
|
491
|
+
|
492
|
+
/**
|
493
|
+
* Reset links to optimize for opt-in styling instead of
|
494
|
+
* opt-out.
|
495
|
+
*/
|
496
|
+
|
497
|
+
a {
|
498
|
+
color: inherit;
|
499
|
+
text-decoration: inherit;
|
500
|
+
}
|
501
|
+
|
502
|
+
/**
|
503
|
+
* Reset form element properties that are easy to forget to
|
504
|
+
* style explicitly so you don't inadvertently introduce
|
505
|
+
* styles that deviate from your design system. These styles
|
506
|
+
* supplement a partial reset that is already applied by
|
507
|
+
* normalize.css.
|
508
|
+
*/
|
509
|
+
|
510
|
+
button,
|
511
|
+
input,
|
512
|
+
optgroup,
|
513
|
+
select,
|
514
|
+
textarea {
|
515
|
+
padding: 0;
|
516
|
+
line-height: inherit;
|
517
|
+
color: inherit;
|
518
|
+
}
|
519
|
+
|
520
|
+
/**
|
521
|
+
* Use the configured 'mono' font family for elements that
|
522
|
+
* are expected to be rendered with a monospace font, falling
|
523
|
+
* back to the system monospace stack if there is no configured
|
524
|
+
* 'mono' font family.
|
525
|
+
*/
|
526
|
+
|
527
|
+
pre,
|
528
|
+
code,
|
529
|
+
kbd,
|
530
|
+
samp {
|
531
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
532
|
+
}
|
533
|
+
|
534
|
+
/**
|
535
|
+
* 1. Make replaced elements `display: block` by default as that's
|
536
|
+
* the behavior you want almost all of the time. Inspired by
|
537
|
+
* CSS Remedy, with `svg` added as well.
|
538
|
+
*
|
539
|
+
* https://github.com/mozdevs/cssremedy/issues/14
|
540
|
+
*
|
541
|
+
* 2. Add `vertical-align: middle` to align replaced elements more
|
542
|
+
* sensibly by default when overriding `display` by adding a
|
543
|
+
* utility like `inline`.
|
544
|
+
*
|
545
|
+
* This can trigger a poorly considered linting error in some
|
546
|
+
* tools but is included by design.
|
547
|
+
*
|
548
|
+
* https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
|
549
|
+
*/
|
550
|
+
|
551
|
+
img,
|
552
|
+
svg,
|
553
|
+
video,
|
554
|
+
canvas,
|
555
|
+
audio,
|
556
|
+
iframe,
|
557
|
+
embed,
|
558
|
+
object {
|
559
|
+
display: block;
|
560
|
+
/* 1 */
|
561
|
+
vertical-align: middle;
|
562
|
+
/* 2 */
|
563
|
+
}
|
564
|
+
|
565
|
+
/**
|
566
|
+
* Constrain images and videos to the parent width and preserve
|
567
|
+
* their intrinsic aspect ratio.
|
568
|
+
*
|
569
|
+
* https://github.com/mozdevs/cssremedy/issues/14
|
570
|
+
*/
|
571
|
+
|
572
|
+
img,
|
573
|
+
video {
|
574
|
+
max-width: 100%;
|
575
|
+
height: auto;
|
576
|
+
}
|
577
|
+
|
578
|
+
/**
|
579
|
+
* Ensure the default browser behavior of the `hidden` attribute.
|
580
|
+
*/
|
581
|
+
|
582
|
+
[hidden] {
|
583
|
+
display: none;
|
584
|
+
}
|
585
|
+
|
586
|
+
*, ::before, ::after {
|
587
|
+
--tw-border-opacity: 1;
|
588
|
+
border-color: rgba(228, 228, 231, var(--tw-border-opacity));
|
589
|
+
}
|
590
|
+
|
591
|
+
[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
|
592
|
+
-webkit-appearance: none;
|
593
|
+
-moz-appearance: none;
|
594
|
+
appearance: none;
|
595
|
+
background-color: #fff;
|
596
|
+
border-color: #71717a;
|
597
|
+
border-width: 1px;
|
598
|
+
border-radius: 0px;
|
599
|
+
padding-top: 0.5rem;
|
600
|
+
padding-right: 0.75rem;
|
601
|
+
padding-bottom: 0.5rem;
|
602
|
+
padding-left: 0.75rem;
|
603
|
+
font-size: 1rem;
|
604
|
+
line-height: 1.5rem;
|
605
|
+
--tw-shadow: 0 0 #0000;
|
606
|
+
}
|
607
|
+
|
608
|
+
[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
|
609
|
+
outline: 2px solid transparent;
|
610
|
+
outline-offset: 2px;
|
611
|
+
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
612
|
+
--tw-ring-offset-width: 0px;
|
613
|
+
--tw-ring-offset-color: #fff;
|
614
|
+
--tw-ring-color: #2563eb;
|
615
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
616
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
617
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
618
|
+
border-color: #2563eb;
|
619
|
+
}
|
620
|
+
|
621
|
+
input::-moz-placeholder, textarea::-moz-placeholder {
|
622
|
+
color: #71717a;
|
623
|
+
opacity: 1;
|
624
|
+
}
|
625
|
+
|
626
|
+
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
|
627
|
+
color: #71717a;
|
628
|
+
opacity: 1;
|
629
|
+
}
|
630
|
+
|
631
|
+
input::placeholder,textarea::placeholder {
|
632
|
+
color: #71717a;
|
633
|
+
opacity: 1;
|
634
|
+
}
|
635
|
+
|
636
|
+
::-webkit-datetime-edit-fields-wrapper {
|
637
|
+
padding: 0;
|
638
|
+
}
|
639
|
+
|
640
|
+
::-webkit-date-and-time-value {
|
641
|
+
min-height: 1.5em;
|
642
|
+
}
|
643
|
+
|
644
|
+
select {
|
645
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2371717a' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
|
646
|
+
background-position: right 0.5rem center;
|
647
|
+
background-repeat: no-repeat;
|
648
|
+
background-size: 1.5em 1.5em;
|
649
|
+
padding-right: 2.5rem;
|
650
|
+
-webkit-print-color-adjust: exact;
|
651
|
+
color-adjust: exact;
|
652
|
+
}
|
653
|
+
|
654
|
+
[multiple] {
|
655
|
+
background-image: initial;
|
656
|
+
background-position: initial;
|
657
|
+
background-repeat: unset;
|
658
|
+
background-size: initial;
|
659
|
+
padding-right: 0.75rem;
|
660
|
+
-webkit-print-color-adjust: unset;
|
661
|
+
color-adjust: unset;
|
662
|
+
}
|
663
|
+
|
664
|
+
[type='checkbox'],[type='radio'] {
|
665
|
+
-webkit-appearance: none;
|
666
|
+
-moz-appearance: none;
|
667
|
+
appearance: none;
|
668
|
+
padding: 0;
|
669
|
+
-webkit-print-color-adjust: exact;
|
670
|
+
color-adjust: exact;
|
671
|
+
display: inline-block;
|
672
|
+
vertical-align: middle;
|
673
|
+
background-origin: border-box;
|
674
|
+
-webkit-user-select: none;
|
675
|
+
-moz-user-select: none;
|
676
|
+
-ms-user-select: none;
|
677
|
+
user-select: none;
|
678
|
+
flex-shrink: 0;
|
679
|
+
height: 1rem;
|
680
|
+
width: 1rem;
|
681
|
+
color: #2563eb;
|
682
|
+
background-color: #fff;
|
683
|
+
border-color: #71717a;
|
684
|
+
border-width: 1px;
|
685
|
+
--tw-shadow: 0 0 #0000;
|
686
|
+
}
|
687
|
+
|
688
|
+
[type='checkbox'] {
|
689
|
+
border-radius: 0px;
|
690
|
+
}
|
691
|
+
|
692
|
+
[type='radio'] {
|
693
|
+
border-radius: 100%;
|
694
|
+
}
|
695
|
+
|
696
|
+
[type='checkbox']:focus,[type='radio']:focus {
|
697
|
+
outline: 2px solid transparent;
|
698
|
+
outline-offset: 2px;
|
699
|
+
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
700
|
+
--tw-ring-offset-width: 2px;
|
701
|
+
--tw-ring-offset-color: #fff;
|
702
|
+
--tw-ring-color: #2563eb;
|
703
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
704
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
705
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
706
|
+
}
|
707
|
+
|
708
|
+
[type='checkbox']:checked,[type='radio']:checked {
|
709
|
+
border-color: transparent;
|
710
|
+
background-color: currentColor;
|
711
|
+
background-size: 100% 100%;
|
712
|
+
background-position: center;
|
713
|
+
background-repeat: no-repeat;
|
714
|
+
}
|
715
|
+
|
716
|
+
[type='checkbox']:checked {
|
717
|
+
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
|
718
|
+
}
|
719
|
+
|
720
|
+
[type='radio']:checked {
|
721
|
+
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
|
722
|
+
}
|
723
|
+
|
724
|
+
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
|
725
|
+
border-color: transparent;
|
726
|
+
background-color: currentColor;
|
727
|
+
}
|
728
|
+
|
729
|
+
[type='checkbox']:indeterminate {
|
730
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
|
731
|
+
border-color: transparent;
|
732
|
+
background-color: currentColor;
|
733
|
+
background-size: 100% 100%;
|
734
|
+
background-position: center;
|
735
|
+
background-repeat: no-repeat;
|
736
|
+
}
|
737
|
+
|
738
|
+
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
|
739
|
+
border-color: transparent;
|
740
|
+
background-color: currentColor;
|
741
|
+
}
|
742
|
+
|
743
|
+
[type='file'] {
|
744
|
+
background: unset;
|
745
|
+
border-color: inherit;
|
746
|
+
border-width: 0;
|
747
|
+
border-radius: 0;
|
748
|
+
padding: 0;
|
749
|
+
font-size: unset;
|
750
|
+
line-height: inherit;
|
751
|
+
}
|
752
|
+
|
753
|
+
[type='file']:focus {
|
754
|
+
outline: 1px auto -webkit-focus-ring-color;
|
755
|
+
}
|
756
|
+
|
757
|
+
.static {
|
758
|
+
position: static;
|
759
|
+
}
|
760
|
+
|
761
|
+
.mx-auto {
|
762
|
+
margin-left: auto;
|
763
|
+
margin-right: auto;
|
764
|
+
}
|
765
|
+
|
766
|
+
.mt-0 {
|
767
|
+
margin-top: 0px;
|
768
|
+
}
|
769
|
+
|
770
|
+
.mt-1 {
|
771
|
+
margin-top: 0.25rem;
|
772
|
+
}
|
773
|
+
|
774
|
+
.mt-2 {
|
775
|
+
margin-top: 0.5rem;
|
776
|
+
}
|
777
|
+
|
778
|
+
.mt-4 {
|
779
|
+
margin-top: 1rem;
|
780
|
+
}
|
781
|
+
|
782
|
+
.mt-8 {
|
783
|
+
margin-top: 2rem;
|
784
|
+
}
|
785
|
+
|
786
|
+
.ml-2 {
|
787
|
+
margin-left: 0.5rem;
|
788
|
+
}
|
789
|
+
|
790
|
+
.block {
|
791
|
+
display: block;
|
792
|
+
}
|
793
|
+
|
794
|
+
.inline {
|
795
|
+
display: inline;
|
796
|
+
}
|
797
|
+
|
798
|
+
.flex {
|
799
|
+
display: flex;
|
800
|
+
}
|
801
|
+
|
802
|
+
.inline-flex {
|
803
|
+
display: inline-flex;
|
804
|
+
}
|
805
|
+
|
806
|
+
.table {
|
807
|
+
display: table;
|
808
|
+
}
|
809
|
+
|
810
|
+
.grid {
|
811
|
+
display: grid;
|
812
|
+
}
|
813
|
+
|
814
|
+
.hidden {
|
815
|
+
display: none;
|
816
|
+
}
|
817
|
+
|
818
|
+
.h-24 {
|
819
|
+
height: 6rem;
|
820
|
+
}
|
821
|
+
|
822
|
+
.w-full {
|
823
|
+
width: 100%;
|
824
|
+
}
|
825
|
+
|
826
|
+
.max-w-md {
|
827
|
+
max-width: 28rem;
|
828
|
+
}
|
829
|
+
|
830
|
+
.max-w-xl {
|
831
|
+
max-width: 36rem;
|
832
|
+
}
|
833
|
+
|
834
|
+
.max-w-4xl {
|
835
|
+
max-width: 56rem;
|
836
|
+
}
|
837
|
+
|
838
|
+
@-webkit-keyframes spin {
|
839
|
+
to {
|
840
|
+
transform: rotate(360deg);
|
841
|
+
}
|
842
|
+
}
|
843
|
+
|
844
|
+
@keyframes spin {
|
845
|
+
to {
|
846
|
+
transform: rotate(360deg);
|
847
|
+
}
|
848
|
+
}
|
849
|
+
|
850
|
+
@-webkit-keyframes ping {
|
851
|
+
75%, 100% {
|
852
|
+
transform: scale(2);
|
853
|
+
opacity: 0;
|
854
|
+
}
|
855
|
+
}
|
856
|
+
|
857
|
+
@keyframes ping {
|
858
|
+
75%, 100% {
|
859
|
+
transform: scale(2);
|
860
|
+
opacity: 0;
|
861
|
+
}
|
862
|
+
}
|
863
|
+
|
864
|
+
@-webkit-keyframes pulse {
|
865
|
+
50% {
|
866
|
+
opacity: .5;
|
867
|
+
}
|
868
|
+
}
|
869
|
+
|
870
|
+
@keyframes pulse {
|
871
|
+
50% {
|
872
|
+
opacity: .5;
|
873
|
+
}
|
874
|
+
}
|
875
|
+
|
876
|
+
@-webkit-keyframes bounce {
|
877
|
+
0%, 100% {
|
878
|
+
transform: translateY(-25%);
|
879
|
+
-webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
|
880
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
881
|
+
}
|
882
|
+
|
883
|
+
50% {
|
884
|
+
transform: none;
|
885
|
+
-webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
|
886
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
887
|
+
}
|
888
|
+
}
|
889
|
+
|
890
|
+
@keyframes bounce {
|
891
|
+
0%, 100% {
|
892
|
+
transform: translateY(-25%);
|
893
|
+
-webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
|
894
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
895
|
+
}
|
896
|
+
|
897
|
+
50% {
|
898
|
+
transform: none;
|
899
|
+
-webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
|
900
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
901
|
+
}
|
902
|
+
}
|
903
|
+
|
904
|
+
.grid-cols-1 {
|
905
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
906
|
+
}
|
907
|
+
|
908
|
+
.grid-cols-2 {
|
909
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
910
|
+
}
|
911
|
+
|
912
|
+
.items-start {
|
913
|
+
align-items: flex-start;
|
914
|
+
}
|
915
|
+
|
916
|
+
.items-center {
|
917
|
+
align-items: center;
|
918
|
+
}
|
919
|
+
|
920
|
+
.gap-6 {
|
921
|
+
gap: 1.5rem;
|
922
|
+
}
|
923
|
+
|
924
|
+
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
925
|
+
--tw-space-x-reverse: 0;
|
926
|
+
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
927
|
+
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
928
|
+
}
|
929
|
+
|
930
|
+
.divide-y > :not([hidden]) ~ :not([hidden]) {
|
931
|
+
--tw-divide-y-reverse: 0;
|
932
|
+
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
933
|
+
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
934
|
+
}
|
935
|
+
|
936
|
+
.rounded {
|
937
|
+
border-radius: 0.25rem;
|
938
|
+
}
|
939
|
+
|
940
|
+
.rounded-md {
|
941
|
+
border-radius: 0.375rem;
|
942
|
+
}
|
943
|
+
|
944
|
+
.border-0 {
|
945
|
+
border-width: 0px;
|
946
|
+
}
|
947
|
+
|
948
|
+
.border-2 {
|
949
|
+
border-width: 2px;
|
950
|
+
}
|
951
|
+
|
952
|
+
.border {
|
953
|
+
border-width: 1px;
|
954
|
+
}
|
955
|
+
|
956
|
+
.border-b-2 {
|
957
|
+
border-bottom-width: 2px;
|
958
|
+
}
|
959
|
+
|
960
|
+
.border-gray-200 {
|
961
|
+
--tw-border-opacity: 1;
|
962
|
+
border-color: rgba(228, 228, 231, var(--tw-border-opacity));
|
963
|
+
}
|
964
|
+
|
965
|
+
.border-gray-300 {
|
966
|
+
--tw-border-opacity: 1;
|
967
|
+
border-color: rgba(212, 212, 216, var(--tw-border-opacity));
|
968
|
+
}
|
969
|
+
|
970
|
+
.focus\:border-black:focus {
|
971
|
+
--tw-border-opacity: 1;
|
972
|
+
border-color: rgba(0, 0, 0, var(--tw-border-opacity));
|
973
|
+
}
|
974
|
+
|
975
|
+
.focus\:border-indigo-300:focus {
|
976
|
+
--tw-border-opacity: 1;
|
977
|
+
border-color: rgba(165, 180, 252, var(--tw-border-opacity));
|
978
|
+
}
|
979
|
+
|
980
|
+
.focus\:border-gray-300:focus {
|
981
|
+
--tw-border-opacity: 1;
|
982
|
+
border-color: rgba(212, 212, 216, var(--tw-border-opacity));
|
983
|
+
}
|
984
|
+
|
985
|
+
.focus\:border-gray-500:focus {
|
986
|
+
--tw-border-opacity: 1;
|
987
|
+
border-color: rgba(113, 113, 122, var(--tw-border-opacity));
|
988
|
+
}
|
989
|
+
|
990
|
+
.bg-gray-100 {
|
991
|
+
--tw-bg-opacity: 1;
|
992
|
+
background-color: rgba(244, 244, 245, var(--tw-bg-opacity));
|
993
|
+
}
|
994
|
+
|
995
|
+
.bg-gray-200 {
|
996
|
+
--tw-bg-opacity: 1;
|
997
|
+
background-color: rgba(228, 228, 231, var(--tw-bg-opacity));
|
998
|
+
}
|
999
|
+
|
1000
|
+
.focus\:bg-white:focus {
|
1001
|
+
--tw-bg-opacity: 1;
|
1002
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
1003
|
+
}
|
1004
|
+
|
1005
|
+
.focus\:bg-gray-200:focus {
|
1006
|
+
--tw-bg-opacity: 1;
|
1007
|
+
background-color: rgba(228, 228, 231, var(--tw-bg-opacity));
|
1008
|
+
}
|
1009
|
+
|
1010
|
+
.px-0 {
|
1011
|
+
padding-left: 0px;
|
1012
|
+
padding-right: 0px;
|
1013
|
+
}
|
1014
|
+
|
1015
|
+
.px-6 {
|
1016
|
+
padding-left: 1.5rem;
|
1017
|
+
padding-right: 1.5rem;
|
1018
|
+
}
|
1019
|
+
|
1020
|
+
.px-0\.5 {
|
1021
|
+
padding-left: 0.125rem;
|
1022
|
+
padding-right: 0.125rem;
|
1023
|
+
}
|
1024
|
+
|
1025
|
+
.py-8 {
|
1026
|
+
padding-top: 2rem;
|
1027
|
+
padding-bottom: 2rem;
|
1028
|
+
}
|
1029
|
+
|
1030
|
+
.py-12 {
|
1031
|
+
padding-top: 3rem;
|
1032
|
+
padding-bottom: 3rem;
|
1033
|
+
}
|
1034
|
+
|
1035
|
+
.text-lg {
|
1036
|
+
font-size: 1.125rem;
|
1037
|
+
line-height: 1.75rem;
|
1038
|
+
}
|
1039
|
+
|
1040
|
+
.text-2xl {
|
1041
|
+
font-size: 1.5rem;
|
1042
|
+
line-height: 2rem;
|
1043
|
+
}
|
1044
|
+
|
1045
|
+
.text-4xl {
|
1046
|
+
font-size: 2.25rem;
|
1047
|
+
line-height: 2.5rem;
|
1048
|
+
}
|
1049
|
+
|
1050
|
+
.font-bold {
|
1051
|
+
font-weight: 700;
|
1052
|
+
}
|
1053
|
+
|
1054
|
+
.uppercase {
|
1055
|
+
text-transform: uppercase;
|
1056
|
+
}
|
1057
|
+
|
1058
|
+
.text-black {
|
1059
|
+
--tw-text-opacity: 1;
|
1060
|
+
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
1061
|
+
}
|
1062
|
+
|
1063
|
+
.text-indigo-600 {
|
1064
|
+
--tw-text-opacity: 1;
|
1065
|
+
color: rgba(79, 70, 229, var(--tw-text-opacity));
|
1066
|
+
}
|
1067
|
+
|
1068
|
+
.text-gray-500 {
|
1069
|
+
--tw-text-opacity: 1;
|
1070
|
+
color: rgba(113, 113, 122, var(--tw-text-opacity));
|
1071
|
+
}
|
1072
|
+
|
1073
|
+
.text-gray-600 {
|
1074
|
+
--tw-text-opacity: 1;
|
1075
|
+
color: rgba(82, 82, 91, var(--tw-text-opacity));
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
.text-gray-700 {
|
1079
|
+
--tw-text-opacity: 1;
|
1080
|
+
color: rgba(63, 63, 70, var(--tw-text-opacity));
|
1081
|
+
}
|
1082
|
+
|
1083
|
+
.text-gray-900 {
|
1084
|
+
--tw-text-opacity: 1;
|
1085
|
+
color: rgba(24, 24, 27, var(--tw-text-opacity));
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
.underline {
|
1089
|
+
text-decoration: underline;
|
1090
|
+
}
|
1091
|
+
|
1092
|
+
.antialiased {
|
1093
|
+
-webkit-font-smoothing: antialiased;
|
1094
|
+
-moz-osx-font-smoothing: grayscale;
|
1095
|
+
}
|
1096
|
+
|
1097
|
+
*, ::before, ::after {
|
1098
|
+
--tw-shadow: 0 0 #0000;
|
1099
|
+
}
|
1100
|
+
|
1101
|
+
.shadow-sm {
|
1102
|
+
--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
1103
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
*, ::before, ::after {
|
1107
|
+
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
1108
|
+
--tw-ring-offset-width: 0px;
|
1109
|
+
--tw-ring-offset-color: #fff;
|
1110
|
+
--tw-ring-color: rgba(59, 130, 246, 0.5);
|
1111
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
1112
|
+
--tw-ring-shadow: 0 0 #0000;
|
1113
|
+
}
|
1114
|
+
|
1115
|
+
.focus\:ring-0:focus {
|
1116
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
1117
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
1118
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
1119
|
+
}
|
1120
|
+
|
1121
|
+
.focus\:ring-1:focus {
|
1122
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
1123
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
1124
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
.focus\:ring:focus {
|
1128
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
1129
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
1130
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
1131
|
+
}
|
1132
|
+
|
1133
|
+
.focus\:ring-black:focus {
|
1134
|
+
--tw-ring-opacity: 1;
|
1135
|
+
--tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
|
1136
|
+
}
|
1137
|
+
|
1138
|
+
.focus\:ring-indigo-200:focus {
|
1139
|
+
--tw-ring-opacity: 1;
|
1140
|
+
--tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
|
1141
|
+
}
|
1142
|
+
|
1143
|
+
.focus\:ring-gray-500:focus {
|
1144
|
+
--tw-ring-opacity: 1;
|
1145
|
+
--tw-ring-color: rgba(113, 113, 122, var(--tw-ring-opacity));
|
1146
|
+
}
|
1147
|
+
|
1148
|
+
.focus\:ring-opacity-50:focus {
|
1149
|
+
--tw-ring-opacity: 0.5;
|
1150
|
+
}
|
1151
|
+
|
1152
|
+
.focus\:ring-offset-0:focus {
|
1153
|
+
--tw-ring-offset-width: 0px;
|
1154
|
+
}
|
1155
|
+
|
1156
|
+
.focus\:ring-offset-2:focus {
|
1157
|
+
--tw-ring-offset-width: 2px;
|
1158
|
+
}
|
1159
|
+
|
1160
|
+
.filter {
|
1161
|
+
--tw-blur: var(--tw-empty,/*!*/ /*!*/);
|
1162
|
+
--tw-brightness: var(--tw-empty,/*!*/ /*!*/);
|
1163
|
+
--tw-contrast: var(--tw-empty,/*!*/ /*!*/);
|
1164
|
+
--tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
|
1165
|
+
--tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
|
1166
|
+
--tw-invert: var(--tw-empty,/*!*/ /*!*/);
|
1167
|
+
--tw-saturate: var(--tw-empty,/*!*/ /*!*/);
|
1168
|
+
--tw-sepia: var(--tw-empty,/*!*/ /*!*/);
|
1169
|
+
--tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
|
1170
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
1171
|
+
}
|
1172
|
+
|
1173
|
+
body {
|
1174
|
+
--tw-text-opacity: 1;
|
1175
|
+
color: rgba(51, 65, 85, var(--tw-text-opacity));
|
1176
|
+
-webkit-font-smoothing: antialiased;
|
1177
|
+
-moz-osx-font-smoothing: grayscale;
|
1178
|
+
}
|
1179
|
+
|
1180
|
+
/**
|
1181
|
+
* Navigation
|
1182
|
+
*/
|
1183
|
+
|
1184
|
+
.navigation {
|
1185
|
+
position: relative;
|
1186
|
+
z-index: 10;
|
1187
|
+
display: flex;
|
1188
|
+
flex-wrap: wrap;
|
1189
|
+
align-items: center;
|
1190
|
+
justify-content: space-between;
|
1191
|
+
--tw-bg-opacity: 1;
|
1192
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
1193
|
+
padding-left: 1.5rem;
|
1194
|
+
padding-right: 1.5rem;
|
1195
|
+
padding-top: 1rem;
|
1196
|
+
padding-bottom: 1rem;
|
1197
|
+
--tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
1198
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1199
|
+
}
|
1200
|
+
|
1201
|
+
@media (min-width: 768px) {
|
1202
|
+
.navigation {
|
1203
|
+
position: fixed;
|
1204
|
+
top: 0px;
|
1205
|
+
bottom: 0px;
|
1206
|
+
left: 0px;
|
1207
|
+
display: block;
|
1208
|
+
width: 16rem;
|
1209
|
+
flex-direction: row;
|
1210
|
+
flex-wrap: nowrap;
|
1211
|
+
overflow: hidden;
|
1212
|
+
overflow-y: auto;
|
1213
|
+
}
|
1214
|
+
}
|
1215
|
+
|
1216
|
+
.navigation__link {
|
1217
|
+
display: block;
|
1218
|
+
padding-top: 0.75rem;
|
1219
|
+
padding-bottom: 0.75rem;
|
1220
|
+
font-size: 0.75rem;
|
1221
|
+
line-height: 1rem;
|
1222
|
+
font-weight: 700;
|
1223
|
+
text-transform: uppercase;
|
1224
|
+
--tw-text-opacity: 1;
|
1225
|
+
color: rgba(51, 65, 85, var(--tw-text-opacity));
|
1226
|
+
}
|
1227
|
+
|
1228
|
+
.navigation__link:hover {
|
1229
|
+
--tw-text-opacity: 1;
|
1230
|
+
color: rgba(100, 116, 139, var(--tw-text-opacity));
|
1231
|
+
}
|
1232
|
+
|
1233
|
+
.navigation__link--active {
|
1234
|
+
--tw-text-opacity: 1;
|
1235
|
+
color: rgba(236, 72, 153, var(--tw-text-opacity));
|
1236
|
+
}
|
1237
|
+
|
1238
|
+
.navigation__link--active:hover {
|
1239
|
+
--tw-text-opacity: 1;
|
1240
|
+
color: rgba(219, 39, 119, var(--tw-text-opacity));
|
1241
|
+
}
|
1242
|
+
|
1243
|
+
/**
|
1244
|
+
* Main Content
|
1245
|
+
*/
|
1246
|
+
|
1247
|
+
.main-content {
|
1248
|
+
position: relative;
|
1249
|
+
--tw-bg-opacity: 1;
|
1250
|
+
background-color: rgba(248, 250, 252, var(--tw-bg-opacity));
|
1251
|
+
}
|
1252
|
+
|
1253
|
+
@media (min-width: 768px) {
|
1254
|
+
.main-content {
|
1255
|
+
margin-left: 16rem;
|
1256
|
+
}
|
1257
|
+
}
|
1258
|
+
|
1259
|
+
.main-content__header {
|
1260
|
+
position: relative;
|
1261
|
+
--tw-bg-opacity: 1;
|
1262
|
+
background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
|
1263
|
+
padding-top: 3rem;
|
1264
|
+
padding-bottom: 5rem;
|
1265
|
+
}
|
1266
|
+
|
1267
|
+
@media (min-width: 768px) {
|
1268
|
+
.main-content__header {
|
1269
|
+
padding-top: 3rem;
|
1270
|
+
}
|
1271
|
+
}
|
1272
|
+
|
1273
|
+
.main-content__header {
|
1274
|
+
z-index: 10;
|
1275
|
+
display: flex;
|
1276
|
+
display: flex;
|
1277
|
+
flex-wrap: wrap;
|
1278
|
+
align-items: center;
|
1279
|
+
justify-content: space-between;
|
1280
|
+
padding-left: 1rem;
|
1281
|
+
padding-right: 1rem;
|
1282
|
+
}
|
1283
|
+
|
1284
|
+
@media (min-width: 768px) {
|
1285
|
+
.main-content__header {
|
1286
|
+
flex-wrap: nowrap;
|
1287
|
+
padding-left: 2.5rem;
|
1288
|
+
padding-right: 2.5rem;
|
1289
|
+
}
|
1290
|
+
}
|
1291
|
+
|
1292
|
+
.main-content__page-title {
|
1293
|
+
display: none;
|
1294
|
+
font-size: 0.875rem;
|
1295
|
+
line-height: 1.25rem;
|
1296
|
+
font-weight: 600;
|
1297
|
+
text-transform: uppercase;
|
1298
|
+
--tw-text-opacity: 1;
|
1299
|
+
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
1300
|
+
}
|
1301
|
+
|
1302
|
+
@media (min-width: 1024px) {
|
1303
|
+
.main-content__page-title {
|
1304
|
+
display: inline-block;
|
1305
|
+
}
|
1306
|
+
}
|
1307
|
+
|
1308
|
+
.main-content__page-title {
|
1309
|
+
flex: 1 1 0%;
|
1310
|
+
}
|
1311
|
+
|
1312
|
+
.main-content__body {
|
1313
|
+
margin: -3rem;
|
1314
|
+
margin-left: auto;
|
1315
|
+
margin-right: auto;
|
1316
|
+
width: 100%;
|
1317
|
+
padding-left: 1rem;
|
1318
|
+
padding-right: 1rem;
|
1319
|
+
}
|
1320
|
+
|
1321
|
+
@media (min-width: 768px) {
|
1322
|
+
.main-content__body {
|
1323
|
+
padding-left: 2.5rem;
|
1324
|
+
padding-right: 2.5rem;
|
1325
|
+
}
|
1326
|
+
}
|
1327
|
+
|
1328
|
+
.main-content__body {
|
1329
|
+
position: relative;
|
1330
|
+
z-index: 20;
|
1331
|
+
}
|
1332
|
+
|
1333
|
+
/**
|
1334
|
+
* Search
|
1335
|
+
*/
|
1336
|
+
|
1337
|
+
.search {
|
1338
|
+
position: relative;
|
1339
|
+
display: flex;
|
1340
|
+
flex-wrap: wrap;
|
1341
|
+
align-items: stretch;
|
1342
|
+
margin-right: 1rem;
|
1343
|
+
}
|
1344
|
+
|
1345
|
+
.search__label {
|
1346
|
+
position: absolute;
|
1347
|
+
position: absolute;
|
1348
|
+
z-index: 10;
|
1349
|
+
height: 100%;
|
1350
|
+
width: 2rem;
|
1351
|
+
align-items: center;
|
1352
|
+
justify-content: center;
|
1353
|
+
border-radius: 0.25rem;
|
1354
|
+
background-color: transparent;
|
1355
|
+
padding-top: 0.75rem;
|
1356
|
+
padding-bottom: 0.75rem;
|
1357
|
+
padding-left: 0.75rem;
|
1358
|
+
text-align: center;
|
1359
|
+
font-size: 1rem;
|
1360
|
+
line-height: 1.5rem;
|
1361
|
+
font-weight: 400;
|
1362
|
+
line-height: 1.375;
|
1363
|
+
--tw-text-opacity: 1;
|
1364
|
+
color: rgba(203, 213, 225, var(--tw-text-opacity));
|
1365
|
+
}
|
1366
|
+
|
1367
|
+
.search__input {
|
1368
|
+
position: relative;
|
1369
|
+
width: 100%;
|
1370
|
+
border-radius: 0.25rem;
|
1371
|
+
border-width: 0px;
|
1372
|
+
--tw-bg-opacity: 1;
|
1373
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
1374
|
+
--tw-bg-opacity: 1;
|
1375
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
1376
|
+
padding-left: 0.75rem;
|
1377
|
+
padding-right: 0.75rem;
|
1378
|
+
padding-top: 0.75rem;
|
1379
|
+
padding-bottom: 0.75rem;
|
1380
|
+
padding-left: 2.5rem;
|
1381
|
+
font-size: 0.875rem;
|
1382
|
+
line-height: 1.25rem;
|
1383
|
+
--tw-text-opacity: 1;
|
1384
|
+
color: rgba(71, 85, 105, var(--tw-text-opacity));
|
1385
|
+
}
|
1386
|
+
|
1387
|
+
.search__input::-moz-placeholder {
|
1388
|
+
--tw-placeholder-opacity: 1;
|
1389
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1390
|
+
}
|
1391
|
+
|
1392
|
+
.search__input:-ms-input-placeholder {
|
1393
|
+
--tw-placeholder-opacity: 1;
|
1394
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1395
|
+
}
|
1396
|
+
|
1397
|
+
.search__input::placeholder {
|
1398
|
+
--tw-placeholder-opacity: 1;
|
1399
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1400
|
+
}
|
1401
|
+
|
1402
|
+
.search__input {
|
1403
|
+
--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
1404
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1405
|
+
outline: 2px solid transparent;
|
1406
|
+
outline-offset: 2px;
|
1407
|
+
}
|
1408
|
+
|
1409
|
+
.search__input:focus {
|
1410
|
+
outline: 2px solid transparent;
|
1411
|
+
outline-offset: 2px;
|
1412
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
1413
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
1414
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
1415
|
+
}
|
1416
|
+
|
1417
|
+
.search__clear-link {
|
1418
|
+
position: absolute;
|
1419
|
+
position: absolute;
|
1420
|
+
z-index: 10;
|
1421
|
+
height: 100%;
|
1422
|
+
width: 2rem;
|
1423
|
+
align-items: center;
|
1424
|
+
justify-content: center;
|
1425
|
+
border-radius: 0.25rem;
|
1426
|
+
background-color: transparent;
|
1427
|
+
padding-top: 0.75rem;
|
1428
|
+
padding-bottom: 0.75rem;
|
1429
|
+
padding-right: 0.75rem;
|
1430
|
+
text-align: center;
|
1431
|
+
font-size: 1rem;
|
1432
|
+
line-height: 1.5rem;
|
1433
|
+
font-weight: 400;
|
1434
|
+
line-height: 1.375;
|
1435
|
+
--tw-text-opacity: 1;
|
1436
|
+
color: rgba(203, 213, 225, var(--tw-text-opacity));
|
1437
|
+
right: 0px;
|
1438
|
+
}
|
1439
|
+
|
1440
|
+
.search__eyeglass-icon, .search__clear-icon {
|
1441
|
+
height: 1.25rem;
|
1442
|
+
width: 1.25rem;
|
1443
|
+
fill: currentColor;
|
1444
|
+
}
|
1445
|
+
|
1446
|
+
/**
|
1447
|
+
* Button
|
1448
|
+
*/
|
1449
|
+
|
1450
|
+
.button {
|
1451
|
+
margin-right: 0.25rem;
|
1452
|
+
margin-bottom: 0.25rem;
|
1453
|
+
border-radius: 0.25rem;
|
1454
|
+
--tw-bg-opacity: 1;
|
1455
|
+
background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
|
1456
|
+
}
|
1457
|
+
|
1458
|
+
.button:active {
|
1459
|
+
--tw-bg-opacity: 1;
|
1460
|
+
background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
|
1461
|
+
}
|
1462
|
+
|
1463
|
+
.button {
|
1464
|
+
padding-left: 1.5rem;
|
1465
|
+
padding-right: 1.5rem;
|
1466
|
+
padding-top: 0.75rem;
|
1467
|
+
padding-bottom: 0.75rem;
|
1468
|
+
font-size: 0.875rem;
|
1469
|
+
line-height: 1.25rem;
|
1470
|
+
font-weight: 700;
|
1471
|
+
text-transform: uppercase;
|
1472
|
+
--tw-text-opacity: 1;
|
1473
|
+
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
1474
|
+
outline: 2px solid transparent;
|
1475
|
+
outline-offset: 2px;
|
1476
|
+
}
|
1477
|
+
|
1478
|
+
.button:focus {
|
1479
|
+
outline: 2px solid transparent;
|
1480
|
+
outline-offset: 2px;
|
1481
|
+
}
|
1482
|
+
|
1483
|
+
.button {
|
1484
|
+
transition-property: all;
|
1485
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1486
|
+
transition-duration: 150ms;
|
1487
|
+
transition-duration: 150ms;
|
1488
|
+
transition-timing-function: linear;
|
1489
|
+
}
|
1490
|
+
|
1491
|
+
.button--nav {
|
1492
|
+
margin-right: 0px;
|
1493
|
+
display: inline-block;
|
1494
|
+
white-space: nowrap;
|
1495
|
+
padding: 1rem;
|
1496
|
+
padding-left: 0px;
|
1497
|
+
padding-right: 0px;
|
1498
|
+
text-align: left;
|
1499
|
+
font-size: 0.875rem;
|
1500
|
+
line-height: 1.25rem;
|
1501
|
+
font-weight: 700;
|
1502
|
+
text-transform: uppercase;
|
1503
|
+
--tw-text-opacity: 1;
|
1504
|
+
color: rgba(71, 85, 105, var(--tw-text-opacity));
|
1505
|
+
}
|
1506
|
+
|
1507
|
+
@media (min-width: 768px) {
|
1508
|
+
.button--nav {
|
1509
|
+
margin-bottom: 1rem;
|
1510
|
+
display: block;
|
1511
|
+
padding-bottom: 1rem;
|
1512
|
+
}
|
1513
|
+
}
|
1514
|
+
|
1515
|
+
.button--nav {
|
1516
|
+
border-bottom-width: 1px;
|
1517
|
+
border-style: solid;
|
1518
|
+
--tw-border-opacity: 1;
|
1519
|
+
border-color: rgba(226, 232, 240, var(--tw-border-opacity));
|
1520
|
+
background-color: transparent;
|
1521
|
+
}
|
1522
|
+
|
1523
|
+
.button--nav:active {
|
1524
|
+
background-color: transparent;
|
1525
|
+
}
|
1526
|
+
|
1527
|
+
.action-edit {
|
1528
|
+
margin-right: 0.25rem;
|
1529
|
+
margin-bottom: 0.25rem;
|
1530
|
+
border-radius: 0.25rem;
|
1531
|
+
--tw-bg-opacity: 1;
|
1532
|
+
background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
|
1533
|
+
}
|
1534
|
+
|
1535
|
+
.action-edit:active {
|
1536
|
+
--tw-bg-opacity: 1;
|
1537
|
+
background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
|
1538
|
+
}
|
1539
|
+
|
1540
|
+
.action-edit {
|
1541
|
+
padding-left: 1rem;
|
1542
|
+
padding-right: 1rem;
|
1543
|
+
padding-top: 0.5rem;
|
1544
|
+
padding-bottom: 0.5rem;
|
1545
|
+
font-size: 0.75rem;
|
1546
|
+
line-height: 1rem;
|
1547
|
+
font-weight: 700;
|
1548
|
+
text-transform: uppercase;
|
1549
|
+
--tw-text-opacity: 1;
|
1550
|
+
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
1551
|
+
--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
1552
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1553
|
+
}
|
1554
|
+
|
1555
|
+
.action-edit:hover {
|
1556
|
+
--tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
1557
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1558
|
+
}
|
1559
|
+
|
1560
|
+
.action-edit {
|
1561
|
+
outline: 2px solid transparent;
|
1562
|
+
outline-offset: 2px;
|
1563
|
+
}
|
1564
|
+
|
1565
|
+
.action-edit:focus {
|
1566
|
+
outline: 2px solid transparent;
|
1567
|
+
outline-offset: 2px;
|
1568
|
+
}
|
1569
|
+
|
1570
|
+
.action-edit {
|
1571
|
+
transition-property: all;
|
1572
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1573
|
+
transition-duration: 150ms;
|
1574
|
+
transition-duration: 150ms;
|
1575
|
+
transition-timing-function: linear;
|
1576
|
+
}
|
1577
|
+
|
1578
|
+
.action-show {
|
1579
|
+
--tw-text-opacity: 1;
|
1580
|
+
color: rgba(99, 102, 241, var(--tw-text-opacity));
|
1581
|
+
}
|
1582
|
+
|
1583
|
+
.text-color-red {
|
1584
|
+
--tw-text-opacity: 1;
|
1585
|
+
color: rgba(239, 68, 68, var(--tw-text-opacity));
|
1586
|
+
}
|
1587
|
+
|
1588
|
+
/**
|
1589
|
+
* Table
|
1590
|
+
*/
|
1591
|
+
|
1592
|
+
table {
|
1593
|
+
margin-bottom: 3rem;
|
1594
|
+
width: 100%;
|
1595
|
+
padding-left: 1rem;
|
1596
|
+
padding-right: 1rem;
|
1597
|
+
border-collapse: collapse;
|
1598
|
+
align-items: center;
|
1599
|
+
position: relative;
|
1600
|
+
margin-bottom: 1.5rem;
|
1601
|
+
width: 100%;
|
1602
|
+
min-width: 0px;
|
1603
|
+
overflow-wrap: break-word;
|
1604
|
+
border-radius: 0.25rem;
|
1605
|
+
--tw-bg-opacity: 1;
|
1606
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
1607
|
+
--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
1608
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1609
|
+
overflow: hidden;
|
1610
|
+
}
|
1611
|
+
|
1612
|
+
th {
|
1613
|
+
white-space: nowrap;
|
1614
|
+
border-width: 1px;
|
1615
|
+
border-right-width: 0px;
|
1616
|
+
border-left-width: 0px;
|
1617
|
+
border-style: solid;
|
1618
|
+
--tw-border-opacity: 1;
|
1619
|
+
border-color: rgba(241, 245, 249, var(--tw-border-opacity));
|
1620
|
+
--tw-bg-opacity: 1;
|
1621
|
+
background-color: rgba(248, 250, 252, var(--tw-bg-opacity));
|
1622
|
+
padding-left: 1.5rem;
|
1623
|
+
padding-right: 1.5rem;
|
1624
|
+
padding-top: 0.75rem;
|
1625
|
+
padding-bottom: 0.75rem;
|
1626
|
+
text-align: left;
|
1627
|
+
vertical-align: middle;
|
1628
|
+
font-size: 0.75rem;
|
1629
|
+
line-height: 1rem;
|
1630
|
+
font-weight: 600;
|
1631
|
+
text-transform: uppercase;
|
1632
|
+
--tw-text-opacity: 1;
|
1633
|
+
color: rgba(100, 116, 139, var(--tw-text-opacity));
|
1634
|
+
}
|
1635
|
+
|
1636
|
+
td {
|
1637
|
+
white-space: nowrap;
|
1638
|
+
border-top-width: 0px;
|
1639
|
+
border-right-width: 0px;
|
1640
|
+
border-left-width: 0px;
|
1641
|
+
padding: 1rem;
|
1642
|
+
padding-left: 1.5rem;
|
1643
|
+
padding-right: 1.5rem;
|
1644
|
+
vertical-align: middle;
|
1645
|
+
font-size: 0.75rem;
|
1646
|
+
line-height: 1rem;
|
1647
|
+
}
|
1648
|
+
|
1649
|
+
/**
|
1650
|
+
* Show
|
1651
|
+
*/
|
1652
|
+
|
1653
|
+
dl {
|
1654
|
+
margin-bottom: 3rem;
|
1655
|
+
width: 100%;
|
1656
|
+
padding: 1rem;
|
1657
|
+
position: relative;
|
1658
|
+
margin-bottom: 1.5rem;
|
1659
|
+
width: 100%;
|
1660
|
+
min-width: 0px;
|
1661
|
+
overflow-wrap: break-word;
|
1662
|
+
border-radius: 0.25rem;
|
1663
|
+
--tw-bg-opacity: 1;
|
1664
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
1665
|
+
--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
1666
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1667
|
+
}
|
1668
|
+
|
1669
|
+
.attribute-label {
|
1670
|
+
font-size: 0.75rem;
|
1671
|
+
line-height: 1rem;
|
1672
|
+
font-weight: 700;
|
1673
|
+
text-transform: uppercase;
|
1674
|
+
--tw-text-opacity: 1;
|
1675
|
+
color: rgba(148, 163, 184, var(--tw-text-opacity));
|
1676
|
+
}
|
1677
|
+
|
1678
|
+
.attribute-data {
|
1679
|
+
font-size: 1.25rem;
|
1680
|
+
line-height: 1.75rem;
|
1681
|
+
font-weight: 600;
|
1682
|
+
--tw-text-opacity: 1;
|
1683
|
+
color: rgba(51, 65, 85, var(--tw-text-opacity));
|
1684
|
+
margin-bottom: 0.75rem;
|
1685
|
+
}
|
1686
|
+
|
1687
|
+
.attribute-data:last-child {
|
1688
|
+
margin-bottom: 0px;
|
1689
|
+
}
|
1690
|
+
|
1691
|
+
.attribute-data--has-many table {
|
1692
|
+
--tw-shadow: 0 0 #0000;
|
1693
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1694
|
+
}
|
1695
|
+
|
1696
|
+
.attribute-data--belongs-to a {
|
1697
|
+
--tw-text-opacity: 1;
|
1698
|
+
color: rgba(99, 102, 241, var(--tw-text-opacity));
|
1699
|
+
}
|
1700
|
+
|
1701
|
+
/**
|
1702
|
+
* Form
|
1703
|
+
*/
|
1704
|
+
|
1705
|
+
.form {
|
1706
|
+
margin-bottom: 3rem;
|
1707
|
+
width: 100%;
|
1708
|
+
padding: 1rem;
|
1709
|
+
position: relative;
|
1710
|
+
margin-bottom: 1.5rem;
|
1711
|
+
width: 100%;
|
1712
|
+
min-width: 0px;
|
1713
|
+
overflow-wrap: break-word;
|
1714
|
+
border-radius: 0.25rem;
|
1715
|
+
--tw-bg-opacity: 1;
|
1716
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
1717
|
+
--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
1718
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1719
|
+
}
|
1720
|
+
|
1721
|
+
.field-unit {
|
1722
|
+
margin-bottom: 0.75rem;
|
1723
|
+
}
|
1724
|
+
|
1725
|
+
.field-unit__label label {
|
1726
|
+
margin-bottom: 0.5rem;
|
1727
|
+
display: block;
|
1728
|
+
font-size: 0.75rem;
|
1729
|
+
line-height: 1rem;
|
1730
|
+
font-weight: 700;
|
1731
|
+
text-transform: uppercase;
|
1732
|
+
--tw-text-opacity: 1;
|
1733
|
+
color: rgba(71, 85, 105, var(--tw-text-opacity));
|
1734
|
+
}
|
1735
|
+
|
1736
|
+
.field-unit__field input {
|
1737
|
+
width: 100%;
|
1738
|
+
border-radius: 0.25rem;
|
1739
|
+
border-width: 0px;
|
1740
|
+
--tw-bg-opacity: 1;
|
1741
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
1742
|
+
padding-left: 0.75rem;
|
1743
|
+
padding-right: 0.75rem;
|
1744
|
+
padding-top: 0.75rem;
|
1745
|
+
padding-bottom: 0.75rem;
|
1746
|
+
font-size: 0.875rem;
|
1747
|
+
line-height: 1.25rem;
|
1748
|
+
--tw-text-opacity: 1;
|
1749
|
+
color: rgba(71, 85, 105, var(--tw-text-opacity));
|
1750
|
+
}
|
1751
|
+
|
1752
|
+
.field-unit__field input::-moz-placeholder {
|
1753
|
+
--tw-placeholder-opacity: 1;
|
1754
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1755
|
+
}
|
1756
|
+
|
1757
|
+
.field-unit__field input:-ms-input-placeholder {
|
1758
|
+
--tw-placeholder-opacity: 1;
|
1759
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1760
|
+
}
|
1761
|
+
|
1762
|
+
.field-unit__field input::placeholder {
|
1763
|
+
--tw-placeholder-opacity: 1;
|
1764
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1765
|
+
}
|
1766
|
+
|
1767
|
+
.field-unit__field input {
|
1768
|
+
--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
1769
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1770
|
+
}
|
1771
|
+
|
1772
|
+
.field-unit__field input:focus {
|
1773
|
+
outline: 2px solid transparent;
|
1774
|
+
outline-offset: 2px;
|
1775
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
1776
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
1777
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
1778
|
+
}
|
1779
|
+
|
1780
|
+
.field-unit__field input {
|
1781
|
+
transition-property: all;
|
1782
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1783
|
+
transition-duration: 150ms;
|
1784
|
+
transition-duration: 150ms;
|
1785
|
+
transition-timing-function: linear;
|
1786
|
+
}
|
1787
|
+
|
1788
|
+
.field-unit__field textarea {
|
1789
|
+
width: 100%;
|
1790
|
+
border-radius: 0.25rem;
|
1791
|
+
border-width: 0px;
|
1792
|
+
--tw-bg-opacity: 1;
|
1793
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
1794
|
+
padding-left: 0.75rem;
|
1795
|
+
padding-right: 0.75rem;
|
1796
|
+
padding-top: 0.75rem;
|
1797
|
+
padding-bottom: 0.75rem;
|
1798
|
+
font-size: 0.875rem;
|
1799
|
+
line-height: 1.25rem;
|
1800
|
+
--tw-text-opacity: 1;
|
1801
|
+
color: rgba(71, 85, 105, var(--tw-text-opacity));
|
1802
|
+
}
|
1803
|
+
|
1804
|
+
.field-unit__field textarea::-moz-placeholder {
|
1805
|
+
--tw-placeholder-opacity: 1;
|
1806
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1807
|
+
}
|
1808
|
+
|
1809
|
+
.field-unit__field textarea:-ms-input-placeholder {
|
1810
|
+
--tw-placeholder-opacity: 1;
|
1811
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1812
|
+
}
|
1813
|
+
|
1814
|
+
.field-unit__field textarea::placeholder {
|
1815
|
+
--tw-placeholder-opacity: 1;
|
1816
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1817
|
+
}
|
1818
|
+
|
1819
|
+
.field-unit__field textarea {
|
1820
|
+
--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
1821
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1822
|
+
}
|
1823
|
+
|
1824
|
+
.field-unit__field textarea:focus {
|
1825
|
+
outline: 2px solid transparent;
|
1826
|
+
outline-offset: 2px;
|
1827
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
1828
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
1829
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
1830
|
+
}
|
1831
|
+
|
1832
|
+
.field-unit__field textarea {
|
1833
|
+
transition-property: all;
|
1834
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1835
|
+
transition-duration: 150ms;
|
1836
|
+
transition-duration: 150ms;
|
1837
|
+
transition-timing-function: linear;
|
1838
|
+
}
|
1839
|
+
|
1840
|
+
.form-actions input[type="submit"] {
|
1841
|
+
margin-right: 0.25rem;
|
1842
|
+
border-radius: 0.25rem;
|
1843
|
+
--tw-bg-opacity: 1;
|
1844
|
+
background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
|
1845
|
+
}
|
1846
|
+
|
1847
|
+
.form-actions input[type="submit"]:active {
|
1848
|
+
--tw-bg-opacity: 1;
|
1849
|
+
background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
|
1850
|
+
}
|
1851
|
+
|
1852
|
+
.form-actions input[type="submit"] {
|
1853
|
+
padding-left: 1rem;
|
1854
|
+
padding-right: 1rem;
|
1855
|
+
padding-top: 0.5rem;
|
1856
|
+
padding-bottom: 0.5rem;
|
1857
|
+
font-size: 0.75rem;
|
1858
|
+
line-height: 1rem;
|
1859
|
+
font-weight: 700;
|
1860
|
+
text-transform: uppercase;
|
1861
|
+
--tw-text-opacity: 1;
|
1862
|
+
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
1863
|
+
--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
1864
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1865
|
+
}
|
1866
|
+
|
1867
|
+
.form-actions input[type="submit"]:hover {
|
1868
|
+
--tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
1869
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1870
|
+
}
|
1871
|
+
|
1872
|
+
.form-actions input[type="submit"] {
|
1873
|
+
outline: 2px solid transparent;
|
1874
|
+
outline-offset: 2px;
|
1875
|
+
}
|
1876
|
+
|
1877
|
+
.form-actions input[type="submit"]:focus {
|
1878
|
+
outline: 2px solid transparent;
|
1879
|
+
outline-offset: 2px;
|
1880
|
+
}
|
1881
|
+
|
1882
|
+
.form-actions input[type="submit"] {
|
1883
|
+
transition-property: all;
|
1884
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1885
|
+
transition-duration: 150ms;
|
1886
|
+
transition-duration: 150ms;
|
1887
|
+
transition-timing-function: linear;
|
1888
|
+
}
|
1889
|
+
|
1890
|
+
/**
|
1891
|
+
* Selectize
|
1892
|
+
*/
|
1893
|
+
|
1894
|
+
.selectize-input {
|
1895
|
+
width: 100%;
|
1896
|
+
width: 100%;
|
1897
|
+
border-radius: 0.25rem;
|
1898
|
+
border-width: 0px;
|
1899
|
+
--tw-bg-opacity: 1;
|
1900
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
1901
|
+
padding-left: 0.75rem;
|
1902
|
+
padding-right: 0.75rem;
|
1903
|
+
padding-top: 0.75rem;
|
1904
|
+
padding-bottom: 0.75rem;
|
1905
|
+
font-size: 0.875rem;
|
1906
|
+
line-height: 1.25rem;
|
1907
|
+
--tw-text-opacity: 1;
|
1908
|
+
color: rgba(71, 85, 105, var(--tw-text-opacity));
|
1909
|
+
}
|
1910
|
+
|
1911
|
+
.selectize-input::-moz-placeholder {
|
1912
|
+
--tw-placeholder-opacity: 1;
|
1913
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1914
|
+
}
|
1915
|
+
|
1916
|
+
.selectize-input:-ms-input-placeholder {
|
1917
|
+
--tw-placeholder-opacity: 1;
|
1918
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1919
|
+
}
|
1920
|
+
|
1921
|
+
.selectize-input::placeholder {
|
1922
|
+
--tw-placeholder-opacity: 1;
|
1923
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1924
|
+
}
|
1925
|
+
|
1926
|
+
.selectize-input {
|
1927
|
+
--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
1928
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1929
|
+
}
|
1930
|
+
|
1931
|
+
.selectize-input:focus {
|
1932
|
+
outline: 2px solid transparent;
|
1933
|
+
outline-offset: 2px;
|
1934
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
1935
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
1936
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
1937
|
+
}
|
1938
|
+
|
1939
|
+
.selectize-input {
|
1940
|
+
transition-property: all;
|
1941
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1942
|
+
transition-duration: 150ms;
|
1943
|
+
transition-duration: 150ms;
|
1944
|
+
transition-timing-function: linear;
|
1945
|
+
}
|
1946
|
+
|
1947
|
+
.selectize-input input {
|
1948
|
+
padding-left: 0px;
|
1949
|
+
padding-right: 0px;
|
1950
|
+
padding-top: 0px;
|
1951
|
+
padding-bottom: 0px;
|
1952
|
+
--tw-shadow: 0 0 #0000;
|
1953
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1954
|
+
}
|
1955
|
+
|
1956
|
+
.selectize-input input:focus {
|
1957
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
1958
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
1959
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
1960
|
+
}
|
1961
|
+
|
1962
|
+
.selectize-input input {
|
1963
|
+
transition-property: none;
|
1964
|
+
}
|
1965
|
+
|
1966
|
+
.selectize-input .item {
|
1967
|
+
display: inline-block;
|
1968
|
+
}
|
1969
|
+
|
1970
|
+
.selectize-dropdown {
|
1971
|
+
width: 100%;
|
1972
|
+
border-radius: 0.25rem;
|
1973
|
+
border-width: 0px;
|
1974
|
+
--tw-bg-opacity: 1;
|
1975
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
1976
|
+
padding-left: 0.75rem;
|
1977
|
+
padding-right: 0.75rem;
|
1978
|
+
padding-top: 0.75rem;
|
1979
|
+
padding-bottom: 0.75rem;
|
1980
|
+
font-size: 0.875rem;
|
1981
|
+
line-height: 1.25rem;
|
1982
|
+
--tw-text-opacity: 1;
|
1983
|
+
color: rgba(71, 85, 105, var(--tw-text-opacity));
|
1984
|
+
}
|
1985
|
+
|
1986
|
+
.selectize-dropdown::-moz-placeholder {
|
1987
|
+
--tw-placeholder-opacity: 1;
|
1988
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1989
|
+
}
|
1990
|
+
|
1991
|
+
.selectize-dropdown:-ms-input-placeholder {
|
1992
|
+
--tw-placeholder-opacity: 1;
|
1993
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1994
|
+
}
|
1995
|
+
|
1996
|
+
.selectize-dropdown::placeholder {
|
1997
|
+
--tw-placeholder-opacity: 1;
|
1998
|
+
color: rgba(203, 213, 225, var(--tw-placeholder-opacity));
|
1999
|
+
}
|
2000
|
+
|
2001
|
+
.selectize-dropdown {
|
2002
|
+
--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
2003
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
2004
|
+
}
|
2005
|
+
|
2006
|
+
.selectize-dropdown:focus {
|
2007
|
+
outline: 2px solid transparent;
|
2008
|
+
outline-offset: 2px;
|
2009
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2010
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2011
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
2012
|
+
}
|
2013
|
+
|
2014
|
+
.selectize-dropdown {
|
2015
|
+
transition-property: all;
|
2016
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
2017
|
+
transition-duration: 150ms;
|
2018
|
+
transition-duration: 150ms;
|
2019
|
+
transition-timing-function: linear;
|
2020
|
+
}
|
2021
|
+
|
2022
|
+
.selectize-dropdown-content .option {
|
2023
|
+
padding-left: 0.5rem;
|
2024
|
+
padding-right: 0.5rem;
|
2025
|
+
padding-top: 0.25rem;
|
2026
|
+
padding-bottom: 0.25rem;
|
2027
|
+
}
|
2028
|
+
|
2029
|
+
.selectize-dropdown-content .active {
|
2030
|
+
--tw-bg-opacity: 1;
|
2031
|
+
background-color: rgba(244, 244, 245, var(--tw-bg-opacity));
|
2032
|
+
}
|
2033
|
+
|
2034
|
+
@media (min-width: 640px) {
|
2035
|
+
}
|
2036
|
+
|
2037
|
+
@media (min-width: 768px) {
|
2038
|
+
.md\:max-w-4xl {
|
2039
|
+
max-width: 56rem;
|
2040
|
+
}
|
2041
|
+
|
2042
|
+
.md\:grid-cols-2 {
|
2043
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
2044
|
+
}
|
2045
|
+
}
|
2046
|
+
|
2047
|
+
@media (min-width: 1024px) {
|
2048
|
+
}
|
2049
|
+
|
2050
|
+
@media (min-width: 1280px) {
|
2051
|
+
}
|
2052
|
+
|
2053
|
+
@media (min-width: 1536px) {
|
2054
|
+
}
|