@mastors/core 1.1.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -121
- package/dist/mastors-core.css +62 -1615
- package/dist/mastors-core.css.map +1 -1
- package/package.json +6 -8
- package/scss/abstracts/_maps.scss +9 -0
- package/scss/accessibility/_index.scss +0 -1
- package/scss/accessibility/_screen-reader.scss +1 -4
- package/scss/api/_index.scss +0 -1
- package/scss/base/_reset.scss +1 -1
- package/scss/config/_flags.scss +9 -9
- package/scss/functions/_color.scss +15 -32
- package/scss/functions/_em.scss +2 -2
- package/scss/functions/_index.scss +0 -6
- package/scss/functions/_math.scss +0 -19
- package/scss/functions/_string.scss +0 -35
- package/scss/generators/_class-generator.scss +42 -31
- package/scss/generators/_responsive-generator.scss +4 -0
- package/scss/helpers/_visually-hidden.scss +14 -27
- package/scss/mixins/_breakpoint.scss +3 -3
- package/scss/mixins/_transition.scss +1 -1
- package/scss/responsive/_engine.scss +5 -3
- package/scss/responsive/_fluid-type.scss +9 -8
- package/scss/semantic/_colors.scss +15 -15
- package/scss/semantic/_spacing.scss +5 -5
- package/scss/semantic/_typography.scss +5 -5
- package/scss/themes/_base-theme.scss +5 -0
- package/scss/themes/_dark.scss +7 -8
- package/scss/tokens/_color.scss +4 -8
- package/scss/tokens/_shadows.scss +9 -7
- package/scss/tokens/_sizing.scss +6 -3
- package/scss/tokens/_typography.scss +10 -9
- package/scss/utilities/_borders.scss +6 -4
- package/scss/utilities/_colors.scss +1 -1
- package/scss/utilities/_index.scss +0 -4
- package/scss/utilities/_sizing.scss +2 -2
- package/scss/variables/_global.scss +4 -4
- package/scss/variables/_grid.scss +3 -3
- package/scss/vendors/_index.scss +2 -0
- package/src/index.ts +11 -0
- package/src/tokens.ts +314 -0
- package/src/types.ts +52 -0
- package/postinstall.js +0 -41
- package/scripts/generate-tokens.js +0 -259
- package/scss/accessibility/_print.scss +0 -52
- package/scss/config/_index.scss +0 -12
- package/scss/functions/_vars.scss +0 -49
- package/scss/utilities/_animation.scss +0 -125
- package/scss/utilities/_interaction.scss +0 -156
- package/scss/utilities/_layout.scss +0 -162
- package/scss/utilities/_typography.scss +0 -163
package/dist/mastors-core.css
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
html {
|
|
11
|
-
text-size-adjust: 100%;
|
|
11
|
+
-webkit-text-size-adjust: 100%;
|
|
12
12
|
tab-size: 4;
|
|
13
13
|
scroll-behavior: smooth;
|
|
14
14
|
}
|
|
@@ -121,8 +121,8 @@ button, [role=button] {
|
|
|
121
121
|
--mastors-color-info-800: #155e75;
|
|
122
122
|
--mastors-color-info-900: #164e63;
|
|
123
123
|
--mastors-color-info-950: #083344;
|
|
124
|
-
--mastors-color-white: #
|
|
125
|
-
--mastors-color-black: #
|
|
124
|
+
--mastors-color-white: #ffffff;
|
|
125
|
+
--mastors-color-black: #000000;
|
|
126
126
|
--mastors-color-transparent: transparent;
|
|
127
127
|
--mastors-spacing-0: 0px;
|
|
128
128
|
--mastors-spacing-px: 1px;
|
|
@@ -189,7 +189,7 @@ button, [role=button] {
|
|
|
189
189
|
--mastors-leading-loose: 2;
|
|
190
190
|
--mastors-tracking-tighter: -0.05em;
|
|
191
191
|
--mastors-tracking-tight: -0.025em;
|
|
192
|
-
--mastors-tracking-normal:
|
|
192
|
+
--mastors-tracking-normal: 0em;
|
|
193
193
|
--mastors-tracking-wide: 0.025em;
|
|
194
194
|
--mastors-tracking-wider: 0.05em;
|
|
195
195
|
--mastors-tracking-widest: 0.1em;
|
|
@@ -301,32 +301,31 @@ small {
|
|
|
301
301
|
}
|
|
302
302
|
|
|
303
303
|
code, kbd, samp, pre {
|
|
304
|
-
font-family: ui-monospace,
|
|
304
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
305
305
|
font-size: 0.875rem;
|
|
306
306
|
}
|
|
307
307
|
|
|
308
308
|
:root,
|
|
309
309
|
[data-theme=light],
|
|
310
310
|
.light {
|
|
311
|
-
--mastors-bg: #
|
|
311
|
+
--mastors-bg: #ffffff;
|
|
312
312
|
--mastors-bg-subtle: #f9fafb;
|
|
313
|
-
--mastors-surface: #
|
|
313
|
+
--mastors-surface: #ffffff;
|
|
314
314
|
--mastors-surface-raised: #f9fafb;
|
|
315
315
|
--mastors-surface-overlay: #f3f4f6;
|
|
316
316
|
--mastors-text: #111827;
|
|
317
317
|
--mastors-text-muted: #6b7280;
|
|
318
318
|
--mastors-text-subtle: #9ca3af;
|
|
319
|
-
--mastors-text-inverse: #
|
|
319
|
+
--mastors-text-inverse: #ffffff;
|
|
320
320
|
--mastors-border: #e5e7eb;
|
|
321
321
|
--mastors-border-strong: #9ca3af;
|
|
322
322
|
--mastors-accent: #2563eb;
|
|
323
323
|
--mastors-accent-hover: #1d4ed8;
|
|
324
324
|
--mastors-accent-subtle: #eff6ff;
|
|
325
|
-
--mastors-accent-text: #
|
|
325
|
+
--mastors-accent-text: #ffffff;
|
|
326
326
|
}
|
|
327
327
|
|
|
328
|
-
[data-theme=dark],
|
|
329
|
-
.dark {
|
|
328
|
+
[data-theme=dark], .dark {
|
|
330
329
|
--mastors-bg: #030712;
|
|
331
330
|
--mastors-bg-subtle: #111827;
|
|
332
331
|
--mastors-surface: #111827;
|
|
@@ -366,52 +365,17 @@ code, kbd, samp, pre {
|
|
|
366
365
|
clear: both;
|
|
367
366
|
}
|
|
368
367
|
|
|
369
|
-
.
|
|
370
|
-
position: absolute;
|
|
371
|
-
width: 1px;
|
|
372
|
-
height: 1px;
|
|
373
|
-
padding: 0;
|
|
374
|
-
margin: -1px;
|
|
375
|
-
overflow: hidden;
|
|
376
|
-
clip: rect(0, 0, 0, 0);
|
|
377
|
-
white-space: nowrap;
|
|
378
|
-
border-width: 0;
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
.not-sr-only {
|
|
382
|
-
position: static;
|
|
383
|
-
width: auto;
|
|
384
|
-
height: auto;
|
|
385
|
-
padding: 0;
|
|
386
|
-
margin: 0;
|
|
387
|
-
overflow: visible;
|
|
388
|
-
clip: auto;
|
|
389
|
-
white-space: normal;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
.visually-hidden,
|
|
368
|
+
.visually-hidden-focusable:not(:focus):not(:focus-within), .visually-hidden,
|
|
393
369
|
.vh {
|
|
394
|
-
position: absolute;
|
|
395
|
-
width: 1px;
|
|
396
|
-
height: 1px;
|
|
397
|
-
padding: 0;
|
|
398
|
-
margin: -1px;
|
|
399
|
-
overflow: hidden;
|
|
400
|
-
clip: rect(0, 0, 0, 0);
|
|
401
|
-
white-space: nowrap;
|
|
402
|
-
border
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
.visually-hidden-focusable:not(:focus):not(:focus-within) {
|
|
406
|
-
position: absolute;
|
|
407
|
-
width: 1px;
|
|
408
|
-
height: 1px;
|
|
409
|
-
padding: 0;
|
|
410
|
-
margin: -1px;
|
|
411
|
-
overflow: hidden;
|
|
412
|
-
clip: rect(0, 0, 0, 0);
|
|
413
|
-
white-space: nowrap;
|
|
414
|
-
border-width: 0;
|
|
370
|
+
position: absolute !important;
|
|
371
|
+
width: 1px !important;
|
|
372
|
+
height: 1px !important;
|
|
373
|
+
padding: 0 !important;
|
|
374
|
+
margin: -1px !important;
|
|
375
|
+
overflow: hidden !important;
|
|
376
|
+
clip: rect(0, 0, 0, 0) !important;
|
|
377
|
+
white-space: nowrap !important;
|
|
378
|
+
border: 0 !important;
|
|
415
379
|
}
|
|
416
380
|
|
|
417
381
|
.truncate {
|
|
@@ -547,44 +511,6 @@ code, kbd, samp, pre {
|
|
|
547
511
|
display: none;
|
|
548
512
|
}
|
|
549
513
|
|
|
550
|
-
@media (min-width: 0px) {
|
|
551
|
-
.xs\:block {
|
|
552
|
-
display: block;
|
|
553
|
-
}
|
|
554
|
-
.xs\:inline-block {
|
|
555
|
-
display: inline-block;
|
|
556
|
-
}
|
|
557
|
-
.xs\:inline {
|
|
558
|
-
display: inline;
|
|
559
|
-
}
|
|
560
|
-
.xs\:flex {
|
|
561
|
-
display: flex;
|
|
562
|
-
}
|
|
563
|
-
.xs\:inline-flex {
|
|
564
|
-
display: inline-flex;
|
|
565
|
-
}
|
|
566
|
-
.xs\:grid {
|
|
567
|
-
display: grid;
|
|
568
|
-
}
|
|
569
|
-
.xs\:inline-grid {
|
|
570
|
-
display: inline-grid;
|
|
571
|
-
}
|
|
572
|
-
.xs\:table {
|
|
573
|
-
display: table;
|
|
574
|
-
}
|
|
575
|
-
.xs\:table-cell {
|
|
576
|
-
display: table-cell;
|
|
577
|
-
}
|
|
578
|
-
.xs\:table-row {
|
|
579
|
-
display: table-row;
|
|
580
|
-
}
|
|
581
|
-
.xs\:contents {
|
|
582
|
-
display: contents;
|
|
583
|
-
}
|
|
584
|
-
.xs\:hidden {
|
|
585
|
-
display: none;
|
|
586
|
-
}
|
|
587
|
-
}
|
|
588
514
|
@media (min-width: 640px) {
|
|
589
515
|
.sm\:block {
|
|
590
516
|
display: block;
|
|
@@ -795,23 +721,6 @@ code, kbd, samp, pre {
|
|
|
795
721
|
position: sticky;
|
|
796
722
|
}
|
|
797
723
|
|
|
798
|
-
@media (min-width: 0px) {
|
|
799
|
-
.xs\:static {
|
|
800
|
-
position: static;
|
|
801
|
-
}
|
|
802
|
-
.xs\:relative {
|
|
803
|
-
position: relative;
|
|
804
|
-
}
|
|
805
|
-
.xs\:absolute {
|
|
806
|
-
position: absolute;
|
|
807
|
-
}
|
|
808
|
-
.xs\:fixed {
|
|
809
|
-
position: fixed;
|
|
810
|
-
}
|
|
811
|
-
.xs\:sticky {
|
|
812
|
-
position: sticky;
|
|
813
|
-
}
|
|
814
|
-
}
|
|
815
724
|
@media (min-width: 640px) {
|
|
816
725
|
.sm\:static {
|
|
817
726
|
position: static;
|
|
@@ -4180,7 +4089,7 @@ code, kbd, samp, pre {
|
|
|
4180
4089
|
}
|
|
4181
4090
|
|
|
4182
4091
|
.w-0 {
|
|
4183
|
-
width:
|
|
4092
|
+
width: 0px;
|
|
4184
4093
|
}
|
|
4185
4094
|
|
|
4186
4095
|
.w-px {
|
|
@@ -4256,11 +4165,11 @@ code, kbd, samp, pre {
|
|
|
4256
4165
|
}
|
|
4257
4166
|
|
|
4258
4167
|
.w-1\/3 {
|
|
4259
|
-
width: 33.
|
|
4168
|
+
width: 33.333333%;
|
|
4260
4169
|
}
|
|
4261
4170
|
|
|
4262
4171
|
.w-2\/3 {
|
|
4263
|
-
width: 66.
|
|
4172
|
+
width: 66.666667%;
|
|
4264
4173
|
}
|
|
4265
4174
|
|
|
4266
4175
|
.w-1\/4 {
|
|
@@ -4320,7 +4229,7 @@ code, kbd, samp, pre {
|
|
|
4320
4229
|
}
|
|
4321
4230
|
|
|
4322
4231
|
.h-0 {
|
|
4323
|
-
height:
|
|
4232
|
+
height: 0px;
|
|
4324
4233
|
}
|
|
4325
4234
|
|
|
4326
4235
|
.h-px {
|
|
@@ -4396,11 +4305,11 @@ code, kbd, samp, pre {
|
|
|
4396
4305
|
}
|
|
4397
4306
|
|
|
4398
4307
|
.h-1\/3 {
|
|
4399
|
-
height: 33.
|
|
4308
|
+
height: 33.333333%;
|
|
4400
4309
|
}
|
|
4401
4310
|
|
|
4402
4311
|
.h-2\/3 {
|
|
4403
|
-
height: 66.
|
|
4312
|
+
height: 66.666667%;
|
|
4404
4313
|
}
|
|
4405
4314
|
|
|
4406
4315
|
.h-1\/4 {
|
|
@@ -4460,7 +4369,7 @@ code, kbd, samp, pre {
|
|
|
4460
4369
|
}
|
|
4461
4370
|
|
|
4462
4371
|
.min-w-0 {
|
|
4463
|
-
min-width:
|
|
4372
|
+
min-width: 0px;
|
|
4464
4373
|
}
|
|
4465
4374
|
|
|
4466
4375
|
.min-w-full {
|
|
@@ -4504,7 +4413,7 @@ code, kbd, samp, pre {
|
|
|
4504
4413
|
}
|
|
4505
4414
|
|
|
4506
4415
|
.min-h-0 {
|
|
4507
|
-
min-height:
|
|
4416
|
+
min-height: 0px;
|
|
4508
4417
|
}
|
|
4509
4418
|
|
|
4510
4419
|
.min-h-full {
|
|
@@ -4820,11 +4729,11 @@ code, kbd, samp, pre {
|
|
|
4820
4729
|
}
|
|
4821
4730
|
|
|
4822
4731
|
.text-white {
|
|
4823
|
-
color: #
|
|
4732
|
+
color: #ffffff;
|
|
4824
4733
|
}
|
|
4825
4734
|
|
|
4826
4735
|
.text-black {
|
|
4827
|
-
color: #
|
|
4736
|
+
color: #000000;
|
|
4828
4737
|
}
|
|
4829
4738
|
|
|
4830
4739
|
.text-current {
|
|
@@ -5116,11 +5025,11 @@ code, kbd, samp, pre {
|
|
|
5116
5025
|
}
|
|
5117
5026
|
|
|
5118
5027
|
.bg-white {
|
|
5119
|
-
background-color: #
|
|
5028
|
+
background-color: #ffffff;
|
|
5120
5029
|
}
|
|
5121
5030
|
|
|
5122
5031
|
.bg-black {
|
|
5123
|
-
background-color: #
|
|
5032
|
+
background-color: #000000;
|
|
5124
5033
|
}
|
|
5125
5034
|
|
|
5126
5035
|
.bg-transparent {
|
|
@@ -5915,1505 +5824,43 @@ code, kbd, samp, pre {
|
|
|
5915
5824
|
transform-origin: left;
|
|
5916
5825
|
}
|
|
5917
5826
|
|
|
5918
|
-
|
|
5919
|
-
|
|
5920
|
-
|
|
5921
|
-
|
|
5922
|
-
.text-center {
|
|
5923
|
-
text-align: center;
|
|
5924
|
-
}
|
|
5925
|
-
|
|
5926
|
-
.text-right {
|
|
5927
|
-
text-align: right;
|
|
5928
|
-
}
|
|
5929
|
-
|
|
5930
|
-
.text-justify {
|
|
5931
|
-
text-align: justify;
|
|
5932
|
-
}
|
|
5933
|
-
|
|
5934
|
-
.text-start {
|
|
5935
|
-
text-align: start;
|
|
5827
|
+
:focus-visible {
|
|
5828
|
+
outline: 2px solid var(--mastors-color-primary-500, #3b82f6);
|
|
5829
|
+
outline-offset: 2px;
|
|
5830
|
+
border-radius: 2px;
|
|
5936
5831
|
}
|
|
5937
5832
|
|
|
5938
|
-
|
|
5939
|
-
|
|
5833
|
+
:focus:not(:focus-visible) {
|
|
5834
|
+
outline: none;
|
|
5940
5835
|
}
|
|
5941
5836
|
|
|
5942
|
-
@media (
|
|
5943
|
-
|
|
5944
|
-
|
|
5945
|
-
|
|
5946
|
-
|
|
5947
|
-
|
|
5948
|
-
}
|
|
5949
|
-
.xs\:text-right {
|
|
5950
|
-
text-align: right;
|
|
5951
|
-
}
|
|
5952
|
-
.xs\:text-justify {
|
|
5953
|
-
text-align: justify;
|
|
5954
|
-
}
|
|
5955
|
-
.xs\:text-start {
|
|
5956
|
-
text-align: start;
|
|
5957
|
-
}
|
|
5958
|
-
.xs\:text-end {
|
|
5959
|
-
text-align: end;
|
|
5960
|
-
}
|
|
5961
|
-
}
|
|
5962
|
-
@media (min-width: 640px) {
|
|
5963
|
-
.sm\:text-left {
|
|
5964
|
-
text-align: left;
|
|
5965
|
-
}
|
|
5966
|
-
.sm\:text-center {
|
|
5967
|
-
text-align: center;
|
|
5968
|
-
}
|
|
5969
|
-
.sm\:text-right {
|
|
5970
|
-
text-align: right;
|
|
5971
|
-
}
|
|
5972
|
-
.sm\:text-justify {
|
|
5973
|
-
text-align: justify;
|
|
5974
|
-
}
|
|
5975
|
-
.sm\:text-start {
|
|
5976
|
-
text-align: start;
|
|
5977
|
-
}
|
|
5978
|
-
.sm\:text-end {
|
|
5979
|
-
text-align: end;
|
|
5980
|
-
}
|
|
5981
|
-
}
|
|
5982
|
-
@media (min-width: 768px) {
|
|
5983
|
-
.md\:text-left {
|
|
5984
|
-
text-align: left;
|
|
5985
|
-
}
|
|
5986
|
-
.md\:text-center {
|
|
5987
|
-
text-align: center;
|
|
5988
|
-
}
|
|
5989
|
-
.md\:text-right {
|
|
5990
|
-
text-align: right;
|
|
5991
|
-
}
|
|
5992
|
-
.md\:text-justify {
|
|
5993
|
-
text-align: justify;
|
|
5994
|
-
}
|
|
5995
|
-
.md\:text-start {
|
|
5996
|
-
text-align: start;
|
|
5997
|
-
}
|
|
5998
|
-
.md\:text-end {
|
|
5999
|
-
text-align: end;
|
|
6000
|
-
}
|
|
6001
|
-
}
|
|
6002
|
-
@media (min-width: 1024px) {
|
|
6003
|
-
.lg\:text-left {
|
|
6004
|
-
text-align: left;
|
|
6005
|
-
}
|
|
6006
|
-
.lg\:text-center {
|
|
6007
|
-
text-align: center;
|
|
6008
|
-
}
|
|
6009
|
-
.lg\:text-right {
|
|
6010
|
-
text-align: right;
|
|
6011
|
-
}
|
|
6012
|
-
.lg\:text-justify {
|
|
6013
|
-
text-align: justify;
|
|
6014
|
-
}
|
|
6015
|
-
.lg\:text-start {
|
|
6016
|
-
text-align: start;
|
|
6017
|
-
}
|
|
6018
|
-
.lg\:text-end {
|
|
6019
|
-
text-align: end;
|
|
6020
|
-
}
|
|
6021
|
-
}
|
|
6022
|
-
@media (min-width: 1280px) {
|
|
6023
|
-
.xl\:text-left {
|
|
6024
|
-
text-align: left;
|
|
6025
|
-
}
|
|
6026
|
-
.xl\:text-center {
|
|
6027
|
-
text-align: center;
|
|
6028
|
-
}
|
|
6029
|
-
.xl\:text-right {
|
|
6030
|
-
text-align: right;
|
|
6031
|
-
}
|
|
6032
|
-
.xl\:text-justify {
|
|
6033
|
-
text-align: justify;
|
|
6034
|
-
}
|
|
6035
|
-
.xl\:text-start {
|
|
6036
|
-
text-align: start;
|
|
6037
|
-
}
|
|
6038
|
-
.xl\:text-end {
|
|
6039
|
-
text-align: end;
|
|
6040
|
-
}
|
|
6041
|
-
}
|
|
6042
|
-
@media (min-width: 1536px) {
|
|
6043
|
-
.\32 xl\:text-left {
|
|
6044
|
-
text-align: left;
|
|
6045
|
-
}
|
|
6046
|
-
.\32 xl\:text-center {
|
|
6047
|
-
text-align: center;
|
|
6048
|
-
}
|
|
6049
|
-
.\32 xl\:text-right {
|
|
6050
|
-
text-align: right;
|
|
6051
|
-
}
|
|
6052
|
-
.\32 xl\:text-justify {
|
|
6053
|
-
text-align: justify;
|
|
6054
|
-
}
|
|
6055
|
-
.\32 xl\:text-start {
|
|
6056
|
-
text-align: start;
|
|
6057
|
-
}
|
|
6058
|
-
.\32 xl\:text-end {
|
|
6059
|
-
text-align: end;
|
|
5837
|
+
@media (prefers-reduced-motion: reduce) {
|
|
5838
|
+
*, *::before, *::after {
|
|
5839
|
+
animation-duration: 0.01ms !important;
|
|
5840
|
+
animation-iteration-count: 1 !important;
|
|
5841
|
+
transition-duration: 0.01ms !important;
|
|
5842
|
+
scroll-behavior: auto !important;
|
|
6060
5843
|
}
|
|
6061
5844
|
}
|
|
6062
|
-
.
|
|
6063
|
-
|
|
6064
|
-
|
|
6065
|
-
|
|
6066
|
-
|
|
6067
|
-
|
|
6068
|
-
|
|
6069
|
-
|
|
6070
|
-
|
|
6071
|
-
|
|
6072
|
-
}
|
|
6073
|
-
|
|
6074
|
-
.text-lg {
|
|
6075
|
-
font-size: 1.125rem;
|
|
6076
|
-
}
|
|
6077
|
-
|
|
6078
|
-
.text-xl {
|
|
6079
|
-
font-size: 1.25rem;
|
|
6080
|
-
}
|
|
6081
|
-
|
|
6082
|
-
.text-2xl {
|
|
6083
|
-
font-size: 1.5rem;
|
|
6084
|
-
}
|
|
6085
|
-
|
|
6086
|
-
.text-3xl {
|
|
6087
|
-
font-size: 1.875rem;
|
|
6088
|
-
}
|
|
6089
|
-
|
|
6090
|
-
.text-4xl {
|
|
6091
|
-
font-size: 2.25rem;
|
|
6092
|
-
}
|
|
6093
|
-
|
|
6094
|
-
.text-5xl {
|
|
6095
|
-
font-size: 3rem;
|
|
6096
|
-
}
|
|
6097
|
-
|
|
6098
|
-
.text-6xl {
|
|
6099
|
-
font-size: 3.75rem;
|
|
6100
|
-
}
|
|
6101
|
-
|
|
6102
|
-
.text-7xl {
|
|
6103
|
-
font-size: 4.5rem;
|
|
6104
|
-
}
|
|
6105
|
-
|
|
6106
|
-
.text-8xl {
|
|
6107
|
-
font-size: 6rem;
|
|
6108
|
-
}
|
|
6109
|
-
|
|
6110
|
-
.text-9xl {
|
|
6111
|
-
font-size: 8rem;
|
|
6112
|
-
}
|
|
6113
|
-
|
|
6114
|
-
.font-thin {
|
|
6115
|
-
font-weight: 100;
|
|
6116
|
-
}
|
|
6117
|
-
|
|
6118
|
-
.font-extralight {
|
|
6119
|
-
font-weight: 200;
|
|
6120
|
-
}
|
|
6121
|
-
|
|
6122
|
-
.font-light {
|
|
6123
|
-
font-weight: 300;
|
|
6124
|
-
}
|
|
6125
|
-
|
|
6126
|
-
.font-normal {
|
|
6127
|
-
font-weight: 400;
|
|
6128
|
-
}
|
|
6129
|
-
|
|
6130
|
-
.font-medium {
|
|
6131
|
-
font-weight: 500;
|
|
6132
|
-
}
|
|
6133
|
-
|
|
6134
|
-
.font-semibold {
|
|
6135
|
-
font-weight: 600;
|
|
6136
|
-
}
|
|
6137
|
-
|
|
6138
|
-
.font-bold {
|
|
6139
|
-
font-weight: 700;
|
|
6140
|
-
}
|
|
6141
|
-
|
|
6142
|
-
.font-extrabold {
|
|
6143
|
-
font-weight: 800;
|
|
6144
|
-
}
|
|
6145
|
-
|
|
6146
|
-
.font-black {
|
|
6147
|
-
font-weight: 900;
|
|
6148
|
-
}
|
|
6149
|
-
|
|
6150
|
-
.font-sans {
|
|
6151
|
-
font-family: system-ui, -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", sans-serif;
|
|
6152
|
-
}
|
|
6153
|
-
|
|
6154
|
-
.font-serif {
|
|
6155
|
-
font-family: "Georgia", "Cambria", "Times New Roman", "Times", serif;
|
|
6156
|
-
}
|
|
6157
|
-
|
|
6158
|
-
.font-mono {
|
|
6159
|
-
font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", "Consolas", monospace;
|
|
6160
|
-
}
|
|
6161
|
-
|
|
6162
|
-
.italic {
|
|
6163
|
-
font-style: italic;
|
|
6164
|
-
}
|
|
6165
|
-
|
|
6166
|
-
.not-italic {
|
|
6167
|
-
font-style: normal;
|
|
6168
|
-
}
|
|
6169
|
-
|
|
6170
|
-
.leading-none {
|
|
6171
|
-
line-height: 1;
|
|
6172
|
-
}
|
|
6173
|
-
|
|
6174
|
-
.leading-tight {
|
|
6175
|
-
line-height: 1.25;
|
|
6176
|
-
}
|
|
6177
|
-
|
|
6178
|
-
.leading-snug {
|
|
6179
|
-
line-height: 1.375;
|
|
6180
|
-
}
|
|
6181
|
-
|
|
6182
|
-
.leading-normal {
|
|
6183
|
-
line-height: 1.5;
|
|
6184
|
-
}
|
|
6185
|
-
|
|
6186
|
-
.leading-relaxed {
|
|
6187
|
-
line-height: 1.625;
|
|
6188
|
-
}
|
|
6189
|
-
|
|
6190
|
-
.leading-loose {
|
|
6191
|
-
line-height: 2;
|
|
6192
|
-
}
|
|
6193
|
-
|
|
6194
|
-
.tracking-tighter {
|
|
6195
|
-
letter-spacing: -0.05em;
|
|
6196
|
-
}
|
|
6197
|
-
|
|
6198
|
-
.tracking-tight {
|
|
6199
|
-
letter-spacing: -0.025em;
|
|
6200
|
-
}
|
|
6201
|
-
|
|
6202
|
-
.tracking-normal {
|
|
6203
|
-
letter-spacing: 0;
|
|
6204
|
-
}
|
|
6205
|
-
|
|
6206
|
-
.tracking-wide {
|
|
6207
|
-
letter-spacing: 0.025em;
|
|
6208
|
-
}
|
|
6209
|
-
|
|
6210
|
-
.tracking-wider {
|
|
6211
|
-
letter-spacing: 0.05em;
|
|
6212
|
-
}
|
|
6213
|
-
|
|
6214
|
-
.tracking-widest {
|
|
6215
|
-
letter-spacing: 0.1em;
|
|
6216
|
-
}
|
|
6217
|
-
|
|
6218
|
-
.underline {
|
|
6219
|
-
text-decoration-line: underline;
|
|
6220
|
-
}
|
|
6221
|
-
|
|
6222
|
-
.overline {
|
|
6223
|
-
text-decoration-line: overline;
|
|
6224
|
-
}
|
|
6225
|
-
|
|
6226
|
-
.line-through {
|
|
6227
|
-
text-decoration-line: line-through;
|
|
6228
|
-
}
|
|
6229
|
-
|
|
6230
|
-
.no-underline {
|
|
6231
|
-
text-decoration-line: none;
|
|
6232
|
-
}
|
|
6233
|
-
|
|
6234
|
-
.decoration-solid {
|
|
6235
|
-
text-decoration-style: solid;
|
|
6236
|
-
}
|
|
6237
|
-
|
|
6238
|
-
.decoration-dashed {
|
|
6239
|
-
text-decoration-style: dashed;
|
|
6240
|
-
}
|
|
6241
|
-
|
|
6242
|
-
.decoration-dotted {
|
|
6243
|
-
text-decoration-style: dotted;
|
|
5845
|
+
.sr-only {
|
|
5846
|
+
position: absolute;
|
|
5847
|
+
width: 1px;
|
|
5848
|
+
height: 1px;
|
|
5849
|
+
padding: 0;
|
|
5850
|
+
margin: -1px;
|
|
5851
|
+
overflow: hidden;
|
|
5852
|
+
clip: rect(0, 0, 0, 0);
|
|
5853
|
+
white-space: nowrap;
|
|
5854
|
+
border-width: 0;
|
|
6244
5855
|
}
|
|
6245
5856
|
|
|
6246
|
-
.
|
|
6247
|
-
|
|
6248
|
-
|
|
6249
|
-
|
|
6250
|
-
|
|
6251
|
-
|
|
6252
|
-
|
|
6253
|
-
|
|
6254
|
-
.decoration-auto {
|
|
6255
|
-
text-decoration-thickness: auto;
|
|
6256
|
-
}
|
|
6257
|
-
|
|
6258
|
-
.decoration-1 {
|
|
6259
|
-
text-decoration-thickness: 1px;
|
|
6260
|
-
}
|
|
6261
|
-
|
|
6262
|
-
.decoration-2 {
|
|
6263
|
-
text-decoration-thickness: 2px;
|
|
6264
|
-
}
|
|
6265
|
-
|
|
6266
|
-
.decoration-4 {
|
|
6267
|
-
text-decoration-thickness: 4px;
|
|
6268
|
-
}
|
|
6269
|
-
|
|
6270
|
-
.decoration-8 {
|
|
6271
|
-
text-decoration-thickness: 8px;
|
|
6272
|
-
}
|
|
6273
|
-
|
|
6274
|
-
.uppercase {
|
|
6275
|
-
text-transform: uppercase;
|
|
6276
|
-
}
|
|
6277
|
-
|
|
6278
|
-
.lowercase {
|
|
6279
|
-
text-transform: lowercase;
|
|
6280
|
-
}
|
|
6281
|
-
|
|
6282
|
-
.capitalize {
|
|
6283
|
-
text-transform: capitalize;
|
|
6284
|
-
}
|
|
6285
|
-
|
|
6286
|
-
.normal-case {
|
|
6287
|
-
text-transform: none;
|
|
6288
|
-
}
|
|
6289
|
-
|
|
6290
|
-
.text-ellipsis {
|
|
6291
|
-
text-overflow: ellipsis;
|
|
6292
|
-
}
|
|
6293
|
-
|
|
6294
|
-
.text-clip {
|
|
6295
|
-
text-overflow: clip;
|
|
6296
|
-
}
|
|
6297
|
-
|
|
6298
|
-
.whitespace-normal {
|
|
5857
|
+
.not-sr-only {
|
|
5858
|
+
position: static;
|
|
5859
|
+
width: auto;
|
|
5860
|
+
height: auto;
|
|
5861
|
+
padding: 0;
|
|
5862
|
+
margin: 0;
|
|
5863
|
+
overflow: visible;
|
|
5864
|
+
clip: auto;
|
|
6299
5865
|
white-space: normal;
|
|
6300
|
-
}
|
|
6301
|
-
|
|
6302
|
-
.whitespace-nowrap {
|
|
6303
|
-
white-space: nowrap;
|
|
6304
|
-
}
|
|
6305
|
-
|
|
6306
|
-
.whitespace-pre {
|
|
6307
|
-
white-space: pre;
|
|
6308
|
-
}
|
|
6309
|
-
|
|
6310
|
-
.whitespace-pre-line {
|
|
6311
|
-
white-space: pre-line;
|
|
6312
|
-
}
|
|
6313
|
-
|
|
6314
|
-
.whitespace-pre-wrap {
|
|
6315
|
-
white-space: pre-wrap;
|
|
6316
|
-
}
|
|
6317
|
-
|
|
6318
|
-
.whitespace-break-spaces {
|
|
6319
|
-
white-space: break-spaces;
|
|
6320
|
-
}
|
|
6321
|
-
|
|
6322
|
-
.break-normal {
|
|
6323
|
-
overflow-wrap: normal;
|
|
6324
|
-
word-break: normal;
|
|
6325
|
-
}
|
|
6326
|
-
|
|
6327
|
-
.break-words {
|
|
6328
|
-
overflow-wrap: break-word;
|
|
6329
|
-
}
|
|
6330
|
-
|
|
6331
|
-
.break-all {
|
|
6332
|
-
word-break: break-all;
|
|
6333
|
-
}
|
|
6334
|
-
|
|
6335
|
-
.break-keep {
|
|
6336
|
-
word-break: keep-all;
|
|
6337
|
-
}
|
|
6338
|
-
|
|
6339
|
-
.indent-0 {
|
|
6340
|
-
text-indent: 0;
|
|
6341
|
-
}
|
|
6342
|
-
|
|
6343
|
-
.indent-4 {
|
|
6344
|
-
text-indent: 1rem;
|
|
6345
|
-
}
|
|
6346
|
-
|
|
6347
|
-
.indent-8 {
|
|
6348
|
-
text-indent: 2rem;
|
|
6349
|
-
}
|
|
6350
|
-
|
|
6351
|
-
.align-baseline {
|
|
6352
|
-
vertical-align: baseline;
|
|
6353
|
-
}
|
|
6354
|
-
|
|
6355
|
-
.align-top {
|
|
6356
|
-
vertical-align: top;
|
|
6357
|
-
}
|
|
6358
|
-
|
|
6359
|
-
.align-middle {
|
|
6360
|
-
vertical-align: middle;
|
|
6361
|
-
}
|
|
6362
|
-
|
|
6363
|
-
.align-bottom {
|
|
6364
|
-
vertical-align: bottom;
|
|
6365
|
-
}
|
|
6366
|
-
|
|
6367
|
-
.align-text-top {
|
|
6368
|
-
vertical-align: text-top;
|
|
6369
|
-
}
|
|
6370
|
-
|
|
6371
|
-
.align-text-bottom {
|
|
6372
|
-
vertical-align: text-bottom;
|
|
6373
|
-
}
|
|
6374
|
-
|
|
6375
|
-
.align-sub {
|
|
6376
|
-
vertical-align: sub;
|
|
6377
|
-
}
|
|
6378
|
-
|
|
6379
|
-
.align-super {
|
|
6380
|
-
vertical-align: super;
|
|
6381
|
-
}
|
|
6382
|
-
|
|
6383
|
-
.list-none {
|
|
6384
|
-
list-style-type: none;
|
|
6385
|
-
}
|
|
6386
|
-
|
|
6387
|
-
.list-disc {
|
|
6388
|
-
list-style-type: disc;
|
|
6389
|
-
}
|
|
6390
|
-
|
|
6391
|
-
.list-decimal {
|
|
6392
|
-
list-style-type: decimal;
|
|
6393
|
-
}
|
|
6394
|
-
|
|
6395
|
-
.list-inside {
|
|
6396
|
-
list-style-position: inside;
|
|
6397
|
-
}
|
|
6398
|
-
|
|
6399
|
-
.list-outside {
|
|
6400
|
-
list-style-position: outside;
|
|
6401
|
-
}
|
|
6402
|
-
|
|
6403
|
-
.antialiased {
|
|
6404
|
-
-webkit-font-smoothing: antialiased;
|
|
6405
|
-
-moz-osx-font-smoothing: grayscale;
|
|
6406
|
-
}
|
|
6407
|
-
|
|
6408
|
-
.subpixel-antialiased {
|
|
6409
|
-
-webkit-font-smoothing: auto;
|
|
6410
|
-
-moz-osx-font-smoothing: auto;
|
|
6411
|
-
}
|
|
6412
|
-
|
|
6413
|
-
.aspect-auto {
|
|
6414
|
-
aspect-ratio: auto;
|
|
6415
|
-
}
|
|
6416
|
-
|
|
6417
|
-
.aspect-square {
|
|
6418
|
-
aspect-ratio: 1;
|
|
6419
|
-
}
|
|
6420
|
-
|
|
6421
|
-
.aspect-video {
|
|
6422
|
-
aspect-ratio: 1.7777777778;
|
|
6423
|
-
}
|
|
6424
|
-
|
|
6425
|
-
.aspect-4-3 {
|
|
6426
|
-
aspect-ratio: 1.3333333333;
|
|
6427
|
-
}
|
|
6428
|
-
|
|
6429
|
-
.aspect-3-2 {
|
|
6430
|
-
aspect-ratio: 1.5;
|
|
6431
|
-
}
|
|
6432
|
-
|
|
6433
|
-
.aspect-21-9 {
|
|
6434
|
-
aspect-ratio: 2.3333333333;
|
|
6435
|
-
}
|
|
6436
|
-
|
|
6437
|
-
.aspect-9-16 {
|
|
6438
|
-
aspect-ratio: 0.5625;
|
|
6439
|
-
}
|
|
6440
|
-
|
|
6441
|
-
.aspect-golden {
|
|
6442
|
-
aspect-ratio: 1.618;
|
|
6443
|
-
}
|
|
6444
|
-
|
|
6445
|
-
.object-contain {
|
|
6446
|
-
object-fit: contain;
|
|
6447
|
-
}
|
|
6448
|
-
|
|
6449
|
-
.object-cover {
|
|
6450
|
-
object-fit: cover;
|
|
6451
|
-
}
|
|
6452
|
-
|
|
6453
|
-
.object-fill {
|
|
6454
|
-
object-fit: fill;
|
|
6455
|
-
}
|
|
6456
|
-
|
|
6457
|
-
.object-none {
|
|
6458
|
-
object-fit: none;
|
|
6459
|
-
}
|
|
6460
|
-
|
|
6461
|
-
.object-scale-down {
|
|
6462
|
-
object-fit: scale-down;
|
|
6463
|
-
}
|
|
6464
|
-
|
|
6465
|
-
.object-bottom {
|
|
6466
|
-
object-position: bottom;
|
|
6467
|
-
}
|
|
6468
|
-
|
|
6469
|
-
.object-center {
|
|
6470
|
-
object-position: center;
|
|
6471
|
-
}
|
|
6472
|
-
|
|
6473
|
-
.object-left {
|
|
6474
|
-
object-position: left;
|
|
6475
|
-
}
|
|
6476
|
-
|
|
6477
|
-
.object-left-bottom {
|
|
6478
|
-
object-position: left bottom;
|
|
6479
|
-
}
|
|
6480
|
-
|
|
6481
|
-
.object-left-top {
|
|
6482
|
-
object-position: left top;
|
|
6483
|
-
}
|
|
6484
|
-
|
|
6485
|
-
.object-right {
|
|
6486
|
-
object-position: right;
|
|
6487
|
-
}
|
|
6488
|
-
|
|
6489
|
-
.object-right-bottom {
|
|
6490
|
-
object-position: right bottom;
|
|
6491
|
-
}
|
|
6492
|
-
|
|
6493
|
-
.object-right-top {
|
|
6494
|
-
object-position: right top;
|
|
6495
|
-
}
|
|
6496
|
-
|
|
6497
|
-
.object-top {
|
|
6498
|
-
object-position: top;
|
|
6499
|
-
}
|
|
6500
|
-
|
|
6501
|
-
.float-right {
|
|
6502
|
-
float: right;
|
|
6503
|
-
}
|
|
6504
|
-
|
|
6505
|
-
.float-left {
|
|
6506
|
-
float: left;
|
|
6507
|
-
}
|
|
6508
|
-
|
|
6509
|
-
.float-none {
|
|
6510
|
-
float: none;
|
|
6511
|
-
}
|
|
6512
|
-
|
|
6513
|
-
.float-start {
|
|
6514
|
-
float: inline-start;
|
|
6515
|
-
}
|
|
6516
|
-
|
|
6517
|
-
.float-end {
|
|
6518
|
-
float: inline-end;
|
|
6519
|
-
}
|
|
6520
|
-
|
|
6521
|
-
@media (min-width: 0px) {
|
|
6522
|
-
.xs\:float-right {
|
|
6523
|
-
float: right;
|
|
6524
|
-
}
|
|
6525
|
-
.xs\:float-left {
|
|
6526
|
-
float: left;
|
|
6527
|
-
}
|
|
6528
|
-
.xs\:float-none {
|
|
6529
|
-
float: none;
|
|
6530
|
-
}
|
|
6531
|
-
.xs\:float-start {
|
|
6532
|
-
float: inline-start;
|
|
6533
|
-
}
|
|
6534
|
-
.xs\:float-end {
|
|
6535
|
-
float: inline-end;
|
|
6536
|
-
}
|
|
6537
|
-
}
|
|
6538
|
-
@media (min-width: 640px) {
|
|
6539
|
-
.sm\:float-right {
|
|
6540
|
-
float: right;
|
|
6541
|
-
}
|
|
6542
|
-
.sm\:float-left {
|
|
6543
|
-
float: left;
|
|
6544
|
-
}
|
|
6545
|
-
.sm\:float-none {
|
|
6546
|
-
float: none;
|
|
6547
|
-
}
|
|
6548
|
-
.sm\:float-start {
|
|
6549
|
-
float: inline-start;
|
|
6550
|
-
}
|
|
6551
|
-
.sm\:float-end {
|
|
6552
|
-
float: inline-end;
|
|
6553
|
-
}
|
|
6554
|
-
}
|
|
6555
|
-
@media (min-width: 768px) {
|
|
6556
|
-
.md\:float-right {
|
|
6557
|
-
float: right;
|
|
6558
|
-
}
|
|
6559
|
-
.md\:float-left {
|
|
6560
|
-
float: left;
|
|
6561
|
-
}
|
|
6562
|
-
.md\:float-none {
|
|
6563
|
-
float: none;
|
|
6564
|
-
}
|
|
6565
|
-
.md\:float-start {
|
|
6566
|
-
float: inline-start;
|
|
6567
|
-
}
|
|
6568
|
-
.md\:float-end {
|
|
6569
|
-
float: inline-end;
|
|
6570
|
-
}
|
|
6571
|
-
}
|
|
6572
|
-
@media (min-width: 1024px) {
|
|
6573
|
-
.lg\:float-right {
|
|
6574
|
-
float: right;
|
|
6575
|
-
}
|
|
6576
|
-
.lg\:float-left {
|
|
6577
|
-
float: left;
|
|
6578
|
-
}
|
|
6579
|
-
.lg\:float-none {
|
|
6580
|
-
float: none;
|
|
6581
|
-
}
|
|
6582
|
-
.lg\:float-start {
|
|
6583
|
-
float: inline-start;
|
|
6584
|
-
}
|
|
6585
|
-
.lg\:float-end {
|
|
6586
|
-
float: inline-end;
|
|
6587
|
-
}
|
|
6588
|
-
}
|
|
6589
|
-
@media (min-width: 1280px) {
|
|
6590
|
-
.xl\:float-right {
|
|
6591
|
-
float: right;
|
|
6592
|
-
}
|
|
6593
|
-
.xl\:float-left {
|
|
6594
|
-
float: left;
|
|
6595
|
-
}
|
|
6596
|
-
.xl\:float-none {
|
|
6597
|
-
float: none;
|
|
6598
|
-
}
|
|
6599
|
-
.xl\:float-start {
|
|
6600
|
-
float: inline-start;
|
|
6601
|
-
}
|
|
6602
|
-
.xl\:float-end {
|
|
6603
|
-
float: inline-end;
|
|
6604
|
-
}
|
|
6605
|
-
}
|
|
6606
|
-
@media (min-width: 1536px) {
|
|
6607
|
-
.\32 xl\:float-right {
|
|
6608
|
-
float: right;
|
|
6609
|
-
}
|
|
6610
|
-
.\32 xl\:float-left {
|
|
6611
|
-
float: left;
|
|
6612
|
-
}
|
|
6613
|
-
.\32 xl\:float-none {
|
|
6614
|
-
float: none;
|
|
6615
|
-
}
|
|
6616
|
-
.\32 xl\:float-start {
|
|
6617
|
-
float: inline-start;
|
|
6618
|
-
}
|
|
6619
|
-
.\32 xl\:float-end {
|
|
6620
|
-
float: inline-end;
|
|
6621
|
-
}
|
|
6622
|
-
}
|
|
6623
|
-
.clear-left {
|
|
6624
|
-
clear: left;
|
|
6625
|
-
}
|
|
6626
|
-
|
|
6627
|
-
.clear-right {
|
|
6628
|
-
clear: right;
|
|
6629
|
-
}
|
|
6630
|
-
|
|
6631
|
-
.clear-both {
|
|
6632
|
-
clear: both;
|
|
6633
|
-
}
|
|
6634
|
-
|
|
6635
|
-
.clear-none {
|
|
6636
|
-
clear: none;
|
|
6637
|
-
}
|
|
6638
|
-
|
|
6639
|
-
.clear-start {
|
|
6640
|
-
clear: inline-start;
|
|
6641
|
-
}
|
|
6642
|
-
|
|
6643
|
-
.clear-end {
|
|
6644
|
-
clear: inline-end;
|
|
6645
|
-
}
|
|
6646
|
-
|
|
6647
|
-
.isolate {
|
|
6648
|
-
isolation: isolate;
|
|
6649
|
-
}
|
|
6650
|
-
|
|
6651
|
-
.isolation-auto {
|
|
6652
|
-
isolation: auto;
|
|
6653
|
-
}
|
|
6654
|
-
|
|
6655
|
-
.mix-blend-normal {
|
|
6656
|
-
mix-blend-mode: normal;
|
|
6657
|
-
}
|
|
6658
|
-
|
|
6659
|
-
.mix-blend-multiply {
|
|
6660
|
-
mix-blend-mode: multiply;
|
|
6661
|
-
}
|
|
6662
|
-
|
|
6663
|
-
.mix-blend-screen {
|
|
6664
|
-
mix-blend-mode: screen;
|
|
6665
|
-
}
|
|
6666
|
-
|
|
6667
|
-
.mix-blend-overlay {
|
|
6668
|
-
mix-blend-mode: overlay;
|
|
6669
|
-
}
|
|
6670
|
-
|
|
6671
|
-
.mix-blend-darken {
|
|
6672
|
-
mix-blend-mode: darken;
|
|
6673
|
-
}
|
|
6674
|
-
|
|
6675
|
-
.mix-blend-lighten {
|
|
6676
|
-
mix-blend-mode: lighten;
|
|
6677
|
-
}
|
|
6678
|
-
|
|
6679
|
-
.mix-blend-hard-light {
|
|
6680
|
-
mix-blend-mode: hard-light;
|
|
6681
|
-
}
|
|
6682
|
-
|
|
6683
|
-
.mix-blend-soft-light {
|
|
6684
|
-
mix-blend-mode: soft-light;
|
|
6685
|
-
}
|
|
6686
|
-
|
|
6687
|
-
.mix-blend-difference {
|
|
6688
|
-
mix-blend-mode: difference;
|
|
6689
|
-
}
|
|
6690
|
-
|
|
6691
|
-
.mix-blend-exclusion {
|
|
6692
|
-
mix-blend-mode: exclusion;
|
|
6693
|
-
}
|
|
6694
|
-
|
|
6695
|
-
.mix-blend-hue {
|
|
6696
|
-
mix-blend-mode: hue;
|
|
6697
|
-
}
|
|
6698
|
-
|
|
6699
|
-
.mix-blend-saturation {
|
|
6700
|
-
mix-blend-mode: saturation;
|
|
6701
|
-
}
|
|
6702
|
-
|
|
6703
|
-
.mix-blend-color {
|
|
6704
|
-
mix-blend-mode: color;
|
|
6705
|
-
}
|
|
6706
|
-
|
|
6707
|
-
.mix-blend-luminosity {
|
|
6708
|
-
mix-blend-mode: luminosity;
|
|
6709
|
-
}
|
|
6710
|
-
|
|
6711
|
-
.mix-blend-plus-lighter {
|
|
6712
|
-
mix-blend-mode: plus-lighter;
|
|
6713
|
-
}
|
|
6714
|
-
|
|
6715
|
-
.bg-blend-normal {
|
|
6716
|
-
background-blend-mode: normal;
|
|
6717
|
-
}
|
|
6718
|
-
|
|
6719
|
-
.bg-blend-multiply {
|
|
6720
|
-
background-blend-mode: multiply;
|
|
6721
|
-
}
|
|
6722
|
-
|
|
6723
|
-
.bg-blend-screen {
|
|
6724
|
-
background-blend-mode: screen;
|
|
6725
|
-
}
|
|
6726
|
-
|
|
6727
|
-
.bg-blend-overlay {
|
|
6728
|
-
background-blend-mode: overlay;
|
|
6729
|
-
}
|
|
6730
|
-
|
|
6731
|
-
.bg-blend-darken {
|
|
6732
|
-
background-blend-mode: darken;
|
|
6733
|
-
}
|
|
6734
|
-
|
|
6735
|
-
.bg-blend-lighten {
|
|
6736
|
-
background-blend-mode: lighten;
|
|
6737
|
-
}
|
|
6738
|
-
|
|
6739
|
-
.bg-blend-difference {
|
|
6740
|
-
background-blend-mode: difference;
|
|
6741
|
-
}
|
|
6742
|
-
|
|
6743
|
-
.bg-blend-exclusion {
|
|
6744
|
-
background-blend-mode: exclusion;
|
|
6745
|
-
}
|
|
6746
|
-
|
|
6747
|
-
.bg-blend-color {
|
|
6748
|
-
background-blend-mode: color;
|
|
6749
|
-
}
|
|
6750
|
-
|
|
6751
|
-
.bg-blend-luminosity {
|
|
6752
|
-
background-blend-mode: luminosity;
|
|
6753
|
-
}
|
|
6754
|
-
|
|
6755
|
-
.box-decoration-clone {
|
|
6756
|
-
box-decoration-break: clone;
|
|
6757
|
-
}
|
|
6758
|
-
|
|
6759
|
-
.box-decoration-slice {
|
|
6760
|
-
box-decoration-break: slice;
|
|
6761
|
-
}
|
|
6762
|
-
|
|
6763
|
-
.appearance-none {
|
|
6764
|
-
appearance: none;
|
|
6765
|
-
}
|
|
6766
|
-
|
|
6767
|
-
.appearance-auto {
|
|
6768
|
-
appearance: auto;
|
|
6769
|
-
}
|
|
6770
|
-
|
|
6771
|
-
.will-change-auto {
|
|
6772
|
-
will-change: auto;
|
|
6773
|
-
}
|
|
6774
|
-
|
|
6775
|
-
.will-change-scroll {
|
|
6776
|
-
will-change: scroll-position;
|
|
6777
|
-
}
|
|
6778
|
-
|
|
6779
|
-
.will-change-contents {
|
|
6780
|
-
will-change: contents;
|
|
6781
|
-
}
|
|
6782
|
-
|
|
6783
|
-
.will-change-transform {
|
|
6784
|
-
will-change: transform;
|
|
6785
|
-
}
|
|
6786
|
-
|
|
6787
|
-
.select-none {
|
|
6788
|
-
user-select: none;
|
|
6789
|
-
}
|
|
6790
|
-
|
|
6791
|
-
.select-text {
|
|
6792
|
-
user-select: text;
|
|
6793
|
-
}
|
|
6794
|
-
|
|
6795
|
-
.select-all {
|
|
6796
|
-
user-select: all;
|
|
6797
|
-
}
|
|
6798
|
-
|
|
6799
|
-
.select-auto {
|
|
6800
|
-
user-select: auto;
|
|
6801
|
-
}
|
|
6802
|
-
|
|
6803
|
-
.resize-none {
|
|
6804
|
-
resize: none;
|
|
6805
|
-
}
|
|
6806
|
-
|
|
6807
|
-
.resize-x {
|
|
6808
|
-
resize: horizontal;
|
|
6809
|
-
}
|
|
6810
|
-
|
|
6811
|
-
.resize-y {
|
|
6812
|
-
resize: vertical;
|
|
6813
|
-
}
|
|
6814
|
-
|
|
6815
|
-
.resize- {
|
|
6816
|
-
resize: both;
|
|
6817
|
-
}
|
|
6818
|
-
|
|
6819
|
-
.scroll-auto {
|
|
6820
|
-
scroll-behavior: auto;
|
|
6821
|
-
}
|
|
6822
|
-
|
|
6823
|
-
.scroll-smooth {
|
|
6824
|
-
scroll-behavior: smooth;
|
|
6825
|
-
}
|
|
6826
|
-
|
|
6827
|
-
.snap-none {
|
|
6828
|
-
scroll-snap-type: none;
|
|
6829
|
-
}
|
|
6830
|
-
|
|
6831
|
-
.snap-x {
|
|
6832
|
-
scroll-snap-type: x var(--mastors-snap-strictness, mandatory);
|
|
6833
|
-
}
|
|
6834
|
-
|
|
6835
|
-
.snap-y {
|
|
6836
|
-
scroll-snap-type: y var(--mastors-snap-strictness, mandatory);
|
|
6837
|
-
}
|
|
6838
|
-
|
|
6839
|
-
.snap-both {
|
|
6840
|
-
scroll-snap-type: both var(--mastors-snap-strictness, mandatory);
|
|
6841
|
-
}
|
|
6842
|
-
|
|
6843
|
-
.snap-mandatory {
|
|
6844
|
-
scroll-snap-type: x mandatory;
|
|
6845
|
-
}
|
|
6846
|
-
|
|
6847
|
-
.snap-proximity {
|
|
6848
|
-
scroll-snap-type: x proximity;
|
|
6849
|
-
}
|
|
6850
|
-
|
|
6851
|
-
.snap-start {
|
|
6852
|
-
scroll-snap-align: start;
|
|
6853
|
-
}
|
|
6854
|
-
|
|
6855
|
-
.snap-end {
|
|
6856
|
-
scroll-snap-align: end;
|
|
6857
|
-
}
|
|
6858
|
-
|
|
6859
|
-
.snap-center {
|
|
6860
|
-
scroll-snap-align: center;
|
|
6861
|
-
}
|
|
6862
|
-
|
|
6863
|
-
.snap-align-none {
|
|
6864
|
-
scroll-snap-align: none;
|
|
6865
|
-
}
|
|
6866
|
-
|
|
6867
|
-
.snap-stop-always {
|
|
6868
|
-
scroll-snap-stop: always;
|
|
6869
|
-
}
|
|
6870
|
-
|
|
6871
|
-
.snap-stop-normal {
|
|
6872
|
-
scroll-snap-stop: normal;
|
|
6873
|
-
}
|
|
6874
|
-
|
|
6875
|
-
.scroll-m-0 {
|
|
6876
|
-
scroll-margin: 0px;
|
|
6877
|
-
}
|
|
6878
|
-
|
|
6879
|
-
.scroll-mt-0 {
|
|
6880
|
-
scroll-margin-top: 0px;
|
|
6881
|
-
}
|
|
6882
|
-
|
|
6883
|
-
.scroll-mb-0 {
|
|
6884
|
-
scroll-margin-bottom: 0px;
|
|
6885
|
-
}
|
|
6886
|
-
|
|
6887
|
-
.scroll-p-0 {
|
|
6888
|
-
scroll-padding: 0px;
|
|
6889
|
-
}
|
|
6890
|
-
|
|
6891
|
-
.scroll-pt-0 {
|
|
6892
|
-
scroll-padding-top: 0px;
|
|
6893
|
-
}
|
|
6894
|
-
|
|
6895
|
-
.scroll-pb-0 {
|
|
6896
|
-
scroll-padding-bottom: 0px;
|
|
6897
|
-
}
|
|
6898
|
-
|
|
6899
|
-
.scroll-m-4 {
|
|
6900
|
-
scroll-margin: 1rem;
|
|
6901
|
-
}
|
|
6902
|
-
|
|
6903
|
-
.scroll-mt-4 {
|
|
6904
|
-
scroll-margin-top: 1rem;
|
|
6905
|
-
}
|
|
6906
|
-
|
|
6907
|
-
.scroll-mb-4 {
|
|
6908
|
-
scroll-margin-bottom: 1rem;
|
|
6909
|
-
}
|
|
6910
|
-
|
|
6911
|
-
.scroll-p-4 {
|
|
6912
|
-
scroll-padding: 1rem;
|
|
6913
|
-
}
|
|
6914
|
-
|
|
6915
|
-
.scroll-pt-4 {
|
|
6916
|
-
scroll-padding-top: 1rem;
|
|
6917
|
-
}
|
|
6918
|
-
|
|
6919
|
-
.scroll-pb-4 {
|
|
6920
|
-
scroll-padding-bottom: 1rem;
|
|
6921
|
-
}
|
|
6922
|
-
|
|
6923
|
-
.scroll-m-8 {
|
|
6924
|
-
scroll-margin: 2rem;
|
|
6925
|
-
}
|
|
6926
|
-
|
|
6927
|
-
.scroll-mt-8 {
|
|
6928
|
-
scroll-margin-top: 2rem;
|
|
6929
|
-
}
|
|
6930
|
-
|
|
6931
|
-
.scroll-mb-8 {
|
|
6932
|
-
scroll-margin-bottom: 2rem;
|
|
6933
|
-
}
|
|
6934
|
-
|
|
6935
|
-
.scroll-p-8 {
|
|
6936
|
-
scroll-padding: 2rem;
|
|
6937
|
-
}
|
|
6938
|
-
|
|
6939
|
-
.scroll-pt-8 {
|
|
6940
|
-
scroll-padding-top: 2rem;
|
|
6941
|
-
}
|
|
6942
|
-
|
|
6943
|
-
.scroll-pb-8 {
|
|
6944
|
-
scroll-padding-bottom: 2rem;
|
|
6945
|
-
}
|
|
6946
|
-
|
|
6947
|
-
.scroll-m-16 {
|
|
6948
|
-
scroll-margin: 4rem;
|
|
6949
|
-
}
|
|
6950
|
-
|
|
6951
|
-
.scroll-mt-16 {
|
|
6952
|
-
scroll-margin-top: 4rem;
|
|
6953
|
-
}
|
|
6954
|
-
|
|
6955
|
-
.scroll-mb-16 {
|
|
6956
|
-
scroll-margin-bottom: 4rem;
|
|
6957
|
-
}
|
|
6958
|
-
|
|
6959
|
-
.scroll-p-16 {
|
|
6960
|
-
scroll-padding: 4rem;
|
|
6961
|
-
}
|
|
6962
|
-
|
|
6963
|
-
.scroll-pt-16 {
|
|
6964
|
-
scroll-padding-top: 4rem;
|
|
6965
|
-
}
|
|
6966
|
-
|
|
6967
|
-
.scroll-pb-16 {
|
|
6968
|
-
scroll-padding-bottom: 4rem;
|
|
6969
|
-
}
|
|
6970
|
-
|
|
6971
|
-
.touch-auto {
|
|
6972
|
-
touch-action: auto;
|
|
6973
|
-
}
|
|
6974
|
-
|
|
6975
|
-
.touch-none {
|
|
6976
|
-
touch-action: none;
|
|
6977
|
-
}
|
|
6978
|
-
|
|
6979
|
-
.touch-pan-x {
|
|
6980
|
-
touch-action: pan-x;
|
|
6981
|
-
}
|
|
6982
|
-
|
|
6983
|
-
.touch-pan-y {
|
|
6984
|
-
touch-action: pan-y;
|
|
6985
|
-
}
|
|
6986
|
-
|
|
6987
|
-
.touch-pan-left {
|
|
6988
|
-
touch-action: pan-left;
|
|
6989
|
-
}
|
|
6990
|
-
|
|
6991
|
-
.touch-pan-right {
|
|
6992
|
-
touch-action: pan-right;
|
|
6993
|
-
}
|
|
6994
|
-
|
|
6995
|
-
.touch-pan-up {
|
|
6996
|
-
touch-action: pan-up;
|
|
6997
|
-
}
|
|
6998
|
-
|
|
6999
|
-
.touch-pan-down {
|
|
7000
|
-
touch-action: pan-down;
|
|
7001
|
-
}
|
|
7002
|
-
|
|
7003
|
-
.touch-pinch-zoom {
|
|
7004
|
-
touch-action: pinch-zoom;
|
|
7005
|
-
}
|
|
7006
|
-
|
|
7007
|
-
.touch-manipulation {
|
|
7008
|
-
touch-action: manipulation;
|
|
7009
|
-
}
|
|
7010
|
-
|
|
7011
|
-
.hover\:opacity-0:hover {
|
|
7012
|
-
opacity: 0;
|
|
7013
|
-
}
|
|
7014
|
-
|
|
7015
|
-
.hover\:opacity-50:hover {
|
|
7016
|
-
opacity: 0.5;
|
|
7017
|
-
}
|
|
7018
|
-
|
|
7019
|
-
.hover\:opacity-75:hover {
|
|
7020
|
-
opacity: 0.75;
|
|
7021
|
-
}
|
|
7022
|
-
|
|
7023
|
-
.hover\:opacity-100:hover {
|
|
7024
|
-
opacity: 1;
|
|
7025
|
-
}
|
|
7026
|
-
|
|
7027
|
-
.hover\:bg-accent:hover {
|
|
7028
|
-
background-color: var(--mastors-accent-hover);
|
|
7029
|
-
}
|
|
7030
|
-
|
|
7031
|
-
.hover\:text-accent:hover {
|
|
7032
|
-
color: var(--mastors-accent-hover);
|
|
7033
|
-
}
|
|
7034
|
-
|
|
7035
|
-
.hover\:underline:hover {
|
|
7036
|
-
text-decoration-line: underline;
|
|
7037
|
-
}
|
|
7038
|
-
|
|
7039
|
-
.hover\:no-underline:hover {
|
|
7040
|
-
text-decoration-line: none;
|
|
7041
|
-
}
|
|
7042
|
-
|
|
7043
|
-
.hover\:shadow-lg:hover {
|
|
7044
|
-
box-shadow: var(--mastors-shadow-lg);
|
|
7045
|
-
}
|
|
7046
|
-
|
|
7047
|
-
.hover\:scale-105:hover {
|
|
7048
|
-
transform: scale(1.05);
|
|
7049
|
-
}
|
|
7050
|
-
|
|
7051
|
-
.hover\:scale-110:hover {
|
|
7052
|
-
transform: scale(1.1);
|
|
7053
|
-
}
|
|
7054
|
-
|
|
7055
|
-
.hover\:-translate-y-1:hover {
|
|
7056
|
-
transform: translateY(-0.25rem);
|
|
7057
|
-
}
|
|
7058
|
-
|
|
7059
|
-
.focus\:ring:focus-visible {
|
|
7060
|
-
outline: 2px solid var(--mastors-accent);
|
|
7061
|
-
outline-offset: 2px;
|
|
7062
|
-
}
|
|
7063
|
-
|
|
7064
|
-
.focus\:ring-2:focus-visible {
|
|
7065
|
-
outline: 2px solid var(--mastors-accent);
|
|
7066
|
-
outline-offset: 2px;
|
|
7067
|
-
}
|
|
7068
|
-
|
|
7069
|
-
.focus\:ring-offset-2:focus-visible {
|
|
7070
|
-
outline-offset: 4px;
|
|
7071
|
-
}
|
|
7072
|
-
|
|
7073
|
-
.focus\:ring-none:focus-visible {
|
|
7074
|
-
outline: none;
|
|
7075
|
-
}
|
|
7076
|
-
|
|
7077
|
-
.disabled\:opacity-50:disabled {
|
|
7078
|
-
opacity: 50%;
|
|
7079
|
-
}
|
|
7080
|
-
|
|
7081
|
-
.disabled\:cursor-not-allowed:disabled {
|
|
7082
|
-
cursor: not-allowed;
|
|
7083
|
-
}
|
|
7084
|
-
|
|
7085
|
-
.disabled\:pointer-events-none:disabled {
|
|
7086
|
-
pointer-events: none;
|
|
7087
|
-
}
|
|
7088
|
-
|
|
7089
|
-
.transition-none {
|
|
7090
|
-
transition-property: none;
|
|
7091
|
-
}
|
|
7092
|
-
|
|
7093
|
-
.transition-all {
|
|
7094
|
-
transition-property: all;
|
|
7095
|
-
}
|
|
7096
|
-
|
|
7097
|
-
.transition {
|
|
7098
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
7099
|
-
}
|
|
7100
|
-
|
|
7101
|
-
.transition-colors {
|
|
7102
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
7103
|
-
}
|
|
7104
|
-
|
|
7105
|
-
.transition-opacity {
|
|
7106
|
-
transition-property: opacity;
|
|
7107
|
-
}
|
|
7108
|
-
|
|
7109
|
-
.transition-shadow {
|
|
7110
|
-
transition-property: box-shadow;
|
|
7111
|
-
}
|
|
7112
|
-
|
|
7113
|
-
.transition-transform {
|
|
7114
|
-
transition-property: transform;
|
|
7115
|
-
}
|
|
7116
|
-
|
|
7117
|
-
.duration-75 {
|
|
7118
|
-
transition-duration: 75ms;
|
|
7119
|
-
}
|
|
7120
|
-
|
|
7121
|
-
.duration-100 {
|
|
7122
|
-
transition-duration: 100ms;
|
|
7123
|
-
}
|
|
7124
|
-
|
|
7125
|
-
.duration-150 {
|
|
7126
|
-
transition-duration: 150ms;
|
|
7127
|
-
}
|
|
7128
|
-
|
|
7129
|
-
.duration-200 {
|
|
7130
|
-
transition-duration: 200ms;
|
|
7131
|
-
}
|
|
7132
|
-
|
|
7133
|
-
.duration-300 {
|
|
7134
|
-
transition-duration: 300ms;
|
|
7135
|
-
}
|
|
7136
|
-
|
|
7137
|
-
.duration-500 {
|
|
7138
|
-
transition-duration: 500ms;
|
|
7139
|
-
}
|
|
7140
|
-
|
|
7141
|
-
.duration-700 {
|
|
7142
|
-
transition-duration: 700ms;
|
|
7143
|
-
}
|
|
7144
|
-
|
|
7145
|
-
.duration-1000 {
|
|
7146
|
-
transition-duration: 1000ms;
|
|
7147
|
-
}
|
|
7148
|
-
|
|
7149
|
-
.ease-linear {
|
|
7150
|
-
transition-timing-function: linear;
|
|
7151
|
-
}
|
|
7152
|
-
|
|
7153
|
-
.ease-in {
|
|
7154
|
-
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
7155
|
-
}
|
|
7156
|
-
|
|
7157
|
-
.ease-out {
|
|
7158
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
7159
|
-
}
|
|
7160
|
-
|
|
7161
|
-
.ease-in-out {
|
|
7162
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
7163
|
-
}
|
|
7164
|
-
|
|
7165
|
-
.ease-bounce {
|
|
7166
|
-
transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
7167
|
-
}
|
|
7168
|
-
|
|
7169
|
-
.delay-75 {
|
|
7170
|
-
transition-delay: 75ms;
|
|
7171
|
-
}
|
|
7172
|
-
|
|
7173
|
-
.delay-100 {
|
|
7174
|
-
transition-delay: 100ms;
|
|
7175
|
-
}
|
|
7176
|
-
|
|
7177
|
-
.delay-150 {
|
|
7178
|
-
transition-delay: 150ms;
|
|
7179
|
-
}
|
|
7180
|
-
|
|
7181
|
-
.delay-200 {
|
|
7182
|
-
transition-delay: 200ms;
|
|
7183
|
-
}
|
|
7184
|
-
|
|
7185
|
-
.delay-300 {
|
|
7186
|
-
transition-delay: 300ms;
|
|
7187
|
-
}
|
|
7188
|
-
|
|
7189
|
-
.delay-500 {
|
|
7190
|
-
transition-delay: 500ms;
|
|
7191
|
-
}
|
|
7192
|
-
|
|
7193
|
-
.delay-700 {
|
|
7194
|
-
transition-delay: 700ms;
|
|
7195
|
-
}
|
|
7196
|
-
|
|
7197
|
-
.delay-1000 {
|
|
7198
|
-
transition-delay: 1000ms;
|
|
7199
|
-
}
|
|
7200
|
-
|
|
7201
|
-
.animate-none {
|
|
7202
|
-
animation: none;
|
|
7203
|
-
}
|
|
7204
|
-
|
|
7205
|
-
.animate-spin {
|
|
7206
|
-
animation: mastors-spin 1s linear infinite;
|
|
7207
|
-
}
|
|
7208
|
-
|
|
7209
|
-
.animate-ping {
|
|
7210
|
-
animation: mastors-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
7211
|
-
}
|
|
7212
|
-
|
|
7213
|
-
.animate-pulse {
|
|
7214
|
-
animation: mastors-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
7215
|
-
}
|
|
7216
|
-
|
|
7217
|
-
.animate-bounce {
|
|
7218
|
-
animation: mastors-bounce 1s infinite;
|
|
7219
|
-
}
|
|
7220
|
-
|
|
7221
|
-
.animate-fade-in {
|
|
7222
|
-
animation: mastors-fade-in 0.3s ease-out both;
|
|
7223
|
-
}
|
|
7224
|
-
|
|
7225
|
-
.animate-fade-out {
|
|
7226
|
-
animation: mastors-fade-out 0.3s ease-in both;
|
|
7227
|
-
}
|
|
7228
|
-
|
|
7229
|
-
.animate-slide-up {
|
|
7230
|
-
animation: mastors-slide-up 0.3s ease-out both;
|
|
7231
|
-
}
|
|
7232
|
-
|
|
7233
|
-
.animate-slide-down {
|
|
7234
|
-
animation: mastors-slide-down 0.3s ease-out both;
|
|
7235
|
-
}
|
|
7236
|
-
|
|
7237
|
-
.animate-scale-in {
|
|
7238
|
-
animation: mastors-scale-in 0.2s ease-out both;
|
|
7239
|
-
}
|
|
7240
|
-
|
|
7241
|
-
@keyframes mastors-spin {
|
|
7242
|
-
from {
|
|
7243
|
-
transform: rotate(0deg);
|
|
7244
|
-
}
|
|
7245
|
-
to {
|
|
7246
|
-
transform: rotate(360deg);
|
|
7247
|
-
}
|
|
7248
|
-
}
|
|
7249
|
-
@keyframes mastors-ping {
|
|
7250
|
-
75%, 100% {
|
|
7251
|
-
transform: scale(2);
|
|
7252
|
-
opacity: 0%;
|
|
7253
|
-
}
|
|
7254
|
-
}
|
|
7255
|
-
@keyframes mastors-pulse {
|
|
7256
|
-
0%, 100% {
|
|
7257
|
-
opacity: 100%;
|
|
7258
|
-
}
|
|
7259
|
-
50% {
|
|
7260
|
-
opacity: 50%;
|
|
7261
|
-
}
|
|
7262
|
-
}
|
|
7263
|
-
@keyframes mastors-bounce {
|
|
7264
|
-
0%, 100% {
|
|
7265
|
-
transform: translateY(-25%);
|
|
7266
|
-
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
7267
|
-
}
|
|
7268
|
-
50% {
|
|
7269
|
-
transform: translateY(0);
|
|
7270
|
-
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
7271
|
-
}
|
|
7272
|
-
}
|
|
7273
|
-
@keyframes mastors-fade-in {
|
|
7274
|
-
from {
|
|
7275
|
-
opacity: 0%;
|
|
7276
|
-
}
|
|
7277
|
-
to {
|
|
7278
|
-
opacity: 100%;
|
|
7279
|
-
}
|
|
7280
|
-
}
|
|
7281
|
-
@keyframes mastors-fade-out {
|
|
7282
|
-
from {
|
|
7283
|
-
opacity: 100%;
|
|
7284
|
-
}
|
|
7285
|
-
to {
|
|
7286
|
-
opacity: 0%;
|
|
7287
|
-
}
|
|
7288
|
-
}
|
|
7289
|
-
@keyframes mastors-slide-up {
|
|
7290
|
-
from {
|
|
7291
|
-
opacity: 0%;
|
|
7292
|
-
transform: translateY(0.5rem);
|
|
7293
|
-
}
|
|
7294
|
-
to {
|
|
7295
|
-
opacity: 100%;
|
|
7296
|
-
transform: translateY(0);
|
|
7297
|
-
}
|
|
7298
|
-
}
|
|
7299
|
-
@keyframes mastors-slide-down {
|
|
7300
|
-
from {
|
|
7301
|
-
opacity: 0%;
|
|
7302
|
-
transform: translateY(-0.5rem);
|
|
7303
|
-
}
|
|
7304
|
-
to {
|
|
7305
|
-
opacity: 100%;
|
|
7306
|
-
transform: translateY(0);
|
|
7307
|
-
}
|
|
7308
|
-
}
|
|
7309
|
-
@keyframes mastors-scale-in {
|
|
7310
|
-
from {
|
|
7311
|
-
opacity: 0%;
|
|
7312
|
-
transform: scale(0.95);
|
|
7313
|
-
}
|
|
7314
|
-
to {
|
|
7315
|
-
opacity: 100%;
|
|
7316
|
-
transform: scale(1);
|
|
7317
|
-
}
|
|
7318
|
-
}
|
|
7319
|
-
.fill-none {
|
|
7320
|
-
animation-fill-mode: none;
|
|
7321
|
-
}
|
|
7322
|
-
|
|
7323
|
-
.fill-forwards {
|
|
7324
|
-
animation-fill-mode: forwards;
|
|
7325
|
-
}
|
|
7326
|
-
|
|
7327
|
-
.fill-backwards {
|
|
7328
|
-
animation-fill-mode: backwards;
|
|
7329
|
-
}
|
|
7330
|
-
|
|
7331
|
-
.fill-both {
|
|
7332
|
-
animation-fill-mode: both;
|
|
7333
|
-
}
|
|
7334
|
-
|
|
7335
|
-
.animation-running {
|
|
7336
|
-
animation-play-state: running;
|
|
7337
|
-
}
|
|
7338
|
-
|
|
7339
|
-
.animation-paused {
|
|
7340
|
-
animation-play-state: paused;
|
|
7341
|
-
}
|
|
7342
|
-
|
|
7343
|
-
.animate-repeat-0 {
|
|
7344
|
-
animation-iteration-count: 0;
|
|
7345
|
-
}
|
|
7346
|
-
|
|
7347
|
-
.animate-repeat-1 {
|
|
7348
|
-
animation-iteration-count: 1;
|
|
7349
|
-
}
|
|
7350
|
-
|
|
7351
|
-
.animate-repeat-infinite {
|
|
7352
|
-
animation-iteration-count: infinite;
|
|
7353
|
-
}
|
|
7354
|
-
|
|
7355
|
-
:focus-visible {
|
|
7356
|
-
outline: 2px solid var(--mastors-color-primary-500, #3b82f6);
|
|
7357
|
-
outline-offset: 2px;
|
|
7358
|
-
border-radius: 2px;
|
|
7359
|
-
}
|
|
7360
|
-
|
|
7361
|
-
:focus:not(:focus-visible) {
|
|
7362
|
-
outline: none;
|
|
7363
|
-
}
|
|
7364
|
-
|
|
7365
|
-
@media (prefers-reduced-motion: reduce) {
|
|
7366
|
-
*, *::before, *::after {
|
|
7367
|
-
animation-duration: 0.01ms !important;
|
|
7368
|
-
animation-iteration-count: 1 !important;
|
|
7369
|
-
transition-duration: 0.01ms !important;
|
|
7370
|
-
scroll-behavior: auto !important;
|
|
7371
|
-
}
|
|
7372
|
-
}
|
|
7373
|
-
@media print {
|
|
7374
|
-
.print\:hidden {
|
|
7375
|
-
display: none !important;
|
|
7376
|
-
}
|
|
7377
|
-
}
|
|
7378
|
-
|
|
7379
|
-
@media not print {
|
|
7380
|
-
.screen\:hidden {
|
|
7381
|
-
display: none !important;
|
|
7382
|
-
}
|
|
7383
|
-
}
|
|
7384
|
-
|
|
7385
|
-
@media print {
|
|
7386
|
-
.print\:break-inside-avoid {
|
|
7387
|
-
break-inside: avoid;
|
|
7388
|
-
page-break-inside: avoid;
|
|
7389
|
-
}
|
|
7390
|
-
.print\:break-before {
|
|
7391
|
-
break-before: page;
|
|
7392
|
-
page-break-before: always;
|
|
7393
|
-
}
|
|
7394
|
-
.print\:break-after {
|
|
7395
|
-
break-after: page;
|
|
7396
|
-
page-break-after: always;
|
|
7397
|
-
}
|
|
7398
|
-
.print\:text-black {
|
|
7399
|
-
color: #000 !important;
|
|
7400
|
-
}
|
|
7401
|
-
.print\:bg-white {
|
|
7402
|
-
background: #fff !important;
|
|
7403
|
-
}
|
|
7404
|
-
.print\:border-none {
|
|
7405
|
-
border: none !important;
|
|
7406
|
-
}
|
|
7407
|
-
.print\:shadow-none {
|
|
7408
|
-
box-shadow: none !important;
|
|
7409
|
-
}
|
|
7410
|
-
a[href]::after {
|
|
7411
|
-
content: " (" attr(href) ")";
|
|
7412
|
-
font-size: 0.75em;
|
|
7413
|
-
color: #555;
|
|
7414
|
-
}
|
|
7415
|
-
a[href^="#"]::after,
|
|
7416
|
-
a[href^="javascript:"]::after {
|
|
7417
|
-
content: "";
|
|
7418
|
-
}
|
|
7419
5866
|
}
|