@appartmint/css-mint 0.0.40 → 0.1.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/dist/index.css +1012 -0
- package/dist/index.css.map +1 -0
- package/dist/index.min.css +1 -0
- package/dist/index.min.css.map +1 -0
- package/package.json +6 -2
- package/src/components/form/input/toggle.scss +12 -12
- package/src/util/color.scss +3 -1
package/dist/index.css
ADDED
|
@@ -0,0 +1,1012 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
:root {
|
|
3
|
+
--mint-check-s: 1;
|
|
4
|
+
--mint-check-p: 0.25rem;
|
|
5
|
+
--mint-check-h: 1.5rem;
|
|
6
|
+
--mint-check-bw: 0.125rem;
|
|
7
|
+
--mint-check-fs: 0.5rem;
|
|
8
|
+
--mint-check-br: var(--mint-br);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.mint-toggle.mint-1 {
|
|
12
|
+
--mint-check-s: 1;
|
|
13
|
+
}
|
|
14
|
+
.mint-toggle.mint-2 {
|
|
15
|
+
--mint-check-s: 2;
|
|
16
|
+
}
|
|
17
|
+
.mint-toggle.mint-3 {
|
|
18
|
+
--mint-check-s: 3;
|
|
19
|
+
}
|
|
20
|
+
.mint-toggle.mint-4 {
|
|
21
|
+
--mint-check-s: 4;
|
|
22
|
+
}
|
|
23
|
+
.mint-toggle.mint-5 {
|
|
24
|
+
--mint-check-s: 5;
|
|
25
|
+
}
|
|
26
|
+
.mint-toggle.mint-6 {
|
|
27
|
+
--mint-check-s: 6;
|
|
28
|
+
}
|
|
29
|
+
.mint-toggle.mint-7 {
|
|
30
|
+
--mint-check-s: 7;
|
|
31
|
+
}
|
|
32
|
+
.mint-toggle.mint-8 {
|
|
33
|
+
--mint-check-s: 8;
|
|
34
|
+
}
|
|
35
|
+
.mint-toggle.mint-9 {
|
|
36
|
+
--mint-check-s: 9;
|
|
37
|
+
}
|
|
38
|
+
.mint-toggle.mint-10 {
|
|
39
|
+
--mint-check-s: 10;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.mint-check {
|
|
43
|
+
height: calc((var(--mint-check-h) + var(--mint-check-bw) * 2) * var(--mint-check-s));
|
|
44
|
+
width: calc((var(--mint-check-h) - var(--mint-check-p) + var(--mint-check-bw)) * var(--mint-check-s) * 2);
|
|
45
|
+
border: calc(var(--mint-check-bw) * var(--mint-check-s)) solid var(--mint-brand-2);
|
|
46
|
+
border-radius: calc(var(--mint-check-br) * var(--mint-check-s));
|
|
47
|
+
}
|
|
48
|
+
.mint-check [type=checkbox]:checked + span {
|
|
49
|
+
left: calc(100% - (var(--mint-check-h) - var(--mint-check-p)) * var(--mint-check-s));
|
|
50
|
+
}
|
|
51
|
+
.mint-check [type=checkbox] + span {
|
|
52
|
+
top: calc(var(--mint-check-p) * var(--mint-check-s));
|
|
53
|
+
left: calc(var(--mint-check-p) * var(--mint-check-s));
|
|
54
|
+
transform: translateX(0);
|
|
55
|
+
width: calc((var(--mint-check-h) - var(--mint-check-p) * 2) * var(--mint-check-s));
|
|
56
|
+
height: calc((var(--mint-check-h) - var(--mint-check-p) * 2) * var(--mint-check-s));
|
|
57
|
+
border-radius: calc(var(--mint-check-br) * var(--mint-check-s));
|
|
58
|
+
}
|
|
59
|
+
.mint-check [type=checkbox] + span i {
|
|
60
|
+
font-size: calc(var(--mint-check-fs) * var(--mint-check-s));
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
:root {
|
|
64
|
+
--mint-grid-gap: var(--mint-gap);
|
|
65
|
+
--mint-grid-fit-w: var(--mint-xs);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.mint-grid-fit {
|
|
69
|
+
display: grid;
|
|
70
|
+
grid-template-columns: repeat(minmax(min(var(--mint-grid-fit-w), 100%), 1fr));
|
|
71
|
+
gap: var(--mint-grid-gap);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
:root {
|
|
75
|
+
--mint-btn-pv: calc(var(--mint-gap) * 2);
|
|
76
|
+
--mint-btn-ph: calc(var(--mint-gap) * 4);
|
|
77
|
+
--mint-btn-br: var(--mint-br);
|
|
78
|
+
--mint-btn-bw: var(--mint-bw);
|
|
79
|
+
--mint-btn-bc: var(--mint-brand-4);
|
|
80
|
+
--mint-btn-fg: var(--mint-c-fg);
|
|
81
|
+
--mint-btn-fg-hover: var(--mint-back);
|
|
82
|
+
--mint-btn-fg-alt: var(--mint-btn-bc);
|
|
83
|
+
--mint-btn-fg-alt-hover: var(--mint-btn-fg-hover);
|
|
84
|
+
--mint-btn-bg: var(--mint-brand-2);
|
|
85
|
+
--mint-btn-bg-hover: var(--mint-btn-bc);
|
|
86
|
+
--mint-btn-bg-alt: var(--mint-clear);
|
|
87
|
+
--mint-btn-bg-alt-hover: var(--mint-accent-2);
|
|
88
|
+
--mint-pill-pv: 0;
|
|
89
|
+
--mint-pill-ph: calc(var(--mint-gap) * 3);
|
|
90
|
+
--mint-pill-br: var(--mint-br);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.mint-theme-dark {
|
|
94
|
+
--mint-btn-bg: var(--mint-brand-5);
|
|
95
|
+
--mint-btn-bc: var(--mint-brand-2);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
button,
|
|
99
|
+
a[routerLink] {
|
|
100
|
+
cursor: pointer;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
a,
|
|
104
|
+
button,
|
|
105
|
+
.mint-btn,
|
|
106
|
+
.mint-select,
|
|
107
|
+
.mint-btn-icon,
|
|
108
|
+
.mint-pill {
|
|
109
|
+
font-size: inherit;
|
|
110
|
+
}
|
|
111
|
+
a[disabled],
|
|
112
|
+
button[disabled],
|
|
113
|
+
.mint-btn[disabled],
|
|
114
|
+
[disabled].mint-select,
|
|
115
|
+
.mint-btn-icon[disabled],
|
|
116
|
+
.mint-pill[disabled] {
|
|
117
|
+
filter: grayscale(1) brightness(0.75) !important;
|
|
118
|
+
pointer-events: none !important;
|
|
119
|
+
}
|
|
120
|
+
a[disabled].mint-fall-in:not(.mint-show),
|
|
121
|
+
button[disabled].mint-fall-in:not(.mint-show),
|
|
122
|
+
.mint-btn[disabled].mint-fall-in:not(.mint-show),
|
|
123
|
+
[disabled].mint-fall-in.mint-select:not(.mint-show),
|
|
124
|
+
.mint-btn-icon[disabled].mint-fall-in:not(.mint-show),
|
|
125
|
+
.mint-pill[disabled].mint-fall-in:not(.mint-show) {
|
|
126
|
+
filter: grayscale(1) brightness(0.75) opacity(0%) !important;
|
|
127
|
+
}
|
|
128
|
+
a i:first-child,
|
|
129
|
+
button i:first-child,
|
|
130
|
+
.mint-btn i:first-child,
|
|
131
|
+
.mint-select i:first-child,
|
|
132
|
+
.mint-btn-icon i:first-child,
|
|
133
|
+
.mint-pill i:first-child {
|
|
134
|
+
margin-right: 0.5em;
|
|
135
|
+
}
|
|
136
|
+
a i:last-child,
|
|
137
|
+
button i:last-child,
|
|
138
|
+
.mint-btn i:last-child,
|
|
139
|
+
.mint-select i:last-child,
|
|
140
|
+
.mint-btn-icon i:last-child,
|
|
141
|
+
.mint-pill i:last-child {
|
|
142
|
+
margin-left: 0.5em;
|
|
143
|
+
}
|
|
144
|
+
a i:only-child,
|
|
145
|
+
button i:only-child,
|
|
146
|
+
.mint-btn i:only-child,
|
|
147
|
+
.mint-select i:only-child,
|
|
148
|
+
.mint-btn-icon i:only-child,
|
|
149
|
+
.mint-pill i:only-child {
|
|
150
|
+
margin: 0;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.mint-btn, .mint-select,
|
|
154
|
+
.mint-pill,
|
|
155
|
+
.mint-btn-group,
|
|
156
|
+
.mint-btn-icon {
|
|
157
|
+
flex-shrink: 0;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.mint-btn, .mint-select,
|
|
161
|
+
.mint-btn-group {
|
|
162
|
+
border-radius: var(--mint-btn-br);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.mint-btn, .mint-select,
|
|
166
|
+
.mint-pill,
|
|
167
|
+
.mint-btn-icon {
|
|
168
|
+
width: fit-content;
|
|
169
|
+
max-width: 100%;
|
|
170
|
+
text-decoration: none;
|
|
171
|
+
text-overflow: ellipsis;
|
|
172
|
+
white-space: nowrap;
|
|
173
|
+
overflow: hidden;
|
|
174
|
+
user-select: none;
|
|
175
|
+
transition-property: color, background-color, border-color;
|
|
176
|
+
transition-duration: ms(300);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.mint-btn, .mint-select,
|
|
180
|
+
.mint-pill,
|
|
181
|
+
.mint-btn-group {
|
|
182
|
+
display: inline-block;
|
|
183
|
+
color: var(--mint-btn-fg);
|
|
184
|
+
background: var(--mint-btn-bg);
|
|
185
|
+
border: var(--mint-btn-bw) solid var(--mint-btn-bc);
|
|
186
|
+
text-align: center;
|
|
187
|
+
}
|
|
188
|
+
@media (min-width: 30rem) {
|
|
189
|
+
.mint-btn, .mint-select,
|
|
190
|
+
.mint-pill,
|
|
191
|
+
.mint-btn-group {
|
|
192
|
+
width: fit-content;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
.mint-btn:hover, .mint-select:hover, .mint-pill:hover, .mint-btn-group:hover .mint-btn:focus-visible, .mint-btn-group:hover .mint-select:focus-visible, .mint-pill:focus-visible, .mint-btn-group:focus-visible .mint-btn:active, .mint-btn-group:focus-visible .mint-select:active, .mint-pill:active, .mint-btn-group:active .mint-btn.mint-active, .mint-btn-group:active .mint-active.mint-select, .mint-pill.mint-active, .mint-btn-group.mint-active {
|
|
196
|
+
color: var(--mint-btn-fg-hover);
|
|
197
|
+
background: var(--mint-btn-bg-hover);
|
|
198
|
+
}
|
|
199
|
+
.mint-btn:hover i, .mint-select:hover i, .mint-pill:hover i, .mint-btn-group:hover .mint-btn:focus-visible i, .mint-btn-group:hover .mint-select:focus-visible i, .mint-pill:focus-visible i, .mint-btn-group:focus-visible .mint-btn:active i, .mint-btn-group:focus-visible .mint-select:active i, .mint-pill:active i, .mint-btn-group:active .mint-btn.mint-active i, .mint-btn-group:active .mint-active.mint-select i, .mint-pill.mint-active i, .mint-btn-group.mint-active i {
|
|
200
|
+
color: inherit !important;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.mint-btn.mint-reverse, .mint-reverse.mint-select,
|
|
204
|
+
.mint-pill.mint-reverse,
|
|
205
|
+
.mint-btn-group.mint-reverse {
|
|
206
|
+
color: var(--mint-btn-fg-hover);
|
|
207
|
+
background: var(--mint-btn-bg-hover);
|
|
208
|
+
}
|
|
209
|
+
.mint-btn.mint-reverse:hover, .mint-reverse.mint-select:hover, .mint-pill.mint-reverse:hover, .mint-btn-group.mint-reverse:hover .mint-btn.mint-reverse:focus-visible, .mint-btn-group.mint-reverse:hover .mint-reverse.mint-select:focus-visible, .mint-pill.mint-reverse:focus-visible, .mint-btn-group.mint-reverse:focus-visible .mint-btn.mint-reverse:active, .mint-btn-group.mint-reverse:focus-visible .mint-reverse.mint-select:active, .mint-pill.mint-reverse:active, .mint-btn-group.mint-reverse:active .mint-btn.mint-reverse.mint-active, .mint-btn-group.mint-reverse:active .mint-reverse.mint-active.mint-select, .mint-pill.mint-reverse.mint-active, .mint-btn-group.mint-reverse.mint-active {
|
|
210
|
+
color: var(--mint-btn-fg);
|
|
211
|
+
background: var(--mint-btn-bg);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.mint-btn.mint-alt, .mint-alt.mint-select,
|
|
215
|
+
.mint-pill.mint-alt,
|
|
216
|
+
.mint-btn-group.mint-alt {
|
|
217
|
+
color: var(--mint-btn-fg-alt);
|
|
218
|
+
background: var(--mint-btn-bg-alt);
|
|
219
|
+
}
|
|
220
|
+
.mint-btn.mint-alt:hover, .mint-alt.mint-select:hover, .mint-pill.mint-alt:hover, .mint-btn-group.mint-alt:hover .mint-btn.mint-alt:focus-visible, .mint-btn-group.mint-alt:hover .mint-alt.mint-select:focus-visible, .mint-pill.mint-alt:focus-visible, .mint-btn-group.mint-alt:focus-visible .mint-btn.mint-alt:active, .mint-btn-group.mint-alt:focus-visible .mint-alt.mint-select:active, .mint-pill.mint-alt:active, .mint-btn-group.mint-alt:active .mint-btn.mint-alt.mint-active, .mint-btn-group.mint-alt:active .mint-alt.mint-active.mint-select, .mint-pill.mint-alt.mint-active, .mint-btn-group.mint-alt.mint-active {
|
|
221
|
+
color: var(--mint-btn-fg-alt-hover);
|
|
222
|
+
background: var(--mint-btn-bg-alt-hover);
|
|
223
|
+
border-color: var(--mint-btn-bg-alt-hover);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.mint-btn.mint-alt.mint-reverse, .mint-alt.mint-reverse.mint-select,
|
|
227
|
+
.mint-pill.mint-alt.mint-reverse,
|
|
228
|
+
.mint-btn-group.mint-alt.mint-reverse {
|
|
229
|
+
color: var(--mint-btn-fg-alt-hover);
|
|
230
|
+
background: var(--mint-btn-bg-alt-hover);
|
|
231
|
+
border-color: var(--mint-btn-bg-alt-hover);
|
|
232
|
+
}
|
|
233
|
+
.mint-btn.mint-alt.mint-reverse:hover, .mint-alt.mint-reverse.mint-select:hover, .mint-pill.mint-alt.mint-reverse:hover, .mint-btn-group.mint-alt.mint-reverse:hover .mint-btn.mint-alt.mint-reverse:focus-visible, .mint-btn-group.mint-alt.mint-reverse:hover .mint-alt.mint-reverse.mint-select:focus-visible, .mint-pill.mint-alt.mint-reverse:focus-visible, .mint-btn-group.mint-alt.mint-reverse:focus-visible .mint-btn.mint-alt.mint-reverse:active, .mint-btn-group.mint-alt.mint-reverse:focus-visible .mint-alt.mint-reverse.mint-select:active, .mint-pill.mint-alt.mint-reverse:active, .mint-btn-group.mint-alt.mint-reverse:active .mint-btn.mint-alt.mint-reverse.mint-active, .mint-btn-group.mint-alt.mint-reverse:active .mint-alt.mint-reverse.mint-active.mint-select, .mint-pill.mint-alt.mint-reverse.mint-active, .mint-btn-group.mint-alt.mint-reverse.mint-active {
|
|
234
|
+
color: var(--mint-btn-bc);
|
|
235
|
+
background: var(--mint-btn-bg-alt);
|
|
236
|
+
border-color: var(--mint-btn-bg-alt);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.mint-btn a, .mint-select a,
|
|
240
|
+
.mint-pill a,
|
|
241
|
+
.mint-btn-group a {
|
|
242
|
+
color: inherit;
|
|
243
|
+
}
|
|
244
|
+
.mint-btn a:hover, .mint-select a:hover,
|
|
245
|
+
.mint-pill a:hover,
|
|
246
|
+
.mint-btn-group a:hover {
|
|
247
|
+
color: inherit;
|
|
248
|
+
}
|
|
249
|
+
.mint-btn a i, .mint-select a i,
|
|
250
|
+
.mint-pill a i,
|
|
251
|
+
.mint-btn-group a i {
|
|
252
|
+
display: none;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.mint-btn, .mint-select {
|
|
256
|
+
padding: var(--mint-btn-pv) var(--mint-btn-ph);
|
|
257
|
+
cursor: pointer;
|
|
258
|
+
}
|
|
259
|
+
.mint-btn-icon {
|
|
260
|
+
display: block;
|
|
261
|
+
text-align: center;
|
|
262
|
+
background: none;
|
|
263
|
+
border: none;
|
|
264
|
+
}
|
|
265
|
+
.mint-btn-icon:hover .mint-btn-icon:focus-visible .mint-btn-icon:active .mint-btn-icon.mint-active i {
|
|
266
|
+
color: var(--mint-btn-bg-alt-hover);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
@media (min-width: 30rem) {
|
|
270
|
+
.mint-btn-icon {
|
|
271
|
+
display: inline-block;
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
.mint-btn-icon.mint-lg i {
|
|
275
|
+
font-size: 4rem;
|
|
276
|
+
}
|
|
277
|
+
.mint-btn-icon i {
|
|
278
|
+
display: inline-flex;
|
|
279
|
+
align-items: center;
|
|
280
|
+
margin: 0 !important;
|
|
281
|
+
color: var(--mint-btn-bc);
|
|
282
|
+
font-size: 1.5rem;
|
|
283
|
+
}
|
|
284
|
+
.mint-btn-icon i::before {
|
|
285
|
+
transition: color ms(300);
|
|
286
|
+
padding: 2px;
|
|
287
|
+
}
|
|
288
|
+
.mint-btn-group {
|
|
289
|
+
display: flex;
|
|
290
|
+
width: fit-content;
|
|
291
|
+
max-width: 100%;
|
|
292
|
+
margin: auto;
|
|
293
|
+
padding: 0;
|
|
294
|
+
overflow: visible;
|
|
295
|
+
transition: all ms(300);
|
|
296
|
+
}
|
|
297
|
+
.mint-btn-group > *:first-child, .mint-btn-group > *:first-child button {
|
|
298
|
+
padding: var(--mint-btn-pv) 0 var(--mint-btn-pv) var(--mint-btn-ph);
|
|
299
|
+
border-top-left-radius: var(--mint-btn-br);
|
|
300
|
+
border-bottom-left-radius: var(--mint-btn-br);
|
|
301
|
+
}
|
|
302
|
+
.mint-btn-group > *:last-child, .mint-btn-group > *:last-child button {
|
|
303
|
+
padding: var(--mint-btn-pv) var(--mint-btn-ph) var(--mint-btn-pv) 0;
|
|
304
|
+
border-top-right-radius: var(--mint-btn-br);
|
|
305
|
+
border-bottom-right-radius: var(--mint-btn-br);
|
|
306
|
+
}
|
|
307
|
+
.mint-btn-group button {
|
|
308
|
+
width: 100%;
|
|
309
|
+
border: none;
|
|
310
|
+
color: inherit;
|
|
311
|
+
background: transparent;
|
|
312
|
+
}
|
|
313
|
+
.mint-btn-group button:hover .mint-btn-group button:focus-visible .mint-btn-group button:active .mint-btn-group button.mint-active {
|
|
314
|
+
background: var(--mint-brand-5);
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.mint-btn-submit.mint-success[disabled] {
|
|
318
|
+
filter: none !important;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.mint-pill {
|
|
322
|
+
padding: var(--mint-pill-pv) var(--mint-pill-ph);
|
|
323
|
+
border-radius: var(--mint-pill-br);
|
|
324
|
+
line-height: 2;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
a.mint-pill, button.mint-pill {
|
|
328
|
+
min-width: 5rem;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
p .mint-pill, p .mint-btn, p .mint-select {
|
|
332
|
+
line-height: 1.5rem;
|
|
333
|
+
vertical-align: middle;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.mint-buttons {
|
|
337
|
+
display: flex;
|
|
338
|
+
align-items: center;
|
|
339
|
+
justify-content: center;
|
|
340
|
+
flex-wrap: wrap;
|
|
341
|
+
gap: 1rem;
|
|
342
|
+
overflow: hidden;
|
|
343
|
+
}
|
|
344
|
+
@media (min-width: 30rem) {
|
|
345
|
+
.mint-buttons {
|
|
346
|
+
justify-content: flex-start;
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
.mint-buttons > * {
|
|
350
|
+
width: 100%;
|
|
351
|
+
}
|
|
352
|
+
.mint-buttons > * .mint-btn, .mint-buttons > * .mint-select, .mint-buttons > * .mint-pill {
|
|
353
|
+
display: block;
|
|
354
|
+
}
|
|
355
|
+
@media (min-width: 30rem) {
|
|
356
|
+
.mint-buttons > * {
|
|
357
|
+
width: auto;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
.mint-buttons .mint-buttons .mint-pill {
|
|
361
|
+
width: 100%;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
@media (min-width: 30rem) {
|
|
365
|
+
.mint-grid.mint-3 .mint-buttons > *,
|
|
366
|
+
.mint-grid.mint-4 .mint-buttons > * {
|
|
367
|
+
width: 100%;
|
|
368
|
+
margin: 0.5rem 0;
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
:root {
|
|
373
|
+
--mint-img-shadow-c: var(--mint-shadow-c);
|
|
374
|
+
--mint-img-shadow-s: var(--mint-shadow-s);
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.mint-image.mint-error::after {
|
|
378
|
+
content: "❌ Image failed to load. This is a placeholder.";
|
|
379
|
+
position: absolute;
|
|
380
|
+
bottom: 0;
|
|
381
|
+
left: 0;
|
|
382
|
+
width: 100%;
|
|
383
|
+
padding: 0 var(--mint-img-shadow-s) var(--mint-img-shadow-s) var(--mint-img-shadow-s);
|
|
384
|
+
background: var(--mint-img-shadow-c);
|
|
385
|
+
box-shadow: 0 0 var(--mint-img-shadow-s) var(--mint-img-shadow-s) var(--mint-img-shadow-c);
|
|
386
|
+
text-align: center;
|
|
387
|
+
}
|
|
388
|
+
.mint-image img {
|
|
389
|
+
display: block;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.mint-banner {
|
|
393
|
+
position: relative;
|
|
394
|
+
width: 100%;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
:root {
|
|
398
|
+
--mint-tooltip-fg: var(--mint-c-fg);
|
|
399
|
+
--mint-tooltip-bg: var(--mint-c-bg);
|
|
400
|
+
--mint-tooltip-r: var(--mint-br);
|
|
401
|
+
--mint-tooltip-shadow-c: var(--mint-shadow-c);
|
|
402
|
+
--mint-tooltip-shadow-s: var(--mint-shadow-s);
|
|
403
|
+
--mint-tooltip-p: 0.5rem 1rem;
|
|
404
|
+
--mint-tooltip-dist: 0.5rem;
|
|
405
|
+
--mint-tooltip-max-w: 90vw;
|
|
406
|
+
--mint-tooltip-line-h: 1.5;
|
|
407
|
+
--mint-tooltip-font-s: 1rem;
|
|
408
|
+
--mint-tooltip-arrow-s: 0.5rem;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.mint-tooltip {
|
|
412
|
+
position: absolute;
|
|
413
|
+
max-width: var(--mint-tooltip-max-w);
|
|
414
|
+
border-radius: var(--mint-tooltip-r);
|
|
415
|
+
padding: var(--mint-tooltip-p);
|
|
416
|
+
opacity: 0;
|
|
417
|
+
color: var(--mint-tooltip-fg);
|
|
418
|
+
background: var(--mint-tooltip-bg);
|
|
419
|
+
box-shadow: var(--mint-tooltip-shadow-c) var(--mint-tooltip-shadow-s);
|
|
420
|
+
font-size: var(--mint-tooltip-font-s);
|
|
421
|
+
line-height: var(--mint-tooltip-line-h);
|
|
422
|
+
transition: opacity 0.3s;
|
|
423
|
+
user-select: none;
|
|
424
|
+
pointer-events: none;
|
|
425
|
+
white-space: nowrap;
|
|
426
|
+
}
|
|
427
|
+
.mint-tooltip.mint-top::after, .mint-tooltip.mint-bottom::after {
|
|
428
|
+
border-left: solid var(--mint-tooltip-arrow-s) transparent;
|
|
429
|
+
border-right: solid var(--mint-tooltip-arrow-s) transparent;
|
|
430
|
+
}
|
|
431
|
+
.mint-tooltip.mint-left::after, .mint-tooltip.mint-right::after {
|
|
432
|
+
border-top: solid var(--mint-tooltip-arrow-s) transparent;
|
|
433
|
+
border-bottom: solid var(--mint-tooltip-arrow-s) transparent;
|
|
434
|
+
}
|
|
435
|
+
.mint-tooltip.mint-top {
|
|
436
|
+
bottom: calc(100% + var(--mint-tooltip-arrow-s) + var(--mint-tooltip-dist));
|
|
437
|
+
left: 50%;
|
|
438
|
+
transform: translateX(-50%);
|
|
439
|
+
}
|
|
440
|
+
.mint-tooltip.mint-top::after {
|
|
441
|
+
bottom: calc(-1 * var(--mint-tooltip-arrow-s) + 1px);
|
|
442
|
+
left: 50%;
|
|
443
|
+
transform: translateX(-50%);
|
|
444
|
+
border-top: solid var(--mint-tooltip-arrow-s) var(--mint-tooltip-bg);
|
|
445
|
+
}
|
|
446
|
+
.mint-tooltip.mint-left {
|
|
447
|
+
right: calc(100% + var(--mint-tooltip-arrow-s) + var(--mint-tooltip-dist));
|
|
448
|
+
top: 50%;
|
|
449
|
+
transform: translateY(-50%);
|
|
450
|
+
}
|
|
451
|
+
.mint-tooltip.mint-left::after {
|
|
452
|
+
right: calc(-1 * var(--mint-tooltip-arrow-s) + 1px);
|
|
453
|
+
top: 50%;
|
|
454
|
+
transform: translateY(-50%);
|
|
455
|
+
border-left: solid var(--mint-tooltip-arrow-s) var(--mint-tooltip-bg);
|
|
456
|
+
}
|
|
457
|
+
.mint-tooltip.mint-bottom {
|
|
458
|
+
top: calc(100% + var(--mint-tooltip-arrow-s) + var(--mint-tooltip-dist));
|
|
459
|
+
left: 50%;
|
|
460
|
+
transform: translateX(-50%);
|
|
461
|
+
}
|
|
462
|
+
.mint-tooltip.mint-bottom::after {
|
|
463
|
+
top: calc(-1 * var(--mint-tooltip-arrow-s) + 1px);
|
|
464
|
+
left: 50%;
|
|
465
|
+
transform: translateX(-50%);
|
|
466
|
+
border-bottom: solid var(--mint-tooltip-arrow-s) var(--mint-tooltip-bg);
|
|
467
|
+
}
|
|
468
|
+
.mint-tooltip.mint-right {
|
|
469
|
+
left: calc(100% + var(--mint-tooltip-arrow-s) + var(--mint-tooltip-dist));
|
|
470
|
+
top: 50%;
|
|
471
|
+
transform: translateY(-50%);
|
|
472
|
+
}
|
|
473
|
+
.mint-tooltip.mint-right::after {
|
|
474
|
+
left: calc(-1 * var(--mint-tooltip-arrow-s) + 1px);
|
|
475
|
+
top: 50%;
|
|
476
|
+
transform: translateY(-50%);
|
|
477
|
+
border-right: solid var(--mint-tooltip-arrow-s) var(--mint-tooltip-bg);
|
|
478
|
+
}
|
|
479
|
+
.mint-tooltip::after {
|
|
480
|
+
content: "";
|
|
481
|
+
position: absolute;
|
|
482
|
+
width: 0;
|
|
483
|
+
height: 0;
|
|
484
|
+
}
|
|
485
|
+
.mint-tooltipped {
|
|
486
|
+
display: inline-flex;
|
|
487
|
+
position: relative;
|
|
488
|
+
width: fit-content;
|
|
489
|
+
}
|
|
490
|
+
.mint-tooltipped:hover .mint-tooltip {
|
|
491
|
+
opacity: 1;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.mint-accordion .mint-item {
|
|
495
|
+
cursor: pointer;
|
|
496
|
+
}
|
|
497
|
+
.mint-accordion .mint-item .mint-wrapper {
|
|
498
|
+
transition: height 0.3s ease;
|
|
499
|
+
overflow: hidden;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
:root {
|
|
503
|
+
--mint-card-p: calc(var(--mint-gap) * 8);
|
|
504
|
+
--mint-card-logo-s: 4rem;
|
|
505
|
+
--mint-card-r: var(--mint-br);
|
|
506
|
+
--mint-card-shadow-s: var(--mint-shadow-s);
|
|
507
|
+
--mint-card-shadow-c: var(--mint-shadow-c);
|
|
508
|
+
--mint-card-bg: var(--mint-c-bg-3);
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.mint-theme-dark {
|
|
512
|
+
--mint-card-bg: var(--mint-c-bg-5);
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.mint-card {
|
|
516
|
+
display: flex;
|
|
517
|
+
flex-direction: column;
|
|
518
|
+
position: relative;
|
|
519
|
+
height: 100%;
|
|
520
|
+
max-width: 100%;
|
|
521
|
+
margin: 0;
|
|
522
|
+
border-radius: var(--mint-card-r);
|
|
523
|
+
box-shadow: var(--mint-card-shadow-s) var(--mint-card-shadow-c);
|
|
524
|
+
}
|
|
525
|
+
@media (min-width: 48rem) {
|
|
526
|
+
.mint-card {
|
|
527
|
+
flex-direction: row;
|
|
528
|
+
}
|
|
529
|
+
.mint-card.mint-reverse {
|
|
530
|
+
flex-direction: row-reverse;
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
.mint-card:has(.mint-carousel) {
|
|
534
|
+
box-shadow: none;
|
|
535
|
+
}
|
|
536
|
+
.mint-card:has(.mint-carousel) .mint-content {
|
|
537
|
+
box-shadow: var(--mint-card-shadow-s) var(--mint-card-shadow-c);
|
|
538
|
+
}
|
|
539
|
+
.mint-card.mint-center .mint-title {
|
|
540
|
+
justify-content: center;
|
|
541
|
+
text-align: center;
|
|
542
|
+
}
|
|
543
|
+
.mint-card.mint-center .mint-title > div {
|
|
544
|
+
width: auto;
|
|
545
|
+
}
|
|
546
|
+
.mint-card.mint-center .mint-content > * {
|
|
547
|
+
text-align: center;
|
|
548
|
+
}
|
|
549
|
+
.mint-card.mint-center .mint-buttons {
|
|
550
|
+
justify-content: center;
|
|
551
|
+
}
|
|
552
|
+
.mint-card.mint-center-title .mint-title {
|
|
553
|
+
justify-content: center;
|
|
554
|
+
text-align: center;
|
|
555
|
+
}
|
|
556
|
+
.mint-card.mint-center-title .mint-title > div {
|
|
557
|
+
width: auto;
|
|
558
|
+
}
|
|
559
|
+
.mint-card.mint-center-content .mint-content > * {
|
|
560
|
+
text-align: center;
|
|
561
|
+
}
|
|
562
|
+
.mint-card.mint-center-btns .mint-buttons {
|
|
563
|
+
justify-content: center;
|
|
564
|
+
}
|
|
565
|
+
.mint-card.mint-stagger {
|
|
566
|
+
position: relative;
|
|
567
|
+
width: 100%;
|
|
568
|
+
}
|
|
569
|
+
@media (min-width: 48rem) {
|
|
570
|
+
.mint-card.mint-stagger {
|
|
571
|
+
flex-direction: row;
|
|
572
|
+
border-radius: 0;
|
|
573
|
+
box-shadow: none;
|
|
574
|
+
overflow: visible;
|
|
575
|
+
}
|
|
576
|
+
.mint-card.mint-stagger > .mint-image {
|
|
577
|
+
width: calc(50% + var(--mint-card-p));
|
|
578
|
+
height: fit-content;
|
|
579
|
+
margin-right: calc(var(--mint-card-p) * -2);
|
|
580
|
+
border-radius: var(--mint-card-r);
|
|
581
|
+
}
|
|
582
|
+
.mint-card.mint-stagger > .mint-image img {
|
|
583
|
+
height: 100%;
|
|
584
|
+
object-fit: cover;
|
|
585
|
+
}
|
|
586
|
+
.mint-card.mint-stagger > .mint-content {
|
|
587
|
+
height: fit-content;
|
|
588
|
+
width: calc(50% + var(--mint-card-p));
|
|
589
|
+
margin-top: calc(2 * var(--mint-card-p));
|
|
590
|
+
border-radius: var(--mint-card-r);
|
|
591
|
+
box-shadow: var(--mint-card-shadow-s) var(--mint-card-shadow-c);
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
@media (min-width: 48rem) {
|
|
595
|
+
.mint-card.mint-stagger.mint-reverse {
|
|
596
|
+
flex-direction: row-reverse;
|
|
597
|
+
}
|
|
598
|
+
.mint-card.mint-stagger.mint-reverse > .mint-image {
|
|
599
|
+
margin-right: 0;
|
|
600
|
+
margin-left: calc(var(--mint-card-p) * -2);
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
.mint-card > .mint-image {
|
|
604
|
+
overflow: hidden;
|
|
605
|
+
}
|
|
606
|
+
@media (min-width: 48rem) {
|
|
607
|
+
.mint-card > .mint-image {
|
|
608
|
+
width: 50%;
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
.mint-card > .mint-image:only-child {
|
|
612
|
+
width: 100%;
|
|
613
|
+
}
|
|
614
|
+
@media (min-width: 48rem) {
|
|
615
|
+
.mint-card > .mint-image + .mint-content {
|
|
616
|
+
width: 50%;
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
.mint-card .mint-content {
|
|
620
|
+
display: flex;
|
|
621
|
+
flex-direction: column;
|
|
622
|
+
gap: calc(var(--mint-gap) * 2);
|
|
623
|
+
position: relative;
|
|
624
|
+
padding: var(--mint-card-p);
|
|
625
|
+
background: var(--mint-card-bg);
|
|
626
|
+
width: 100%;
|
|
627
|
+
overflow: hidden;
|
|
628
|
+
}
|
|
629
|
+
.mint-card .mint-content > * {
|
|
630
|
+
margin-top: 0;
|
|
631
|
+
margin-bottom: 0;
|
|
632
|
+
}
|
|
633
|
+
.mint-card .mint-title {
|
|
634
|
+
display: flex;
|
|
635
|
+
flex-direction: column;
|
|
636
|
+
align-items: center;
|
|
637
|
+
height: fit-content;
|
|
638
|
+
gap: var(--mint-card-p);
|
|
639
|
+
text-align: center;
|
|
640
|
+
width: 100%;
|
|
641
|
+
}
|
|
642
|
+
@media (min-width: 30rem) {
|
|
643
|
+
.mint-card .mint-title {
|
|
644
|
+
flex-direction: row;
|
|
645
|
+
text-align: left;
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
.mint-card .mint-title:only-child {
|
|
649
|
+
height: 100%;
|
|
650
|
+
}
|
|
651
|
+
.mint-card .mint-title > .mint-image {
|
|
652
|
+
width: 100%;
|
|
653
|
+
height: 100%;
|
|
654
|
+
max-width: var(--mint-card-logo-s);
|
|
655
|
+
max-height: var(--mint-card-logo-s);
|
|
656
|
+
}
|
|
657
|
+
.mint-card .mint-title > .mint-image.mint-large {
|
|
658
|
+
max-width: calc(2 * var(--mint-card-logo-s));
|
|
659
|
+
max-height: calc(2 * var(--mint-card-logo-s));
|
|
660
|
+
}
|
|
661
|
+
.mint-card .mint-title > .mint-image img {
|
|
662
|
+
display: block;
|
|
663
|
+
width: 100%;
|
|
664
|
+
height: 100%;
|
|
665
|
+
object-fit: contain;
|
|
666
|
+
}
|
|
667
|
+
.mint-card .mint-title i {
|
|
668
|
+
display: flex;
|
|
669
|
+
align-items: center;
|
|
670
|
+
justify-content: center;
|
|
671
|
+
min-width: var(--mint-card-logo-s);
|
|
672
|
+
max-width: var(--mint-card-logo-s);
|
|
673
|
+
margin: 0;
|
|
674
|
+
font-size: calc(var(--mint-card-logo-s) - 1rem);
|
|
675
|
+
}
|
|
676
|
+
.mint-card .mint-title > div {
|
|
677
|
+
width: 100%;
|
|
678
|
+
}
|
|
679
|
+
.mint-card .mint-title > div > * {
|
|
680
|
+
margin: 0;
|
|
681
|
+
}
|
|
682
|
+
.mint-card .mint-date {
|
|
683
|
+
text-align: center;
|
|
684
|
+
}
|
|
685
|
+
@media (min-width: 30rem) {
|
|
686
|
+
.mint-card .mint-date {
|
|
687
|
+
text-align: left;
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
.mint-card-grid {
|
|
691
|
+
position: relative;
|
|
692
|
+
background: var(--mint-card-bg);
|
|
693
|
+
}
|
|
694
|
+
.mint-card-grid:has(.mint-image) .mint-content {
|
|
695
|
+
margin-top: 25%;
|
|
696
|
+
padding-top: 25%;
|
|
697
|
+
background: none;
|
|
698
|
+
border: none;
|
|
699
|
+
}
|
|
700
|
+
.mint-card-grid:has(.mint-image) .mint-content::before {
|
|
701
|
+
opacity: 0;
|
|
702
|
+
}
|
|
703
|
+
.mint-card-grid:has(.mint-image) .mint-content::after {
|
|
704
|
+
content: "";
|
|
705
|
+
position: absolute;
|
|
706
|
+
top: 0;
|
|
707
|
+
left: 0;
|
|
708
|
+
width: 100%;
|
|
709
|
+
height: 100%;
|
|
710
|
+
opacity: 0.75;
|
|
711
|
+
mask-image: none;
|
|
712
|
+
background: linear-gradient(0deg, black, rgba(0, 0, 0, 0.7) 66%, var(--mint-shadow-0));
|
|
713
|
+
transition: opacity ms(300) ease-in-out;
|
|
714
|
+
z-index: -1;
|
|
715
|
+
}
|
|
716
|
+
.mint-card-grid:hover .mint-content::after {
|
|
717
|
+
opacity: 1;
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
.mint-card-grid .mint-image {
|
|
721
|
+
position: absolute;
|
|
722
|
+
top: 0;
|
|
723
|
+
left: 0;
|
|
724
|
+
width: 100%;
|
|
725
|
+
height: 100%;
|
|
726
|
+
}
|
|
727
|
+
.mint-card-grid .mint-image img {
|
|
728
|
+
height: 100%;
|
|
729
|
+
object-fit: contain;
|
|
730
|
+
object-position: top;
|
|
731
|
+
}
|
|
732
|
+
.mint-card-grid .mint-content {
|
|
733
|
+
justify-content: flex-end;
|
|
734
|
+
background: var(--mint-shadow-0);
|
|
735
|
+
}
|
|
736
|
+
.mint-card-grid .mint-content .mint-buttons {
|
|
737
|
+
margin-top: 0 !important;
|
|
738
|
+
}
|
|
739
|
+
.mint-card-actions .mint-content {
|
|
740
|
+
flex-direction: row;
|
|
741
|
+
justify-content: space-between;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.mint-grid.mint-3 .mint-card,
|
|
745
|
+
.mint-grid.mint-4 .mint-card {
|
|
746
|
+
flex-direction: column !important;
|
|
747
|
+
}
|
|
748
|
+
.mint-grid.mint-3 .mint-card > .mint-image,
|
|
749
|
+
.mint-grid.mint-4 .mint-card > .mint-image {
|
|
750
|
+
overflow: hidden;
|
|
751
|
+
}
|
|
752
|
+
@media (min-width: 48rem) {
|
|
753
|
+
.mint-grid.mint-3 .mint-card > .mint-image,
|
|
754
|
+
.mint-grid.mint-4 .mint-card > .mint-image {
|
|
755
|
+
width: 100%;
|
|
756
|
+
}
|
|
757
|
+
}
|
|
758
|
+
@media (min-width: 48rem) {
|
|
759
|
+
.mint-grid.mint-3 .mint-card > .mint-image + .mint-content,
|
|
760
|
+
.mint-grid.mint-4 .mint-card > .mint-image + .mint-content {
|
|
761
|
+
width: 100%;
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
.mint-grid.mint-3 .mint-card .mint-content,
|
|
765
|
+
.mint-grid.mint-4 .mint-card .mint-content {
|
|
766
|
+
flex-grow: 1;
|
|
767
|
+
}
|
|
768
|
+
@media (min-width: 30rem) {
|
|
769
|
+
.mint-grid.mint-3 .mint-card .mint-title,
|
|
770
|
+
.mint-grid.mint-4 .mint-card .mint-title {
|
|
771
|
+
flex-direction: column;
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
.mint-grid.mint-3 .mint-card .mint-buttons,
|
|
775
|
+
.mint-grid.mint-4 .mint-card .mint-buttons {
|
|
776
|
+
margin-top: auto;
|
|
777
|
+
}
|
|
778
|
+
.mint-grid.mint-3 .mint-card .mint-buttons .mint-btn,
|
|
779
|
+
.mint-grid.mint-4 .mint-card .mint-buttons .mint-btn {
|
|
780
|
+
width: 100%;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
:root {
|
|
784
|
+
--mint-modal-w: var(--mint-sm);
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.mint-modal {
|
|
788
|
+
position: fixed;
|
|
789
|
+
top: 50%;
|
|
790
|
+
left: 50%;
|
|
791
|
+
transform: translate(-50%, -50%);
|
|
792
|
+
width: 100%;
|
|
793
|
+
max-width: var(--mint-modal-w);
|
|
794
|
+
height: auto;
|
|
795
|
+
max-height: calc(100% - var(--mint-p-clamp) * 4);
|
|
796
|
+
z-index: 99999999;
|
|
797
|
+
opacity: 0;
|
|
798
|
+
pointer-events: none;
|
|
799
|
+
user-select: none;
|
|
800
|
+
transition: opacity 0.3s ease-in-out;
|
|
801
|
+
}
|
|
802
|
+
.mint-modal.mint-open {
|
|
803
|
+
opacity: 1;
|
|
804
|
+
pointer-events: auto;
|
|
805
|
+
user-select: text;
|
|
806
|
+
}
|
|
807
|
+
.mint-modal.mint-open + .mint-modal-bg {
|
|
808
|
+
pointer-events: auto;
|
|
809
|
+
user-select: text;
|
|
810
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
811
|
+
backdrop-filter: blur(3rem);
|
|
812
|
+
}
|
|
813
|
+
.mint-modal .mint-content {
|
|
814
|
+
overflow: auto;
|
|
815
|
+
}
|
|
816
|
+
.mint-modal-bg {
|
|
817
|
+
position: fixed;
|
|
818
|
+
top: 0;
|
|
819
|
+
left: 0;
|
|
820
|
+
width: 100%;
|
|
821
|
+
height: 100%;
|
|
822
|
+
background-color: rgba(0, 0, 0, 0);
|
|
823
|
+
backdrop-filter: blur(0rem);
|
|
824
|
+
z-index: 99999998;
|
|
825
|
+
pointer-events: none;
|
|
826
|
+
user-select: none;
|
|
827
|
+
transition-duration: 0.3s;
|
|
828
|
+
transition-property: background-color, backdrop-filter;
|
|
829
|
+
transition-timing-function: ease-in-out;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
:root {
|
|
833
|
+
--mint-aspect-w: 16;
|
|
834
|
+
--mint-aspect-h: 9;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.mint-aspect {
|
|
838
|
+
position: relative;
|
|
839
|
+
height: 0;
|
|
840
|
+
padding-top: calc(var(--mint-aspect-h) / var(--mint-aspect-w) * 100%);
|
|
841
|
+
overflow: hidden;
|
|
842
|
+
}
|
|
843
|
+
.mint-aspect.mint-spotify, .mint-aspect.mint-spotify-playlist {
|
|
844
|
+
padding-top: 152px;
|
|
845
|
+
}
|
|
846
|
+
@media (min-width: 30rem) {
|
|
847
|
+
.mint-aspect.mint-spotify, .mint-aspect.mint-spotify-playlist {
|
|
848
|
+
padding-top: 125%;
|
|
849
|
+
}
|
|
850
|
+
}
|
|
851
|
+
@media (min-width: 48rem) {
|
|
852
|
+
.mint-aspect.mint-spotify, .mint-aspect.mint-spotify-playlist {
|
|
853
|
+
padding-top: 75%;
|
|
854
|
+
}
|
|
855
|
+
}
|
|
856
|
+
@media (min-width: 64rem) {
|
|
857
|
+
.mint-aspect.mint-spotify, .mint-aspect.mint-spotify-playlist {
|
|
858
|
+
padding-top: 56.25%;
|
|
859
|
+
}
|
|
860
|
+
}
|
|
861
|
+
.mint-aspect.mint-spotify-podcast {
|
|
862
|
+
padding-top: 352px;
|
|
863
|
+
}
|
|
864
|
+
.mint-aspect > :first-child {
|
|
865
|
+
position: absolute;
|
|
866
|
+
top: 50%;
|
|
867
|
+
left: 50%;
|
|
868
|
+
transform: translate(-50%, -50%);
|
|
869
|
+
width: 100%;
|
|
870
|
+
height: 100%;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
.mint-circle {
|
|
874
|
+
border-radius: 50%;
|
|
875
|
+
overflow: hidden;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
.mint-half-w {
|
|
879
|
+
width: 50%;
|
|
880
|
+
margin-left: auto;
|
|
881
|
+
margin-right: auto;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
:root {
|
|
885
|
+
--mint-c-bw-0: black;
|
|
886
|
+
--mint-c-bw-1: rgb(25.5, 25.5, 25.5);
|
|
887
|
+
--mint-c-bw-2: #333333;
|
|
888
|
+
--mint-c-bw-3: rgb(76.5, 76.5, 76.5);
|
|
889
|
+
--mint-c-bw-4: #666666;
|
|
890
|
+
--mint-c-bw-5: rgb(127.5, 127.5, 127.5);
|
|
891
|
+
--mint-c-bw-6: #999999;
|
|
892
|
+
--mint-c-bw-7: rgb(178.5, 178.5, 178.5);
|
|
893
|
+
--mint-c-bw-8: #cccccc;
|
|
894
|
+
--mint-c-bw-9: rgb(229.5, 229.5, 229.5);
|
|
895
|
+
--mint-c-glow-0: rgba(255, 255, 255, 0);
|
|
896
|
+
--mint-c-glow-1: rgba(255, 255, 255, 0.1);
|
|
897
|
+
--mint-c-glow-2: rgba(255, 255, 255, 0.2);
|
|
898
|
+
--mint-c-glow-3: rgba(255, 255, 255, 0.3);
|
|
899
|
+
--mint-c-glow-4: rgba(255, 255, 255, 0.4);
|
|
900
|
+
--mint-c-glow-5: rgba(255, 255, 255, 0.5);
|
|
901
|
+
--mint-c-glow-6: rgba(255, 255, 255, 0.6);
|
|
902
|
+
--mint-c-glow-7: rgba(255, 255, 255, 0.7);
|
|
903
|
+
--mint-c-glow-8: rgba(255, 255, 255, 0.8);
|
|
904
|
+
--mint-c-glow-9: rgba(255, 255, 255, 0.9);
|
|
905
|
+
--mint-c-shadow-0: rgba(0, 0, 0, 0);
|
|
906
|
+
--mint-c-shadow-1: rgba(0, 0, 0, 0.1);
|
|
907
|
+
--mint-c-shadow-2: rgba(0, 0, 0, 0.2);
|
|
908
|
+
--mint-c-shadow-3: rgba(0, 0, 0, 0.3);
|
|
909
|
+
--mint-c-shadow-4: rgba(0, 0, 0, 0.4);
|
|
910
|
+
--mint-c-shadow-5: rgba(0, 0, 0, 0.5);
|
|
911
|
+
--mint-c-shadow-6: rgba(0, 0, 0, 0.6);
|
|
912
|
+
--mint-c-shadow-7: rgba(0, 0, 0, 0.7);
|
|
913
|
+
--mint-c-shadow-8: rgba(0, 0, 0, 0.8);
|
|
914
|
+
--mint-c-shadow-9: rgba(0, 0, 0, 0.9);
|
|
915
|
+
--mint-c-brand-0: hsl(220, 35%, 0%);
|
|
916
|
+
--mint-c-brand-1: hsl(220, 35%, 10%);
|
|
917
|
+
--mint-c-brand-2: hsl(220, 35%, 20%);
|
|
918
|
+
--mint-c-brand-3: hsl(220, 35%, 30%);
|
|
919
|
+
--mint-c-brand-4: hsl(220, 35%, 40%);
|
|
920
|
+
--mint-c-brand-5: hsl(220, 35%, 50%);
|
|
921
|
+
--mint-c-brand-6: hsl(220, 35%, 60%);
|
|
922
|
+
--mint-c-brand-7: hsl(220, 35%, 70%);
|
|
923
|
+
--mint-c-brand-8: hsl(220, 35%, 80%);
|
|
924
|
+
--mint-c-brand-9: hsl(220, 35%, 90%);
|
|
925
|
+
--mint-c-accent-0: hsl(248, 39%, 0%);
|
|
926
|
+
--mint-c-accent-1: hsl(248, 39%, 10%);
|
|
927
|
+
--mint-c-accent-2: hsl(248, 39%, 20%);
|
|
928
|
+
--mint-c-accent-3: hsl(248, 39%, 30%);
|
|
929
|
+
--mint-c-accent-4: hsl(248, 39%, 40%);
|
|
930
|
+
--mint-c-accent-5: hsl(248, 39%, 50%);
|
|
931
|
+
--mint-c-accent-6: hsl(248, 39%, 60%);
|
|
932
|
+
--mint-c-accent-7: hsl(248, 39%, 70%);
|
|
933
|
+
--mint-c-accent-8: hsl(248, 39%, 80%);
|
|
934
|
+
--mint-c-accent-9: hsl(248, 39%, 90%);
|
|
935
|
+
--mint-c-success-0: hsl(120, 62%, 0%);
|
|
936
|
+
--mint-c-success-1: hsl(120, 62%, 10%);
|
|
937
|
+
--mint-c-success-2: hsl(120, 62%, 20%);
|
|
938
|
+
--mint-c-success-3: hsl(120, 62%, 30%);
|
|
939
|
+
--mint-c-success-4: hsl(120, 62%, 40%);
|
|
940
|
+
--mint-c-success-5: hsl(120, 62%, 50%);
|
|
941
|
+
--mint-c-success-6: hsl(120, 62%, 60%);
|
|
942
|
+
--mint-c-success-7: hsl(120, 62%, 70%);
|
|
943
|
+
--mint-c-success-8: hsl(120, 62%, 80%);
|
|
944
|
+
--mint-c-success-9: hsl(120, 62%, 90%);
|
|
945
|
+
--mint-c-danger-0: hsl(0, 54%, 0%);
|
|
946
|
+
--mint-c-danger-1: hsl(0, 54%, 10%);
|
|
947
|
+
--mint-c-danger-2: hsl(0, 54%, 20%);
|
|
948
|
+
--mint-c-danger-3: hsl(0, 54%, 30%);
|
|
949
|
+
--mint-c-danger-4: hsl(0, 54%, 40%);
|
|
950
|
+
--mint-c-danger-5: hsl(0, 54%, 50%);
|
|
951
|
+
--mint-c-danger-6: hsl(0, 54%, 60%);
|
|
952
|
+
--mint-c-danger-7: hsl(0, 54%, 70%);
|
|
953
|
+
--mint-c-danger-8: hsl(0, 54%, 80%);
|
|
954
|
+
--mint-c-danger-9: hsl(0, 54%, 90%);
|
|
955
|
+
--mint-c-warning-0: hsl(37, 100%, 0%);
|
|
956
|
+
--mint-c-warning-1: hsl(37, 100%, 10%);
|
|
957
|
+
--mint-c-warning-2: hsl(37, 100%, 20%);
|
|
958
|
+
--mint-c-warning-3: hsl(37, 100%, 30%);
|
|
959
|
+
--mint-c-warning-4: hsl(37, 100%, 40%);
|
|
960
|
+
--mint-c-warning-5: hsl(37, 100%, 50%);
|
|
961
|
+
--mint-c-warning-6: hsl(37, 100%, 60%);
|
|
962
|
+
--mint-c-warning-7: hsl(37, 100%, 70%);
|
|
963
|
+
--mint-c-warning-8: hsl(37, 100%, 80%);
|
|
964
|
+
--mint-c-warning-9: hsl(37, 100%, 90%);
|
|
965
|
+
--mint-c-info-0: hsl(201, 50%, 0%);
|
|
966
|
+
--mint-c-info-1: hsl(201, 50%, 10%);
|
|
967
|
+
--mint-c-info-2: hsl(201, 50%, 20%);
|
|
968
|
+
--mint-c-info-3: hsl(201, 50%, 30%);
|
|
969
|
+
--mint-c-info-4: hsl(201, 50%, 40%);
|
|
970
|
+
--mint-c-info-5: hsl(201, 50%, 50%);
|
|
971
|
+
--mint-c-info-6: hsl(201, 50%, 60%);
|
|
972
|
+
--mint-c-info-7: hsl(201, 50%, 70%);
|
|
973
|
+
--mint-c-info-8: hsl(201, 50%, 80%);
|
|
974
|
+
--mint-c-info-9: hsl(201, 50%, 90%);
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
:root {
|
|
978
|
+
--mint-c-fg: var(--mint-c-bw-8);
|
|
979
|
+
--mint-c-bg: var(--mint-c-bw-1);
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
.mint-theme-dark {
|
|
983
|
+
--mint-c-fg: var(--mint-c-bw-1);
|
|
984
|
+
--mint-c-bg: var(--mint-c-bw-8);
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
:root {
|
|
988
|
+
--mint-c-font-text: sans-serif;
|
|
989
|
+
--mint-c-font-title: serif;
|
|
990
|
+
--mint-c-font-h: 1.25;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
:root {
|
|
994
|
+
--mint-br: 1rem;
|
|
995
|
+
--mint-bw: 0.125rem;
|
|
996
|
+
--mint-gap: 0.25rem;
|
|
997
|
+
--mint-p-min: var(--mint-gap);
|
|
998
|
+
--mint-p-max: calc(var(--mint-gap) * 8);
|
|
999
|
+
--mint-p-val: 1vw;
|
|
1000
|
+
--mint-p-clamp: clamp(var(--mint-p-min), var(--mint-p-val), var(--mint-p-max));
|
|
1001
|
+
--mint-p-exit: clamp(var(--mint-p-min) * -1, var(--mint-p-val) * -1, var(--mint-p-max) * -1);
|
|
1002
|
+
--mint-p-exit-width: clamp(100% + var(--mint-p-min) * 2, 100% + var(--mint-p-val) * 2, 100% + var(--mint-p-max) * 2);
|
|
1003
|
+
--mint-shadow-c: var(--mint-glow-2);
|
|
1004
|
+
--mint-shadow-s: 0 0 2rem -0.5rem;
|
|
1005
|
+
--mint-xs: 30px;
|
|
1006
|
+
--mint-sm: 48px;
|
|
1007
|
+
--mint-md: 64px;
|
|
1008
|
+
--mint-lg: 75px;
|
|
1009
|
+
--mint-xl: 90px;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
/*# sourceMappingURL=index.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../src/components/form/input/toggle.scss","../src/util/selector.scss","../src/components/section/grid.scss","../src/components/ui/button.scss","../src/util/break.scss","../src/components/ui/image.scss","../src/components/ui/tooltip.scss","../src/components/widget/accordion.scss","../src/components/widget/card.scss","../src/components/widget/modal.scss","../src/global/aspect.scss","../src/global/mask.scss","../src/global/size.scss","../src/themes/colors.scss","../src/themes/fonts.scss","../src/themes/structure.scss"],"names":[],"mappings":";AAEA;ECsPC;EAAA;EAAA;EAAA;EAAA;EAAA;;;AD3OC;EC2OD;;AD3OC;EC2OD;;AD3OC;EC2OD;;AD3OC;EC2OD;;AD3OC;EC2OD;;AD3OC;EC2OD;;AD3OC;EC2OD;;AD3OC;EC2OD;;AD3OC;EC2OD;;AD3OC;EC2OD;;;ADrOD;EACC;EACA;EACA;EACA;;AAIE;EACC;;AAIF;EAEC;EACA;EACA;EACA,OAJc;EAKd,QALc;EAMd;;AAEA;EACC;;;AEjCJ;ED+OC;EAAA;;;ACzOA;EACC;EACA;EACA;;;ACTF;EF+OC;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;;;AE1NA;EF0NA;EAAA;;;AEpND;AAAA;EAEC;;;AAGD;AAAA;AAAA;AAAA;AAAA;AAAA;EAKC;;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;EACC;EACA;;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;EACC;;AAKD;AAAA;AAAA;AAAA;AAAA;AAAA;EACC;;AAGD;AAAA;AAAA;AAAA;AAAA;AAAA;EACC;;AAGD;AAAA;AAAA;AAAA;AAAA;AAAA;EACC;;;AAMH;AAAA;AAAA;AAAA;EAIC;;;AAGD;AAAA;EAEI;;;AAGJ;AAAA;AAAA;EAGC;EACA;EACA;EACG;EACA;EACA;EACH;EACG;EACH;;;AAGD;AAAA;AAAA;EAGI;EACA;EACA;EACA;EACA;;AClDF;ED2CF;AAAA;AAAA;IAUQ;;;AFyMN;EErMM;EACA;;AAEN;EACC;;;AAIC;AAAA;AAAA;EACF;EACA;;AF2LA;EExLC;EACG;;;AAIL;AAAA;AAAA;EACO;EACA;;AFiLN;EE9KU;EACA;EACA;;;AAGV;AAAA;AAAA;EACC;EACA;EACA;;AFsKD;EEnKE;EACA;EACA;;;AAMH;AAAA;AAAA;EACC;;AAEA;AAAA;AAAA;EACC;;AAGD;AAAA;AAAA;EACC;;;AAMH;EACI;EACH;;AAGA;EACC;EACA;EACA;EACA;;AAGC;EACC;;;AC9HF;EDsHD;IAaE;;;AAIA;EACC;;AAIF;EACC;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;;AAMH;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAIE;EACC;EACA;EACA;;AAKD;EACC;EACA;EACA;;AAKH;EACC;EACA;EACA;EACA;;AFoED;EEjEE;;;AAQQ;EACI;;;AAYhB;EACI;EACH;EACG;;;AAIH;EACC;;;AAKE;EACI;EACA;;;AAKR;EACC;EACA;EACA;EACA;EACA;EACA;;AC5OC;EDsOF;IASE;;;AAGE;EACI;;AAEA;EACI;;ACtPV;EDkPE;IAQQ;;;AAKJ;EACI;;;AChQV;EDwQA;AAAA;IAEE;IACA;;;;AE1TJ;EJ+OC;EAAA;;;AIrOO;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;;;AAKR;EACC;EACA;;;AC/BD;EL+OC;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;;;AKjOD;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACH;EACA;EACG;;AAGI;EACI;EACA;;AAIJ;EACI;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACF;EACM;EACA;;AAGI;EACI;;;ACxGZ;EACI;;AAEA;EACI;EACA;;;ACRZ;EPgPC;EAAA;EAAA;EAAA;EAAA;EAAA;;;AOtOA;EPsOA;;;AOjOD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AJyBC;EIjCF;IAWE;;EAEA;IACC;;;AAIF;EACC;;AAEA;EACC;;AAMA;EACC;EACA;;AAEA;EACC;;AAOD;EACC;;AAMF;EACC;;AApBD;EACC;EACA;;AAEA;EACC;;AAOD;EACC;;AAMF;EACC;;AAqBH;EACC;EACA;;AJtCA;EIoCD;IAKE;IACA;IACA;IACA;;EAEA;IACC;IACA;IACA;IACA;;EAEA;IACC;IACA;;EAIF;IACC;IACA;IACA;IACA;IACA;;;AJ/DF;EImEA;IAEE;;EAEA;IACC;IACA;;;AAMJ;EACC;;AJhFA;EI+ED;IAIE;;;AAGD;EACC;;AJvFD;EI0FA;IAEE;;;AAKH;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;;AAIF;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AJxHA;EIiHD;IAUE;IACA;;;AAGD;EACC;;AAGD;EACC;EACA;EACA;EACA;;AAEA;EACC;EACA;;AAGD;EACC;EACA;EACA;EACA;;AAIF;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;;AAEA;EACC;;AAKH;EACC;;AJ1KA;EIyKD;IAIE;;;AAIF;EACC;EACA;;AAGC;EACC;EACA;EACA;EACA;;AAEA;EACC;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAOD;EACC;;;AAKH;EACC;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;;AAIF;EACC;EACA;;AAEA;EACC;;AAMF;EACC;EACA;;;AAOF;AAAA;EACC;;AAEA;AAAA;EACC;;AJ9PD;EI6PA;AAAA;IAIE;;;AJjQF;EIoQC;AAAA;IAEE;;;AAKH;AAAA;EACC;;AJ5QD;EI+QA;AAAA;IAEE;;;AAIF;AAAA;EACC;;AAEA;AAAA;EACC;;;ACxUJ;ER+OC;;;AQ3OD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;;AAIF;EACC;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACjDF;ET+OC;EAAA;;;ASzOD;EACC;EACA;EACA;EACA;;AAGC;EACC;;ANiCD;EMlCA;IAIE;;;AN8BF;EMlCA;IAQE;;;AN0BF;EMlCA;IAYE;;;AAIF;EACC;;AAIF;EACC;EACA;EACA;EACA;EACA;EACA;;;ACvCF;EACC;EACA;;;ACFD;EACC;EACA;EACA;;;ACHD;EZ8OC;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;;;AY9ND;EZ8NC;EAAA;;;AYvNA;EZuNA;EAAA;;;Aa9OD;Eb8OC;EAAA;EAAA;;;ActPD;EdsPC;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA","file":"index.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--mint-check-s:1;--mint-check-p:0.25rem;--mint-check-h:1.5rem;--mint-check-bw:0.125rem;--mint-check-fs:0.5rem;--mint-check-br:var(--mint-br)}.mint-toggle.mint-1{--mint-check-s:1}.mint-toggle.mint-2{--mint-check-s:2}.mint-toggle.mint-3{--mint-check-s:3}.mint-toggle.mint-4{--mint-check-s:4}.mint-toggle.mint-5{--mint-check-s:5}.mint-toggle.mint-6{--mint-check-s:6}.mint-toggle.mint-7{--mint-check-s:7}.mint-toggle.mint-8{--mint-check-s:8}.mint-toggle.mint-9{--mint-check-s:9}.mint-toggle.mint-10{--mint-check-s:10}.mint-check{height:calc((var(--mint-check-h) + var(--mint-check-bw)*2)*var(--mint-check-s));width:calc((var(--mint-check-h) - var(--mint-check-p) + var(--mint-check-bw))*var(--mint-check-s)*2);border:calc(var(--mint-check-bw)*var(--mint-check-s)) solid var(--mint-brand-2);border-radius:calc(var(--mint-check-br)*var(--mint-check-s))}.mint-check [type=checkbox]:checked+span{left:calc(100% - (var(--mint-check-h) - var(--mint-check-p))*var(--mint-check-s))}.mint-check [type=checkbox]+span{top:calc(var(--mint-check-p)*var(--mint-check-s));left:calc(var(--mint-check-p)*var(--mint-check-s));transform:translateX(0);width:calc((var(--mint-check-h) - var(--mint-check-p)*2)*var(--mint-check-s));height:calc((var(--mint-check-h) - var(--mint-check-p)*2)*var(--mint-check-s));border-radius:calc(var(--mint-check-br)*var(--mint-check-s))}.mint-check [type=checkbox]+span i{font-size:calc(var(--mint-check-fs)*var(--mint-check-s))}:root{--mint-grid-gap:var(--mint-gap);--mint-grid-fit-w:var(--mint-xs)}.mint-grid-fit{display:grid;grid-template-columns:repeat(minmax(min(var(--mint-grid-fit-w), 100%), 1fr));gap:var(--mint-grid-gap)}:root{--mint-btn-pv:calc(var(--mint-gap) * 2);--mint-btn-ph:calc(var(--mint-gap) * 4);--mint-btn-br:var(--mint-br);--mint-btn-bw:var(--mint-bw);--mint-btn-bc:var(--mint-brand-4);--mint-btn-fg:var(--mint-c-fg);--mint-btn-fg-hover:var(--mint-back);--mint-btn-fg-alt:var(--mint-btn-bc);--mint-btn-fg-alt-hover:var(--mint-btn-fg-hover);--mint-btn-bg:var(--mint-brand-2);--mint-btn-bg-hover:var(--mint-btn-bc);--mint-btn-bg-alt:var(--mint-clear);--mint-btn-bg-alt-hover:var(--mint-accent-2);--mint-pill-pv:0;--mint-pill-ph:calc(var(--mint-gap) * 3);--mint-pill-br:var(--mint-br)}.mint-theme-dark{--mint-btn-bg:var(--mint-brand-5);--mint-btn-bc:var(--mint-brand-2)}button,a[routerLink]{cursor:pointer}a,button,.mint-btn,.mint-select,.mint-btn-icon,.mint-pill{font-size:inherit}a[disabled],button[disabled],.mint-btn[disabled],[disabled].mint-select,.mint-btn-icon[disabled],.mint-pill[disabled]{filter:grayscale(1) brightness(0.75) !important;pointer-events:none !important}a[disabled].mint-fall-in:not(.mint-show),button[disabled].mint-fall-in:not(.mint-show),.mint-btn[disabled].mint-fall-in:not(.mint-show),[disabled].mint-fall-in.mint-select:not(.mint-show),.mint-btn-icon[disabled].mint-fall-in:not(.mint-show),.mint-pill[disabled].mint-fall-in:not(.mint-show){filter:grayscale(1) brightness(0.75) opacity(0%) !important}a i:first-child,button i:first-child,.mint-btn i:first-child,.mint-select i:first-child,.mint-btn-icon i:first-child,.mint-pill i:first-child{margin-right:.5em}a i:last-child,button i:last-child,.mint-btn i:last-child,.mint-select i:last-child,.mint-btn-icon i:last-child,.mint-pill i:last-child{margin-left:.5em}a i:only-child,button i:only-child,.mint-btn i:only-child,.mint-select i:only-child,.mint-btn-icon i:only-child,.mint-pill i:only-child{margin:0}.mint-btn,.mint-select,.mint-pill,.mint-btn-group,.mint-btn-icon{flex-shrink:0}.mint-btn,.mint-select,.mint-btn-group{border-radius:var(--mint-btn-br)}.mint-btn,.mint-select,.mint-pill,.mint-btn-icon{width:fit-content;max-width:100%;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;user-select:none;transition-property:color,background-color,border-color;transition-duration:ms(300)}.mint-btn,.mint-select,.mint-pill,.mint-btn-group{display:inline-block;color:var(--mint-btn-fg);background:var(--mint-btn-bg);border:var(--mint-btn-bw) solid var(--mint-btn-bc);text-align:center}@media(min-width: 30rem){.mint-btn,.mint-select,.mint-pill,.mint-btn-group{width:fit-content}}.mint-btn:hover,.mint-select:hover,.mint-pill:hover,.mint-btn-group:hover .mint-btn:focus-visible,.mint-btn-group:hover .mint-select:focus-visible,.mint-pill:focus-visible,.mint-btn-group:focus-visible .mint-btn:active,.mint-btn-group:focus-visible .mint-select:active,.mint-pill:active,.mint-btn-group:active .mint-btn.mint-active,.mint-btn-group:active .mint-active.mint-select,.mint-pill.mint-active,.mint-btn-group.mint-active{color:var(--mint-btn-fg-hover);background:var(--mint-btn-bg-hover)}.mint-btn:hover i,.mint-select:hover i,.mint-pill:hover i,.mint-btn-group:hover .mint-btn:focus-visible i,.mint-btn-group:hover .mint-select:focus-visible i,.mint-pill:focus-visible i,.mint-btn-group:focus-visible .mint-btn:active i,.mint-btn-group:focus-visible .mint-select:active i,.mint-pill:active i,.mint-btn-group:active .mint-btn.mint-active i,.mint-btn-group:active .mint-active.mint-select i,.mint-pill.mint-active i,.mint-btn-group.mint-active i{color:inherit !important}.mint-btn.mint-reverse,.mint-reverse.mint-select,.mint-pill.mint-reverse,.mint-btn-group.mint-reverse{color:var(--mint-btn-fg-hover);background:var(--mint-btn-bg-hover)}.mint-btn.mint-reverse:hover,.mint-reverse.mint-select:hover,.mint-pill.mint-reverse:hover,.mint-btn-group.mint-reverse:hover .mint-btn.mint-reverse:focus-visible,.mint-btn-group.mint-reverse:hover .mint-reverse.mint-select:focus-visible,.mint-pill.mint-reverse:focus-visible,.mint-btn-group.mint-reverse:focus-visible .mint-btn.mint-reverse:active,.mint-btn-group.mint-reverse:focus-visible .mint-reverse.mint-select:active,.mint-pill.mint-reverse:active,.mint-btn-group.mint-reverse:active .mint-btn.mint-reverse.mint-active,.mint-btn-group.mint-reverse:active .mint-reverse.mint-active.mint-select,.mint-pill.mint-reverse.mint-active,.mint-btn-group.mint-reverse.mint-active{color:var(--mint-btn-fg);background:var(--mint-btn-bg)}.mint-btn.mint-alt,.mint-alt.mint-select,.mint-pill.mint-alt,.mint-btn-group.mint-alt{color:var(--mint-btn-fg-alt);background:var(--mint-btn-bg-alt)}.mint-btn.mint-alt:hover,.mint-alt.mint-select:hover,.mint-pill.mint-alt:hover,.mint-btn-group.mint-alt:hover .mint-btn.mint-alt:focus-visible,.mint-btn-group.mint-alt:hover .mint-alt.mint-select:focus-visible,.mint-pill.mint-alt:focus-visible,.mint-btn-group.mint-alt:focus-visible .mint-btn.mint-alt:active,.mint-btn-group.mint-alt:focus-visible .mint-alt.mint-select:active,.mint-pill.mint-alt:active,.mint-btn-group.mint-alt:active .mint-btn.mint-alt.mint-active,.mint-btn-group.mint-alt:active .mint-alt.mint-active.mint-select,.mint-pill.mint-alt.mint-active,.mint-btn-group.mint-alt.mint-active{color:var(--mint-btn-fg-alt-hover);background:var(--mint-btn-bg-alt-hover);border-color:var(--mint-btn-bg-alt-hover)}.mint-btn.mint-alt.mint-reverse,.mint-alt.mint-reverse.mint-select,.mint-pill.mint-alt.mint-reverse,.mint-btn-group.mint-alt.mint-reverse{color:var(--mint-btn-fg-alt-hover);background:var(--mint-btn-bg-alt-hover);border-color:var(--mint-btn-bg-alt-hover)}.mint-btn.mint-alt.mint-reverse:hover,.mint-alt.mint-reverse.mint-select:hover,.mint-pill.mint-alt.mint-reverse:hover,.mint-btn-group.mint-alt.mint-reverse:hover .mint-btn.mint-alt.mint-reverse:focus-visible,.mint-btn-group.mint-alt.mint-reverse:hover .mint-alt.mint-reverse.mint-select:focus-visible,.mint-pill.mint-alt.mint-reverse:focus-visible,.mint-btn-group.mint-alt.mint-reverse:focus-visible .mint-btn.mint-alt.mint-reverse:active,.mint-btn-group.mint-alt.mint-reverse:focus-visible .mint-alt.mint-reverse.mint-select:active,.mint-pill.mint-alt.mint-reverse:active,.mint-btn-group.mint-alt.mint-reverse:active .mint-btn.mint-alt.mint-reverse.mint-active,.mint-btn-group.mint-alt.mint-reverse:active .mint-alt.mint-reverse.mint-active.mint-select,.mint-pill.mint-alt.mint-reverse.mint-active,.mint-btn-group.mint-alt.mint-reverse.mint-active{color:var(--mint-btn-bc);background:var(--mint-btn-bg-alt);border-color:var(--mint-btn-bg-alt)}.mint-btn a,.mint-select a,.mint-pill a,.mint-btn-group a{color:inherit}.mint-btn a:hover,.mint-select a:hover,.mint-pill a:hover,.mint-btn-group a:hover{color:inherit}.mint-btn a i,.mint-select a i,.mint-pill a i,.mint-btn-group a i{display:none}.mint-btn,.mint-select{padding:var(--mint-btn-pv) var(--mint-btn-ph);cursor:pointer}.mint-btn-icon{display:block;text-align:center;background:none;border:none}.mint-btn-icon:hover .mint-btn-icon:focus-visible .mint-btn-icon:active .mint-btn-icon.mint-active i{color:var(--mint-btn-bg-alt-hover)}@media(min-width: 30rem){.mint-btn-icon{display:inline-block}}.mint-btn-icon.mint-lg i{font-size:4rem}.mint-btn-icon i{display:inline-flex;align-items:center;margin:0 !important;color:var(--mint-btn-bc);font-size:1.5rem}.mint-btn-icon i::before{transition:color ms(300);padding:2px}.mint-btn-group{display:flex;width:fit-content;max-width:100%;margin:auto;padding:0;overflow:visible;transition:all ms(300)}.mint-btn-group>*:first-child,.mint-btn-group>*:first-child button{padding:var(--mint-btn-pv) 0 var(--mint-btn-pv) var(--mint-btn-ph);border-top-left-radius:var(--mint-btn-br);border-bottom-left-radius:var(--mint-btn-br)}.mint-btn-group>*:last-child,.mint-btn-group>*:last-child button{padding:var(--mint-btn-pv) var(--mint-btn-ph) var(--mint-btn-pv) 0;border-top-right-radius:var(--mint-btn-br);border-bottom-right-radius:var(--mint-btn-br)}.mint-btn-group button{width:100%;border:none;color:inherit;background:rgba(0,0,0,0)}.mint-btn-group button:hover .mint-btn-group button:focus-visible .mint-btn-group button:active .mint-btn-group button.mint-active{background:var(--mint-brand-5)}.mint-btn-submit.mint-success[disabled]{filter:none !important}.mint-pill{padding:var(--mint-pill-pv) var(--mint-pill-ph);border-radius:var(--mint-pill-br);line-height:2}a.mint-pill,button.mint-pill{min-width:5rem}p .mint-pill,p .mint-btn,p .mint-select{line-height:1.5rem;vertical-align:middle}.mint-buttons{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:1rem;overflow:hidden}@media(min-width: 30rem){.mint-buttons{justify-content:flex-start}}.mint-buttons>*{width:100%}.mint-buttons>* .mint-btn,.mint-buttons>* .mint-select,.mint-buttons>* .mint-pill{display:block}@media(min-width: 30rem){.mint-buttons>*{width:auto}}.mint-buttons .mint-buttons .mint-pill{width:100%}@media(min-width: 30rem){.mint-grid.mint-3 .mint-buttons>*,.mint-grid.mint-4 .mint-buttons>*{width:100%;margin:.5rem 0}}:root{--mint-img-shadow-c:var(--mint-shadow-c);--mint-img-shadow-s:var(--mint-shadow-s)}.mint-image.mint-error::after{content:"❌ Image failed to load. This is a placeholder.";position:absolute;bottom:0;left:0;width:100%;padding:0 var(--mint-img-shadow-s) var(--mint-img-shadow-s) var(--mint-img-shadow-s);background:var(--mint-img-shadow-c);box-shadow:0 0 var(--mint-img-shadow-s) var(--mint-img-shadow-s) var(--mint-img-shadow-c);text-align:center}.mint-image img{display:block}.mint-banner{position:relative;width:100%}:root{--mint-tooltip-fg:var(--mint-c-fg);--mint-tooltip-bg:var(--mint-c-bg);--mint-tooltip-r:var(--mint-br);--mint-tooltip-shadow-c:var(--mint-shadow-c);--mint-tooltip-shadow-s:var(--mint-shadow-s);--mint-tooltip-p:0.5rem 1rem;--mint-tooltip-dist:0.5rem;--mint-tooltip-max-w:90vw;--mint-tooltip-line-h:1.5;--mint-tooltip-font-s:1rem;--mint-tooltip-arrow-s:0.5rem}.mint-tooltip{position:absolute;max-width:var(--mint-tooltip-max-w);border-radius:var(--mint-tooltip-r);padding:var(--mint-tooltip-p);opacity:0;color:var(--mint-tooltip-fg);background:var(--mint-tooltip-bg);box-shadow:var(--mint-tooltip-shadow-c) var(--mint-tooltip-shadow-s);font-size:var(--mint-tooltip-font-s);line-height:var(--mint-tooltip-line-h);transition:opacity .3s;user-select:none;pointer-events:none;white-space:nowrap}.mint-tooltip.mint-top::after,.mint-tooltip.mint-bottom::after{border-left:solid var(--mint-tooltip-arrow-s) rgba(0,0,0,0);border-right:solid var(--mint-tooltip-arrow-s) rgba(0,0,0,0)}.mint-tooltip.mint-left::after,.mint-tooltip.mint-right::after{border-top:solid var(--mint-tooltip-arrow-s) rgba(0,0,0,0);border-bottom:solid var(--mint-tooltip-arrow-s) rgba(0,0,0,0)}.mint-tooltip.mint-top{bottom:calc(100% + var(--mint-tooltip-arrow-s) + var(--mint-tooltip-dist));left:50%;transform:translateX(-50%)}.mint-tooltip.mint-top::after{bottom:calc(-1*var(--mint-tooltip-arrow-s) + 1px);left:50%;transform:translateX(-50%);border-top:solid var(--mint-tooltip-arrow-s) var(--mint-tooltip-bg)}.mint-tooltip.mint-left{right:calc(100% + var(--mint-tooltip-arrow-s) + var(--mint-tooltip-dist));top:50%;transform:translateY(-50%)}.mint-tooltip.mint-left::after{right:calc(-1*var(--mint-tooltip-arrow-s) + 1px);top:50%;transform:translateY(-50%);border-left:solid var(--mint-tooltip-arrow-s) var(--mint-tooltip-bg)}.mint-tooltip.mint-bottom{top:calc(100% + var(--mint-tooltip-arrow-s) + var(--mint-tooltip-dist));left:50%;transform:translateX(-50%)}.mint-tooltip.mint-bottom::after{top:calc(-1*var(--mint-tooltip-arrow-s) + 1px);left:50%;transform:translateX(-50%);border-bottom:solid var(--mint-tooltip-arrow-s) var(--mint-tooltip-bg)}.mint-tooltip.mint-right{left:calc(100% + var(--mint-tooltip-arrow-s) + var(--mint-tooltip-dist));top:50%;transform:translateY(-50%)}.mint-tooltip.mint-right::after{left:calc(-1*var(--mint-tooltip-arrow-s) + 1px);top:50%;transform:translateY(-50%);border-right:solid var(--mint-tooltip-arrow-s) var(--mint-tooltip-bg)}.mint-tooltip::after{content:"";position:absolute;width:0;height:0}.mint-tooltipped{display:inline-flex;position:relative;width:fit-content}.mint-tooltipped:hover .mint-tooltip{opacity:1}.mint-accordion .mint-item{cursor:pointer}.mint-accordion .mint-item .mint-wrapper{transition:height .3s ease;overflow:hidden}:root{--mint-card-p:calc(var(--mint-gap) * 8);--mint-card-logo-s:4rem;--mint-card-r:var(--mint-br);--mint-card-shadow-s:var(--mint-shadow-s);--mint-card-shadow-c:var(--mint-shadow-c);--mint-card-bg:var(--mint-c-bg-3)}.mint-theme-dark{--mint-card-bg:var(--mint-c-bg-5)}.mint-card{display:flex;flex-direction:column;position:relative;height:100%;max-width:100%;margin:0;border-radius:var(--mint-card-r);box-shadow:var(--mint-card-shadow-s) var(--mint-card-shadow-c)}@media(min-width: 48rem){.mint-card{flex-direction:row}.mint-card.mint-reverse{flex-direction:row-reverse}}.mint-card:has(.mint-carousel){box-shadow:none}.mint-card:has(.mint-carousel) .mint-content{box-shadow:var(--mint-card-shadow-s) var(--mint-card-shadow-c)}.mint-card.mint-center .mint-title{justify-content:center;text-align:center}.mint-card.mint-center .mint-title>div{width:auto}.mint-card.mint-center .mint-content>*{text-align:center}.mint-card.mint-center .mint-buttons{justify-content:center}.mint-card.mint-center-title .mint-title{justify-content:center;text-align:center}.mint-card.mint-center-title .mint-title>div{width:auto}.mint-card.mint-center-content .mint-content>*{text-align:center}.mint-card.mint-center-btns .mint-buttons{justify-content:center}.mint-card.mint-stagger{position:relative;width:100%}@media(min-width: 48rem){.mint-card.mint-stagger{flex-direction:row;border-radius:0;box-shadow:none;overflow:visible}.mint-card.mint-stagger>.mint-image{width:calc(50% + var(--mint-card-p));height:fit-content;margin-right:calc(var(--mint-card-p)*-2);border-radius:var(--mint-card-r)}.mint-card.mint-stagger>.mint-image img{height:100%;object-fit:cover}.mint-card.mint-stagger>.mint-content{height:fit-content;width:calc(50% + var(--mint-card-p));margin-top:calc(2*var(--mint-card-p));border-radius:var(--mint-card-r);box-shadow:var(--mint-card-shadow-s) var(--mint-card-shadow-c)}}@media(min-width: 48rem){.mint-card.mint-stagger.mint-reverse{flex-direction:row-reverse}.mint-card.mint-stagger.mint-reverse>.mint-image{margin-right:0;margin-left:calc(var(--mint-card-p)*-2)}}.mint-card>.mint-image{overflow:hidden}@media(min-width: 48rem){.mint-card>.mint-image{width:50%}}.mint-card>.mint-image:only-child{width:100%}@media(min-width: 48rem){.mint-card>.mint-image+.mint-content{width:50%}}.mint-card .mint-content{display:flex;flex-direction:column;gap:calc(var(--mint-gap)*2);position:relative;padding:var(--mint-card-p);background:var(--mint-card-bg);width:100%;overflow:hidden}.mint-card .mint-content>*{margin-top:0;margin-bottom:0}.mint-card .mint-title{display:flex;flex-direction:column;align-items:center;height:fit-content;gap:var(--mint-card-p);text-align:center;width:100%}@media(min-width: 30rem){.mint-card .mint-title{flex-direction:row;text-align:left}}.mint-card .mint-title:only-child{height:100%}.mint-card .mint-title>.mint-image{width:100%;height:100%;max-width:var(--mint-card-logo-s);max-height:var(--mint-card-logo-s)}.mint-card .mint-title>.mint-image.mint-large{max-width:calc(2*var(--mint-card-logo-s));max-height:calc(2*var(--mint-card-logo-s))}.mint-card .mint-title>.mint-image img{display:block;width:100%;height:100%;object-fit:contain}.mint-card .mint-title i{display:flex;align-items:center;justify-content:center;min-width:var(--mint-card-logo-s);max-width:var(--mint-card-logo-s);margin:0;font-size:calc(var(--mint-card-logo-s) - 1rem)}.mint-card .mint-title>div{width:100%}.mint-card .mint-title>div>*{margin:0}.mint-card .mint-date{text-align:center}@media(min-width: 30rem){.mint-card .mint-date{text-align:left}}.mint-card-grid{position:relative;background:var(--mint-card-bg)}.mint-card-grid:has(.mint-image) .mint-content{margin-top:25%;padding-top:25%;background:none;border:none}.mint-card-grid:has(.mint-image) .mint-content::before{opacity:0}.mint-card-grid:has(.mint-image) .mint-content::after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;opacity:.75;mask-image:none;background:linear-gradient(0deg, black, rgba(0, 0, 0, 0.7) 66%, var(--mint-shadow-0));transition:opacity ms(300) ease-in-out;z-index:-1}.mint-card-grid:hover .mint-content::after{opacity:1}.mint-card-grid .mint-image{position:absolute;top:0;left:0;width:100%;height:100%}.mint-card-grid .mint-image img{height:100%;object-fit:contain;object-position:top}.mint-card-grid .mint-content{justify-content:flex-end;background:var(--mint-shadow-0)}.mint-card-grid .mint-content .mint-buttons{margin-top:0 !important}.mint-card-actions .mint-content{flex-direction:row;justify-content:space-between}.mint-grid.mint-3 .mint-card,.mint-grid.mint-4 .mint-card{flex-direction:column !important}.mint-grid.mint-3 .mint-card>.mint-image,.mint-grid.mint-4 .mint-card>.mint-image{overflow:hidden}@media(min-width: 48rem){.mint-grid.mint-3 .mint-card>.mint-image,.mint-grid.mint-4 .mint-card>.mint-image{width:100%}}@media(min-width: 48rem){.mint-grid.mint-3 .mint-card>.mint-image+.mint-content,.mint-grid.mint-4 .mint-card>.mint-image+.mint-content{width:100%}}.mint-grid.mint-3 .mint-card .mint-content,.mint-grid.mint-4 .mint-card .mint-content{flex-grow:1}@media(min-width: 30rem){.mint-grid.mint-3 .mint-card .mint-title,.mint-grid.mint-4 .mint-card .mint-title{flex-direction:column}}.mint-grid.mint-3 .mint-card .mint-buttons,.mint-grid.mint-4 .mint-card .mint-buttons{margin-top:auto}.mint-grid.mint-3 .mint-card .mint-buttons .mint-btn,.mint-grid.mint-4 .mint-card .mint-buttons .mint-btn{width:100%}:root{--mint-modal-w:var(--mint-sm)}.mint-modal{position:fixed;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;max-width:var(--mint-modal-w);height:auto;max-height:calc(100% - var(--mint-p-clamp)*4);z-index:99999999;opacity:0;pointer-events:none;user-select:none;transition:opacity .3s ease-in-out}.mint-modal.mint-open{opacity:1;pointer-events:auto;user-select:text}.mint-modal.mint-open+.mint-modal-bg{pointer-events:auto;user-select:text;background-color:rgba(0,0,0,.4);backdrop-filter:blur(3rem)}.mint-modal .mint-content{overflow:auto}.mint-modal-bg{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0);backdrop-filter:blur(0rem);z-index:99999998;pointer-events:none;user-select:none;transition-duration:.3s;transition-property:background-color,backdrop-filter;transition-timing-function:ease-in-out}:root{--mint-aspect-w:16;--mint-aspect-h:9}.mint-aspect{position:relative;height:0;padding-top:calc(var(--mint-aspect-h)/var(--mint-aspect-w)*100%);overflow:hidden}.mint-aspect.mint-spotify,.mint-aspect.mint-spotify-playlist{padding-top:152px}@media(min-width: 30rem){.mint-aspect.mint-spotify,.mint-aspect.mint-spotify-playlist{padding-top:125%}}@media(min-width: 48rem){.mint-aspect.mint-spotify,.mint-aspect.mint-spotify-playlist{padding-top:75%}}@media(min-width: 64rem){.mint-aspect.mint-spotify,.mint-aspect.mint-spotify-playlist{padding-top:56.25%}}.mint-aspect.mint-spotify-podcast{padding-top:352px}.mint-aspect>:first-child{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;height:100%}.mint-circle{border-radius:50%;overflow:hidden}.mint-half-w{width:50%;margin-left:auto;margin-right:auto}:root{--mint-c-bw-0:black;--mint-c-bw-1:rgb(25.5, 25.5, 25.5);--mint-c-bw-2:#333333;--mint-c-bw-3:rgb(76.5, 76.5, 76.5);--mint-c-bw-4:#666666;--mint-c-bw-5:rgb(127.5, 127.5, 127.5);--mint-c-bw-6:#999999;--mint-c-bw-7:rgb(178.5, 178.5, 178.5);--mint-c-bw-8:#cccccc;--mint-c-bw-9:rgb(229.5, 229.5, 229.5);--mint-c-glow-0:rgba(255, 255, 255, 0);--mint-c-glow-1:rgba(255, 255, 255, 0.1);--mint-c-glow-2:rgba(255, 255, 255, 0.2);--mint-c-glow-3:rgba(255, 255, 255, 0.3);--mint-c-glow-4:rgba(255, 255, 255, 0.4);--mint-c-glow-5:rgba(255, 255, 255, 0.5);--mint-c-glow-6:rgba(255, 255, 255, 0.6);--mint-c-glow-7:rgba(255, 255, 255, 0.7);--mint-c-glow-8:rgba(255, 255, 255, 0.8);--mint-c-glow-9:rgba(255, 255, 255, 0.9);--mint-c-shadow-0:rgba(0, 0, 0, 0);--mint-c-shadow-1:rgba(0, 0, 0, 0.1);--mint-c-shadow-2:rgba(0, 0, 0, 0.2);--mint-c-shadow-3:rgba(0, 0, 0, 0.3);--mint-c-shadow-4:rgba(0, 0, 0, 0.4);--mint-c-shadow-5:rgba(0, 0, 0, 0.5);--mint-c-shadow-6:rgba(0, 0, 0, 0.6);--mint-c-shadow-7:rgba(0, 0, 0, 0.7);--mint-c-shadow-8:rgba(0, 0, 0, 0.8);--mint-c-shadow-9:rgba(0, 0, 0, 0.9);--mint-c-brand-0:hsl(220, 35%, 0%);--mint-c-brand-1:hsl(220, 35%, 10%);--mint-c-brand-2:hsl(220, 35%, 20%);--mint-c-brand-3:hsl(220, 35%, 30%);--mint-c-brand-4:hsl(220, 35%, 40%);--mint-c-brand-5:hsl(220, 35%, 50%);--mint-c-brand-6:hsl(220, 35%, 60%);--mint-c-brand-7:hsl(220, 35%, 70%);--mint-c-brand-8:hsl(220, 35%, 80%);--mint-c-brand-9:hsl(220, 35%, 90%);--mint-c-accent-0:hsl(248, 39%, 0%);--mint-c-accent-1:hsl(248, 39%, 10%);--mint-c-accent-2:hsl(248, 39%, 20%);--mint-c-accent-3:hsl(248, 39%, 30%);--mint-c-accent-4:hsl(248, 39%, 40%);--mint-c-accent-5:hsl(248, 39%, 50%);--mint-c-accent-6:hsl(248, 39%, 60%);--mint-c-accent-7:hsl(248, 39%, 70%);--mint-c-accent-8:hsl(248, 39%, 80%);--mint-c-accent-9:hsl(248, 39%, 90%);--mint-c-success-0:hsl(120, 62%, 0%);--mint-c-success-1:hsl(120, 62%, 10%);--mint-c-success-2:hsl(120, 62%, 20%);--mint-c-success-3:hsl(120, 62%, 30%);--mint-c-success-4:hsl(120, 62%, 40%);--mint-c-success-5:hsl(120, 62%, 50%);--mint-c-success-6:hsl(120, 62%, 60%);--mint-c-success-7:hsl(120, 62%, 70%);--mint-c-success-8:hsl(120, 62%, 80%);--mint-c-success-9:hsl(120, 62%, 90%);--mint-c-danger-0:hsl(0, 54%, 0%);--mint-c-danger-1:hsl(0, 54%, 10%);--mint-c-danger-2:hsl(0, 54%, 20%);--mint-c-danger-3:hsl(0, 54%, 30%);--mint-c-danger-4:hsl(0, 54%, 40%);--mint-c-danger-5:hsl(0, 54%, 50%);--mint-c-danger-6:hsl(0, 54%, 60%);--mint-c-danger-7:hsl(0, 54%, 70%);--mint-c-danger-8:hsl(0, 54%, 80%);--mint-c-danger-9:hsl(0, 54%, 90%);--mint-c-warning-0:hsl(37, 100%, 0%);--mint-c-warning-1:hsl(37, 100%, 10%);--mint-c-warning-2:hsl(37, 100%, 20%);--mint-c-warning-3:hsl(37, 100%, 30%);--mint-c-warning-4:hsl(37, 100%, 40%);--mint-c-warning-5:hsl(37, 100%, 50%);--mint-c-warning-6:hsl(37, 100%, 60%);--mint-c-warning-7:hsl(37, 100%, 70%);--mint-c-warning-8:hsl(37, 100%, 80%);--mint-c-warning-9:hsl(37, 100%, 90%);--mint-c-info-0:hsl(201, 50%, 0%);--mint-c-info-1:hsl(201, 50%, 10%);--mint-c-info-2:hsl(201, 50%, 20%);--mint-c-info-3:hsl(201, 50%, 30%);--mint-c-info-4:hsl(201, 50%, 40%);--mint-c-info-5:hsl(201, 50%, 50%);--mint-c-info-6:hsl(201, 50%, 60%);--mint-c-info-7:hsl(201, 50%, 70%);--mint-c-info-8:hsl(201, 50%, 80%);--mint-c-info-9:hsl(201, 50%, 90%)}:root{--mint-c-fg:var(--mint-c-bw-8);--mint-c-bg:var(--mint-c-bw-1)}.mint-theme-dark{--mint-c-fg:var(--mint-c-bw-1);--mint-c-bg:var(--mint-c-bw-8)}:root{--mint-c-font-text:sans-serif;--mint-c-font-title:serif;--mint-c-font-h:1.25}:root{--mint-br:1rem;--mint-bw:0.125rem;--mint-gap:0.25rem;--mint-p-min:var(--mint-gap);--mint-p-max:calc(var(--mint-gap) * 8);--mint-p-val:1vw;--mint-p-clamp:clamp(var(--mint-p-min), var(--mint-p-val), var(--mint-p-max));--mint-p-exit:clamp(var(--mint-p-min) * -1, var(--mint-p-val) * -1, var(--mint-p-max) * -1);--mint-p-exit-width:clamp(100% + var(--mint-p-min) * 2, 100% + var(--mint-p-val) * 2, 100% + var(--mint-p-max) * 2);--mint-shadow-c:var(--mint-glow-2);--mint-shadow-s:0 0 2rem -0.5rem;--mint-xs:30px;--mint-sm:48px;--mint-md:64px;--mint-lg:75px;--mint-xl:90px}/*# sourceMappingURL=index.min.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../src/components/form/input/toggle.scss","../src/util/selector.scss","../src/components/section/grid.scss","../src/components/ui/button.scss","../src/util/break.scss","../src/components/ui/image.scss","../src/components/ui/tooltip.scss","../src/components/widget/accordion.scss","../src/components/widget/card.scss","../src/components/widget/modal.scss","../src/global/aspect.scss","../src/global/mask.scss","../src/global/size.scss","../src/themes/colors.scss","../src/themes/fonts.scss","../src/themes/structure.scss"],"names":[],"mappings":"CAEA,MCsPC,6ID3OC,oBC2OD,iBD3OC,oBC2OD,iBD3OC,oBC2OD,iBD3OC,oBC2OD,iBD3OC,oBC2OD,iBD3OC,oBC2OD,iBD3OC,oBC2OD,iBD3OC,oBC2OD,iBD3OC,oBC2OD,iBD3OC,qBC2OD,kBDrOD,YACC,gFACA,qGACA,gFACA,6DAIE,yCACC,kFAIF,iCAEC,kDACA,mDACA,wBACA,MAJc,wEAKd,OALc,wEAMd,6DAEA,mCACC,yDEjCJ,MD+OC,iECzOA,eACC,aACA,6EACA,yBCTF,MF+OC,wjBE1NA,iBF0NA,oEEpND,qBAEC,eAGD,0DAKC,kBAEA,sHACC,gDACA,+BAEA,oSACC,4DAKD,8IACC,kBAGD,wIACC,iBAGD,wIACC,SAMH,iEAIC,cAGD,uCAEI,iCAGJ,iDAGC,kBACA,eACA,qBACG,uBACA,mBACA,gBACH,iBACG,wDACH,4BAGD,kDAGI,qBACA,yBACA,8BACA,mDACA,kBClDF,yBD2CF,kDAUQ,mBFyMN,+aErMM,+BACA,oCAEN,ycACC,yBAIC,sGACF,+BACA,oCF2LA,sqBExLC,yBACG,8BAIL,sFACO,6BACA,kCFiLN,0lBE9KU,mCACA,wCACA,0CAGV,0IACC,mCACA,wCACA,0CFsKD,i1BEnKE,yBACA,kCACA,oCAMH,0DACC,cAEA,kFACC,cAGD,kEACC,aAMH,uBACI,8CACH,eAGA,eACC,cACA,kBACA,gBACA,YAGC,qGACC,mCC9HF,yBDsHD,eAaE,sBAIA,yBACC,eAIF,iBACC,oBACA,mBACA,oBACA,yBACA,iBAEA,yBACC,yBACA,YAMH,gBACC,aACA,kBACA,eACA,YACA,UACA,iBACA,uBAIE,mEACC,mEACA,0CACA,6CAKD,iEACC,mEACA,2CACA,8CAKH,uBACC,WACA,YACA,cACA,yBFoED,mIEjEE,+BAQQ,wCACI,uBAYhB,WACI,gDACH,kCACG,cAIH,6BACC,eAKE,wCACI,mBACA,sBAKR,cACC,aACA,mBACA,uBACA,eACA,SACA,gBC5OC,yBDsOF,cASE,4BAGE,gBACI,WAEA,kFACI,cCtPV,yBDkPE,gBAQQ,YAKJ,uCACI,WChQV,yBDwQA,oEAEE,WACA,gBE1TJ,MJ+OC,kFIrOO,8BACI,yDACA,kBACA,SACA,OACA,WACA,qFACA,oCACA,0FACA,kBAIR,gBACI,cAKR,aACC,kBACA,WC/BD,ML+OC,qWKjOD,cACI,kBACA,oCACA,oCACA,8BACA,UACA,6BACA,kCACA,qEACA,qCACA,uCACA,uBACH,iBACA,oBACG,mBAGI,+DACI,4DACA,6DAIJ,+DACI,2DACA,8DAIR,uBACI,2EACA,SACA,2BAEA,8BACI,kDACA,SACA,2BACA,oEAGR,wBACI,0EACA,QACA,2BAEA,+BACI,iDACA,QACA,2BACA,qEAGR,0BACI,wEACA,SACA,2BAEA,iCACI,+CACA,SACA,2BACA,uEAGR,yBACI,yEACA,QACA,2BAEA,gCACI,gDACA,QACA,2BACA,sEAIR,qBACI,WACA,kBACA,QACA,SAGJ,iBACF,oBACM,kBACA,kBAGI,qCACI,UCxGZ,2BACI,eAEA,yCACI,2BACA,gBCRZ,MPgPC,mNOtOA,iBPsOA,kCOjOD,WACC,aACA,sBACA,kBACA,YACA,eACA,SACA,iCACA,+DJyBC,yBIjCF,WAWE,mBAEA,wBACC,4BAIF,+BACC,gBAEA,6CACC,+DAMA,mCACC,uBACA,kBAEA,uCACC,WAOD,uCACC,kBAMF,qCACC,uBApBD,yCACC,uBACA,kBAEA,6CACC,WAOD,+CACC,kBAMF,0CACC,uBAqBH,wBACC,kBACA,WJtCA,yBIoCD,wBAKE,mBACA,gBACA,gBACA,iBAEA,oCACC,qCACA,mBACA,yCACA,iCAEA,wCACC,YACA,iBAIF,sCACC,mBACA,qCACA,sCACA,iCACA,gEJ/DF,yBImEA,qCAEE,2BAEA,iDACC,eACA,yCAMJ,uBACC,gBJhFA,yBI+ED,uBAIE,WAGD,kCACC,WJvFD,yBI0FA,qCAEE,WAKH,yBACC,aACA,sBACA,4BACA,kBACA,2BACA,+BACA,WACA,gBAEA,2BACC,aACA,gBAIF,uBACC,aACA,sBACA,mBACA,mBACA,uBACA,kBACA,WJxHA,yBIiHD,uBAUE,mBACA,iBAGD,kCACC,YAGD,mCACC,WACA,YACA,kCACA,mCAEA,8CACC,0CACA,2CAGD,uCACC,cACA,WACA,YACA,mBAIF,yBACC,aACA,mBACA,uBACA,kCACA,kCACA,SACA,+CAGD,2BACC,WAEA,6BACC,SAKH,sBACC,kBJ1KA,yBIyKD,sBAIE,iBAIF,gBACC,kBACA,+BAGC,+CACC,eACA,gBACA,gBACA,YAEA,uDACC,UAGD,sDACC,WACA,kBACA,MACA,OACA,WACA,YACA,YACA,gBACA,sFACA,uCACA,WAOD,2CACC,UAKH,4BACC,kBACA,MACA,OACA,WACA,YAEA,gCACC,YACA,mBACA,oBAIF,8BACC,yBACA,gCAEA,4CACC,wBAMF,iCACC,mBACA,8BAOF,0DACC,iCAEA,kFACC,gBJ9PD,yBI6PA,kFAIE,YJjQF,yBIoQC,8GAEE,YAKH,sFACC,YJ5QD,yBI+QA,kFAEE,uBAIF,sFACC,gBAEA,0GACC,WCxUJ,MR+OC,8BQ3OD,YACC,eACA,QACA,SACA,gCACA,WACA,8BACA,YACA,8CACA,iBACA,UACA,oBACA,iBACA,mCAEA,sBACC,UACA,oBACA,iBAEA,qCACC,oBACA,iBACA,gCACA,2BAIF,0BACC,cAGD,eACC,eACA,MACA,OACA,WACA,YACA,+BACA,2BACA,iBACA,oBACA,iBACA,wBACA,qDACA,uCCjDF,MT+OC,qCSzOD,aACC,kBACA,SACA,iEACA,gBAGC,6DACC,kBNiCD,yBMlCA,6DAIE,kBN8BF,yBMlCA,6DAQE,iBN0BF,yBMlCA,6DAYE,oBAIF,kCACC,kBAIF,0BACC,kBACA,QACA,SACA,gCACA,WACA,YCvCF,aACC,kBACA,gBCFD,aACC,UACA,iBACA,kBCHD,MZ8OC,yrGY9ND,MZ8NC,8DYvNA,iBZuNA,8Da9OD,Mb8OC,6EctPD,MdsPC","file":"index.min.css"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appartmint/css-mint",
|
|
3
3
|
"author": "App Art Mint LLC",
|
|
4
|
-
"version": "0.0
|
|
4
|
+
"version": "0.1.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"description": "Styles by App Art Mint",
|
|
@@ -29,13 +29,17 @@
|
|
|
29
29
|
"dist/**/*.{css,map}"
|
|
30
30
|
],
|
|
31
31
|
"exports": {
|
|
32
|
-
".": "./
|
|
32
|
+
".": "./dist/index.css",
|
|
33
33
|
"./*": "./src/*.scss",
|
|
34
34
|
"./*/": "./src/*/index.scss"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"version": "npm i && git add -A",
|
|
38
38
|
"postversion": "git push && git push --tags && cross-replace gh release create \"v$npm_package_version\" --generate-notes",
|
|
39
|
+
"prepare": "run-s build",
|
|
40
|
+
"build": "run-p build:*",
|
|
41
|
+
"build:dev": "sass src/index.scss dist/index.css",
|
|
42
|
+
"build:prod": "sass src/index.scss dist/index.min.css --style compressed",
|
|
39
43
|
"clean": "rimraf dist"
|
|
40
44
|
},
|
|
41
45
|
"devDependencies": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use '../../../util' as *;
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
|
-
@include css-var(check-
|
|
4
|
+
@include css-var(check-s, 1);
|
|
5
5
|
@include css-var(check-p, 0.25rem);
|
|
6
6
|
@include css-var(check-h, 1.5rem);
|
|
7
7
|
@include css-var(check-bw, 0.125rem);
|
|
@@ -12,35 +12,35 @@
|
|
|
12
12
|
#{class(toggle)} {
|
|
13
13
|
@for $i from 1 through 10 {
|
|
14
14
|
&#{class(#{$i})} {
|
|
15
|
-
@include css-var(check-
|
|
15
|
+
@include css-var(check-s, #{$i});
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
#{class(check)} {
|
|
21
|
-
height: calc((css-var(check-h) + css-var(check-bw) * 2) * css-var(check-
|
|
22
|
-
width: calc((css-var(check-h) - css-var(check-p) + css-var(check-bw)) * css-var(check-
|
|
23
|
-
border: calc(css-var(check-bw) * css-var(check-
|
|
24
|
-
border-radius: calc(css-var(check-br) * css-var(check-
|
|
21
|
+
height: calc((css-var(check-h) + css-var(check-bw) * 2) * css-var(check-s));
|
|
22
|
+
width: calc((css-var(check-h) - css-var(check-p) + css-var(check-bw)) * css-var(check-s) * 2);
|
|
23
|
+
border: calc(css-var(check-bw) * css-var(check-s)) solid css-var(brand-2);
|
|
24
|
+
border-radius: calc(css-var(check-br) * css-var(check-s));
|
|
25
25
|
|
|
26
26
|
[type="checkbox"] {
|
|
27
27
|
&:checked {
|
|
28
28
|
& + span {
|
|
29
|
-
left: calc(100% - (css-var(check-h) - css-var(check-p)) * css-var(check-
|
|
29
|
+
left: calc(100% - (css-var(check-h) - css-var(check-p)) * css-var(check-s));
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
& + span {
|
|
34
|
-
$handle-size: calc((css-var(check-h) - css-var(check-p) * 2) * css-var(check-
|
|
35
|
-
top: calc(css-var(check-p) * css-var(check-
|
|
36
|
-
left: calc(css-var(check-p) * css-var(check-
|
|
34
|
+
$handle-size: calc((css-var(check-h) - css-var(check-p) * 2) * css-var(check-s));
|
|
35
|
+
top: calc(css-var(check-p) * css-var(check-s));
|
|
36
|
+
left: calc(css-var(check-p) * css-var(check-s));
|
|
37
37
|
transform: translateX(0);
|
|
38
38
|
width: $handle-size;
|
|
39
39
|
height: $handle-size;
|
|
40
|
-
border-radius: calc(css-var(check-br) * css-var(check-
|
|
40
|
+
border-radius: calc(css-var(check-br) * css-var(check-s));
|
|
41
41
|
|
|
42
42
|
i {
|
|
43
|
-
font-size: calc(css-var(check-fs) * css-var(check-
|
|
43
|
+
font-size: calc(css-var(check-fs) * css-var(check-s));
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
}
|
package/src/util/color.scss
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
/// Imports
|
|
8
8
|
@use 'sass:color';
|
|
9
9
|
@use 'sass:math';
|
|
10
|
+
@use 'sass:meta';
|
|
11
|
+
@use './selector' as *;
|
|
10
12
|
|
|
11
13
|
/// Get the luminance of a color
|
|
12
14
|
/// @group Functions
|
|
@@ -54,7 +56,7 @@
|
|
|
54
56
|
}
|
|
55
57
|
} @else {
|
|
56
58
|
@for $i from 0 through $number - 1 {
|
|
57
|
-
$amount: math.div($i, $number)
|
|
59
|
+
$amount: math.div($i, $number) * 100%;
|
|
58
60
|
@include css-var(#{$name}-#{$i}, color.change($color, $lightness: $amount));
|
|
59
61
|
}
|
|
60
62
|
}
|