@spiritov/ds.css 1.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/.vscode/settings.json +5 -0
- package/CNAME +1 -0
- package/LICENSE +21 -0
- package/README.md +2 -0
- package/dist/assets/fonts/nitrods-font.ttf +0 -0
- package/dist/assets/svg/alert_border.svg +1 -0
- package/dist/assets/svg/bottom_bar_bottom.svg +1 -0
- package/dist/assets/svg/bottom_bar_top.svg +1 -0
- package/dist/assets/svg/button.svg +1 -0
- package/dist/assets/svg/button_active.svg +1 -0
- package/dist/assets/svg/button_lg.svg +1 -0
- package/dist/assets/svg/button_lg_active.svg +1 -0
- package/dist/assets/svg/button_radio.svg +1 -0
- package/dist/assets/svg/button_square.svg +1 -0
- package/dist/assets/svg/button_square_active.svg +1 -0
- package/dist/assets/svg/details.svg +1 -0
- package/dist/assets/svg/details_head.svg +1 -0
- package/dist/assets/svg/details_output.svg +1 -0
- package/dist/assets/svg/favicon.svg +1 -0
- package/dist/assets/svg/grid_lg.svg +1 -0
- package/dist/assets/svg/info.svg +1 -0
- package/dist/assets/svg/info_border.svg +1 -0
- package/dist/assets/svg/info_square.svg +1 -0
- package/dist/assets/svg/input.svg +1 -0
- package/dist/assets/svg/input_after.svg +1 -0
- package/dist/assets/svg/input_before.svg +1 -0
- package/dist/assets/svg/pictochat_border.svg +1 -0
- package/dist/assets/svg/pictochat_message_border.svg +1 -0
- package/dist/assets/svg/pictochat_status.svg +1 -0
- package/dist/assets/svg/top_bar.svg +1 -0
- package/dist/ds.css +721 -0
- package/package.json +35 -0
- package/src/assets/fonts/nitrods-font.ttf +0 -0
- package/src/assets/svg/alert_border.svg +1 -0
- package/src/assets/svg/bottom_bar_bottom.svg +1 -0
- package/src/assets/svg/bottom_bar_top.svg +1 -0
- package/src/assets/svg/button.svg +1 -0
- package/src/assets/svg/button_active.svg +1 -0
- package/src/assets/svg/button_lg.svg +1 -0
- package/src/assets/svg/button_lg_active.svg +1 -0
- package/src/assets/svg/button_radio.svg +1 -0
- package/src/assets/svg/button_square.svg +1 -0
- package/src/assets/svg/button_square_active.svg +1 -0
- package/src/assets/svg/details.svg +1 -0
- package/src/assets/svg/details_head.svg +1 -0
- package/src/assets/svg/details_output.svg +1 -0
- package/src/assets/svg/favicon.svg +1 -0
- package/src/assets/svg/grid_lg.svg +1 -0
- package/src/assets/svg/info.svg +1 -0
- package/src/assets/svg/info_border.svg +1 -0
- package/src/assets/svg/info_square.svg +1 -0
- package/src/assets/svg/input.svg +1 -0
- package/src/assets/svg/input_after.svg +1 -0
- package/src/assets/svg/input_before.svg +1 -0
- package/src/assets/svg/pictochat_border.svg +1 -0
- package/src/assets/svg/pictochat_message_border.svg +1 -0
- package/src/assets/svg/pictochat_status.svg +1 -0
- package/src/assets/svg/top_bar.svg +1 -0
- package/src/ds.css +723 -0
- package/src/ds.html +133 -0
- package/src/input_tw_old.css +586 -0
- package/src/landing.html +346 -0
- package/src/output.css +812 -0
- package/src/test.html +67 -0
package/src/output.css
ADDED
|
@@ -0,0 +1,812 @@
|
|
|
1
|
+
/*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer theme, base, components, utilities;
|
|
3
|
+
@layer theme {
|
|
4
|
+
:root, :host {
|
|
5
|
+
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
6
|
+
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
7
|
+
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
8
|
+
"Courier New", monospace;
|
|
9
|
+
--color-black: #000;
|
|
10
|
+
--color-white: #fff;
|
|
11
|
+
--spacing: 0.25rem;
|
|
12
|
+
--container-lg: 32rem;
|
|
13
|
+
--container-xl: 36rem;
|
|
14
|
+
--container-3xl: 48rem;
|
|
15
|
+
--text-xs: 0.75rem;
|
|
16
|
+
--text-xs--line-height: calc(1 / 0.75);
|
|
17
|
+
--text-2xl: 1.5rem;
|
|
18
|
+
--text-2xl--line-height: calc(2 / 1.5);
|
|
19
|
+
--default-font-family: var(--font-sans);
|
|
20
|
+
--default-mono-font-family: var(--font-mono);
|
|
21
|
+
--font-system: 'ds-system', 'system-ui';
|
|
22
|
+
--color-ds-darkgrey: #494949;
|
|
23
|
+
--color-ds-info-bg: #282828;
|
|
24
|
+
--color-ds-pictochat-bg: #aaaaaa;
|
|
25
|
+
--color-ds-pictochat-border: #bababa;
|
|
26
|
+
--color-ds-grid-border: #c3c3c3;
|
|
27
|
+
--color-ds-grid-bg: #e3e3e3;
|
|
28
|
+
--color-ds-text-focus: #e36100;
|
|
29
|
+
--color-ds-loading: #fbd300;
|
|
30
|
+
--color-ds-theme-slate: #61829a;
|
|
31
|
+
--color-ds-theme-maroon: #ba4900;
|
|
32
|
+
--color-ds-theme-red: #fb0018;
|
|
33
|
+
--color-ds-theme-pink: #fb8afb;
|
|
34
|
+
--color-ds-theme-orange: #fb9200;
|
|
35
|
+
--color-ds-theme-yellow: #f3e300;
|
|
36
|
+
--color-ds-theme-neonyellow: #aafb00;
|
|
37
|
+
--color-ds-theme-lime: #00fb00;
|
|
38
|
+
--color-ds-theme-green: #00a238;
|
|
39
|
+
--color-ds-theme-teal: #49db8a;
|
|
40
|
+
--color-ds-theme-turquoise: #30baf3;
|
|
41
|
+
--color-ds-theme-blue: #0059f3;
|
|
42
|
+
--color-ds-theme-navy: #000092;
|
|
43
|
+
--color-ds-theme-darkpurple: #8a00d3;
|
|
44
|
+
--color-ds-theme-magenta: #d300eb;
|
|
45
|
+
--color-ds-theme-fuschia: #fb0092;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
@layer base {
|
|
49
|
+
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
50
|
+
box-sizing: border-box;
|
|
51
|
+
margin: 0;
|
|
52
|
+
padding: 0;
|
|
53
|
+
border: 0 solid;
|
|
54
|
+
}
|
|
55
|
+
html, :host {
|
|
56
|
+
line-height: 1.5;
|
|
57
|
+
-webkit-text-size-adjust: 100%;
|
|
58
|
+
tab-size: 4;
|
|
59
|
+
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
60
|
+
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
61
|
+
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
62
|
+
-webkit-tap-highlight-color: transparent;
|
|
63
|
+
}
|
|
64
|
+
hr {
|
|
65
|
+
height: 0;
|
|
66
|
+
color: inherit;
|
|
67
|
+
border-top-width: 1px;
|
|
68
|
+
}
|
|
69
|
+
abbr:where([title]) {
|
|
70
|
+
-webkit-text-decoration: underline dotted;
|
|
71
|
+
text-decoration: underline dotted;
|
|
72
|
+
}
|
|
73
|
+
h1, h2, h3, h4, h5, h6 {
|
|
74
|
+
font-size: inherit;
|
|
75
|
+
font-weight: inherit;
|
|
76
|
+
}
|
|
77
|
+
a {
|
|
78
|
+
color: inherit;
|
|
79
|
+
-webkit-text-decoration: inherit;
|
|
80
|
+
text-decoration: inherit;
|
|
81
|
+
}
|
|
82
|
+
b, strong {
|
|
83
|
+
font-weight: bolder;
|
|
84
|
+
}
|
|
85
|
+
code, kbd, samp, pre {
|
|
86
|
+
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
87
|
+
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
88
|
+
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
89
|
+
font-size: 1em;
|
|
90
|
+
}
|
|
91
|
+
small {
|
|
92
|
+
font-size: 80%;
|
|
93
|
+
}
|
|
94
|
+
sub, sup {
|
|
95
|
+
font-size: 75%;
|
|
96
|
+
line-height: 0;
|
|
97
|
+
position: relative;
|
|
98
|
+
vertical-align: baseline;
|
|
99
|
+
}
|
|
100
|
+
sub {
|
|
101
|
+
bottom: -0.25em;
|
|
102
|
+
}
|
|
103
|
+
sup {
|
|
104
|
+
top: -0.5em;
|
|
105
|
+
}
|
|
106
|
+
table {
|
|
107
|
+
text-indent: 0;
|
|
108
|
+
border-color: inherit;
|
|
109
|
+
border-collapse: collapse;
|
|
110
|
+
}
|
|
111
|
+
:-moz-focusring {
|
|
112
|
+
outline: auto;
|
|
113
|
+
}
|
|
114
|
+
progress {
|
|
115
|
+
vertical-align: baseline;
|
|
116
|
+
}
|
|
117
|
+
summary {
|
|
118
|
+
display: list-item;
|
|
119
|
+
}
|
|
120
|
+
ol, ul, menu {
|
|
121
|
+
list-style: none;
|
|
122
|
+
}
|
|
123
|
+
img, svg, video, canvas, audio, iframe, embed, object {
|
|
124
|
+
display: block;
|
|
125
|
+
vertical-align: middle;
|
|
126
|
+
}
|
|
127
|
+
img, video {
|
|
128
|
+
max-width: 100%;
|
|
129
|
+
height: auto;
|
|
130
|
+
}
|
|
131
|
+
button, input, select, optgroup, textarea, ::file-selector-button {
|
|
132
|
+
font: inherit;
|
|
133
|
+
font-feature-settings: inherit;
|
|
134
|
+
font-variation-settings: inherit;
|
|
135
|
+
letter-spacing: inherit;
|
|
136
|
+
color: inherit;
|
|
137
|
+
border-radius: 0;
|
|
138
|
+
background-color: transparent;
|
|
139
|
+
opacity: 1;
|
|
140
|
+
}
|
|
141
|
+
:where(select:is([multiple], [size])) optgroup {
|
|
142
|
+
font-weight: bolder;
|
|
143
|
+
}
|
|
144
|
+
:where(select:is([multiple], [size])) optgroup option {
|
|
145
|
+
padding-inline-start: 20px;
|
|
146
|
+
}
|
|
147
|
+
::file-selector-button {
|
|
148
|
+
margin-inline-end: 4px;
|
|
149
|
+
}
|
|
150
|
+
::placeholder {
|
|
151
|
+
opacity: 1;
|
|
152
|
+
}
|
|
153
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
154
|
+
::placeholder {
|
|
155
|
+
color: currentcolor;
|
|
156
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
157
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
textarea {
|
|
162
|
+
resize: vertical;
|
|
163
|
+
}
|
|
164
|
+
::-webkit-search-decoration {
|
|
165
|
+
-webkit-appearance: none;
|
|
166
|
+
}
|
|
167
|
+
::-webkit-date-and-time-value {
|
|
168
|
+
min-height: 1lh;
|
|
169
|
+
text-align: inherit;
|
|
170
|
+
}
|
|
171
|
+
::-webkit-datetime-edit {
|
|
172
|
+
display: inline-flex;
|
|
173
|
+
}
|
|
174
|
+
::-webkit-datetime-edit-fields-wrapper {
|
|
175
|
+
padding: 0;
|
|
176
|
+
}
|
|
177
|
+
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
|
178
|
+
padding-block: 0;
|
|
179
|
+
}
|
|
180
|
+
::-webkit-calendar-picker-indicator {
|
|
181
|
+
line-height: 1;
|
|
182
|
+
}
|
|
183
|
+
:-moz-ui-invalid {
|
|
184
|
+
box-shadow: none;
|
|
185
|
+
}
|
|
186
|
+
button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
|
|
187
|
+
appearance: button;
|
|
188
|
+
}
|
|
189
|
+
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
|
190
|
+
height: auto;
|
|
191
|
+
}
|
|
192
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
|
193
|
+
display: none !important;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
@layer utilities {
|
|
197
|
+
.relative {
|
|
198
|
+
position: relative;
|
|
199
|
+
}
|
|
200
|
+
.top-5 {
|
|
201
|
+
top: calc(var(--spacing) * 5);
|
|
202
|
+
}
|
|
203
|
+
.m-4 {
|
|
204
|
+
margin: calc(var(--spacing) * 4);
|
|
205
|
+
}
|
|
206
|
+
.mt-16 {
|
|
207
|
+
margin-top: calc(var(--spacing) * 16);
|
|
208
|
+
}
|
|
209
|
+
.flex {
|
|
210
|
+
display: flex;
|
|
211
|
+
}
|
|
212
|
+
.grid {
|
|
213
|
+
display: grid;
|
|
214
|
+
}
|
|
215
|
+
.h-7\.5 {
|
|
216
|
+
height: calc(var(--spacing) * 7.5);
|
|
217
|
+
}
|
|
218
|
+
.h-10 {
|
|
219
|
+
height: calc(var(--spacing) * 10);
|
|
220
|
+
}
|
|
221
|
+
.h-48 {
|
|
222
|
+
height: calc(var(--spacing) * 48);
|
|
223
|
+
}
|
|
224
|
+
.h-dvh {
|
|
225
|
+
height: 100dvh;
|
|
226
|
+
}
|
|
227
|
+
.h-full {
|
|
228
|
+
height: 100%;
|
|
229
|
+
}
|
|
230
|
+
.min-h-dvh {
|
|
231
|
+
min-height: 100dvh;
|
|
232
|
+
}
|
|
233
|
+
.w-7 {
|
|
234
|
+
width: calc(var(--spacing) * 7);
|
|
235
|
+
}
|
|
236
|
+
.w-82 {
|
|
237
|
+
width: calc(var(--spacing) * 82);
|
|
238
|
+
}
|
|
239
|
+
.w-96 {
|
|
240
|
+
width: calc(var(--spacing) * 96);
|
|
241
|
+
}
|
|
242
|
+
.w-fit {
|
|
243
|
+
width: fit-content;
|
|
244
|
+
}
|
|
245
|
+
.w-full {
|
|
246
|
+
width: 100%;
|
|
247
|
+
}
|
|
248
|
+
.w-xl {
|
|
249
|
+
width: var(--container-xl);
|
|
250
|
+
}
|
|
251
|
+
.max-w-3xl {
|
|
252
|
+
max-width: var(--container-3xl);
|
|
253
|
+
}
|
|
254
|
+
.min-w-96 {
|
|
255
|
+
min-width: calc(var(--spacing) * 96);
|
|
256
|
+
}
|
|
257
|
+
.flex-shrink {
|
|
258
|
+
flex-shrink: 1;
|
|
259
|
+
}
|
|
260
|
+
.grid-cols-2 {
|
|
261
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
262
|
+
}
|
|
263
|
+
.grid-cols-4 {
|
|
264
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
265
|
+
}
|
|
266
|
+
.flex-col {
|
|
267
|
+
flex-direction: column;
|
|
268
|
+
}
|
|
269
|
+
.items-center {
|
|
270
|
+
align-items: center;
|
|
271
|
+
}
|
|
272
|
+
.items-end {
|
|
273
|
+
align-items: flex-end;
|
|
274
|
+
}
|
|
275
|
+
.justify-center {
|
|
276
|
+
justify-content: center;
|
|
277
|
+
}
|
|
278
|
+
.gap-2 {
|
|
279
|
+
gap: calc(var(--spacing) * 2);
|
|
280
|
+
}
|
|
281
|
+
.gap-3 {
|
|
282
|
+
gap: calc(var(--spacing) * 3);
|
|
283
|
+
}
|
|
284
|
+
.gap-3\.5 {
|
|
285
|
+
gap: calc(var(--spacing) * 3.5);
|
|
286
|
+
}
|
|
287
|
+
.gap-4 {
|
|
288
|
+
gap: calc(var(--spacing) * 4);
|
|
289
|
+
}
|
|
290
|
+
.gap-8 {
|
|
291
|
+
gap: calc(var(--spacing) * 8);
|
|
292
|
+
}
|
|
293
|
+
.bg-ds-text-focus {
|
|
294
|
+
background-color: var(--color-ds-text-focus);
|
|
295
|
+
}
|
|
296
|
+
.bg-ds-theme-blue {
|
|
297
|
+
background-color: var(--color-ds-theme-blue);
|
|
298
|
+
}
|
|
299
|
+
.bg-ds-theme-darkpurple {
|
|
300
|
+
background-color: var(--color-ds-theme-darkpurple);
|
|
301
|
+
}
|
|
302
|
+
.bg-ds-theme-fuschia {
|
|
303
|
+
background-color: var(--color-ds-theme-fuschia);
|
|
304
|
+
}
|
|
305
|
+
.bg-ds-theme-green {
|
|
306
|
+
background-color: var(--color-ds-theme-green);
|
|
307
|
+
}
|
|
308
|
+
.bg-ds-theme-lime {
|
|
309
|
+
background-color: var(--color-ds-theme-lime);
|
|
310
|
+
}
|
|
311
|
+
.bg-ds-theme-magenta {
|
|
312
|
+
background-color: var(--color-ds-theme-magenta);
|
|
313
|
+
}
|
|
314
|
+
.bg-ds-theme-maroon {
|
|
315
|
+
background-color: var(--color-ds-theme-maroon);
|
|
316
|
+
}
|
|
317
|
+
.bg-ds-theme-navy {
|
|
318
|
+
background-color: var(--color-ds-theme-navy);
|
|
319
|
+
}
|
|
320
|
+
.bg-ds-theme-neonyellow {
|
|
321
|
+
background-color: var(--color-ds-theme-neonyellow);
|
|
322
|
+
}
|
|
323
|
+
.bg-ds-theme-orange {
|
|
324
|
+
background-color: var(--color-ds-theme-orange);
|
|
325
|
+
}
|
|
326
|
+
.bg-ds-theme-pink {
|
|
327
|
+
background-color: var(--color-ds-theme-pink);
|
|
328
|
+
}
|
|
329
|
+
.bg-ds-theme-red {
|
|
330
|
+
background-color: var(--color-ds-theme-red);
|
|
331
|
+
}
|
|
332
|
+
.bg-ds-theme-slate {
|
|
333
|
+
background-color: var(--color-ds-theme-slate);
|
|
334
|
+
}
|
|
335
|
+
.bg-ds-theme-teal {
|
|
336
|
+
background-color: var(--color-ds-theme-teal);
|
|
337
|
+
}
|
|
338
|
+
.bg-ds-theme-turquoise {
|
|
339
|
+
background-color: var(--color-ds-theme-turquoise);
|
|
340
|
+
}
|
|
341
|
+
.bg-ds-theme-yellow {
|
|
342
|
+
background-color: var(--color-ds-theme-yellow);
|
|
343
|
+
}
|
|
344
|
+
.p-3\.5 {
|
|
345
|
+
padding: calc(var(--spacing) * 3.5);
|
|
346
|
+
}
|
|
347
|
+
.p-4 {
|
|
348
|
+
padding: calc(var(--spacing) * 4);
|
|
349
|
+
}
|
|
350
|
+
.p-7\.5 {
|
|
351
|
+
padding: calc(var(--spacing) * 7.5);
|
|
352
|
+
}
|
|
353
|
+
.px-10 {
|
|
354
|
+
padding-inline: calc(var(--spacing) * 10);
|
|
355
|
+
}
|
|
356
|
+
.pt-5 {
|
|
357
|
+
padding-top: calc(var(--spacing) * 5);
|
|
358
|
+
}
|
|
359
|
+
.pr-0 {
|
|
360
|
+
padding-right: 0;
|
|
361
|
+
}
|
|
362
|
+
.pl-1 {
|
|
363
|
+
padding-left: var(--spacing);
|
|
364
|
+
}
|
|
365
|
+
.text-2xl {
|
|
366
|
+
font-size: var(--text-2xl);
|
|
367
|
+
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
368
|
+
}
|
|
369
|
+
.text-xs {
|
|
370
|
+
font-size: var(--text-xs);
|
|
371
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
372
|
+
}
|
|
373
|
+
.text-wrap {
|
|
374
|
+
text-wrap: wrap;
|
|
375
|
+
}
|
|
376
|
+
.text-black {
|
|
377
|
+
color: var(--color-black);
|
|
378
|
+
}
|
|
379
|
+
.text-ds-theme-blue {
|
|
380
|
+
color: var(--color-ds-theme-blue);
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
@font-face {
|
|
384
|
+
font-family: 'ds-system';
|
|
385
|
+
src: url('./assets/fonts/nitrods-font.ttf') format('truetype');
|
|
386
|
+
}
|
|
387
|
+
.ds-slate {
|
|
388
|
+
background-color: var(--color-ds-theme-slate);
|
|
389
|
+
}
|
|
390
|
+
.ds-maroon {
|
|
391
|
+
background-color: var(--color-ds-theme-maroon);
|
|
392
|
+
}
|
|
393
|
+
.ds-red {
|
|
394
|
+
background-color: var(--color-ds-theme-red);
|
|
395
|
+
}
|
|
396
|
+
.ds-pink {
|
|
397
|
+
background-color: var(--color-ds-theme-pink);
|
|
398
|
+
}
|
|
399
|
+
.ds-orange {
|
|
400
|
+
background-color: var(--color-ds-theme-orange);
|
|
401
|
+
}
|
|
402
|
+
.ds-yellow {
|
|
403
|
+
background-color: var(--color-ds-theme-yellow);
|
|
404
|
+
}
|
|
405
|
+
.ds-neonyellow {
|
|
406
|
+
background-color: var(--color-ds-theme-neonyellow);
|
|
407
|
+
}
|
|
408
|
+
.ds-lime {
|
|
409
|
+
background-color: var(--color-ds-theme-lime);
|
|
410
|
+
}
|
|
411
|
+
.ds-green {
|
|
412
|
+
background-color: var(--color-ds-theme-green);
|
|
413
|
+
}
|
|
414
|
+
.ds-teal {
|
|
415
|
+
background-color: var(--color-ds-theme-teal);
|
|
416
|
+
}
|
|
417
|
+
.ds-turquoise {
|
|
418
|
+
background-color: var(--color-ds-theme-turquoise);
|
|
419
|
+
}
|
|
420
|
+
.ds-blue {
|
|
421
|
+
background-color: var(--color-ds-theme-blue);
|
|
422
|
+
}
|
|
423
|
+
.ds-navy {
|
|
424
|
+
background-color: var(--color-ds-theme-navy);
|
|
425
|
+
}
|
|
426
|
+
.ds-darkpurple {
|
|
427
|
+
background-color: var(--color-ds-theme-darkpurple);
|
|
428
|
+
}
|
|
429
|
+
.ds-magenta {
|
|
430
|
+
background-color: var(--color-ds-theme-magenta);
|
|
431
|
+
}
|
|
432
|
+
.ds-fuschia {
|
|
433
|
+
background-color: var(--color-ds-theme-fuschia);
|
|
434
|
+
}
|
|
435
|
+
@layer base {
|
|
436
|
+
:root {
|
|
437
|
+
font-family: var(--font-system);
|
|
438
|
+
-webkit-font-smoothing: none;
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
button, input[type='text'] {
|
|
442
|
+
border-style: solid;
|
|
443
|
+
border-width: 2px;
|
|
444
|
+
padding-inline: 0.25rem;
|
|
445
|
+
text-wrap: nowrap;
|
|
446
|
+
}
|
|
447
|
+
input[type='text'] {
|
|
448
|
+
height: calc(0.25rem * 8.5);
|
|
449
|
+
width: calc(0.25rem * 80.5);
|
|
450
|
+
border-color: black;
|
|
451
|
+
color: white;
|
|
452
|
+
outline-style: none;
|
|
453
|
+
& *::selection {
|
|
454
|
+
background-color: var(--color-ds-text-focus);
|
|
455
|
+
}
|
|
456
|
+
&::selection {
|
|
457
|
+
background-color: var(--color-ds-text-focus);
|
|
458
|
+
}
|
|
459
|
+
background: url('./assets/svg/input.svg') -1px;
|
|
460
|
+
}
|
|
461
|
+
input[type='radio'] {
|
|
462
|
+
height: calc(0.25rem * 15.5);
|
|
463
|
+
width: calc(0.25rem * 48);
|
|
464
|
+
appearance: none;
|
|
465
|
+
border-style: solid;
|
|
466
|
+
border-width: 2px;
|
|
467
|
+
border-color: var(--color-ds-darkgrey);
|
|
468
|
+
background-image: url('./assets/svg/button_radio.svg');
|
|
469
|
+
}
|
|
470
|
+
input[type='radio']:checked {
|
|
471
|
+
background-blend-mode: hard-light;
|
|
472
|
+
}
|
|
473
|
+
button {
|
|
474
|
+
height: calc(0.25rem * 9);
|
|
475
|
+
width: calc(0.25rem * 40);
|
|
476
|
+
cursor: pointer;
|
|
477
|
+
border-color: var(--color-ds-darkgrey);
|
|
478
|
+
padding-inline: calc(0.25rem * 0.5);
|
|
479
|
+
background-blend-mode: hard-light;
|
|
480
|
+
background-image: url('./assets/svg/button.svg');
|
|
481
|
+
clip-path: polygon( 2px 100%, 2px calc(100% - 2px), 0 calc(100% - 2px), 0 2px, 2px 2px, 2px 0, calc(100% - 2px) 0, calc(100% - 2px) 2px, 100% 2px, 100% calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 100% );
|
|
482
|
+
}
|
|
483
|
+
label {
|
|
484
|
+
display: flex;
|
|
485
|
+
flex-direction: column;
|
|
486
|
+
-webkit-user-select: none;
|
|
487
|
+
user-select: none;
|
|
488
|
+
}
|
|
489
|
+
button:active {
|
|
490
|
+
background-image: url('./assets/svg/button_active.svg');
|
|
491
|
+
}
|
|
492
|
+
details > summary {
|
|
493
|
+
height: calc(0.25rem * 8.5);
|
|
494
|
+
width: calc(0.25rem * 111.5);
|
|
495
|
+
border-style: solid;
|
|
496
|
+
border-width: 2px;
|
|
497
|
+
padding-top: 1px;
|
|
498
|
+
text-align: center;
|
|
499
|
+
background-image: url('./assets/svg/details_head.svg');
|
|
500
|
+
list-style: none;
|
|
501
|
+
}
|
|
502
|
+
details:open > p {
|
|
503
|
+
height: calc(0.25rem * 23.5);
|
|
504
|
+
width: calc(0.25rem * 111);
|
|
505
|
+
border-inline-style: solid;
|
|
506
|
+
border-inline-width: 2px;
|
|
507
|
+
border-bottom-style: solid;
|
|
508
|
+
border-bottom-width: 2px;
|
|
509
|
+
padding-inline: calc(0.25rem * 0.5);
|
|
510
|
+
padding-top: 1px;
|
|
511
|
+
text-align: center;
|
|
512
|
+
background-image: url('./assets/svg/details.svg');
|
|
513
|
+
}
|
|
514
|
+
label > span, legend {
|
|
515
|
+
height: calc(0.25rem * 7.5);
|
|
516
|
+
padding-left: 0.25rem;
|
|
517
|
+
vertical-align: text-bottom;
|
|
518
|
+
}
|
|
519
|
+
.alert {
|
|
520
|
+
display: flex;
|
|
521
|
+
height: calc(0.25rem * 33.5);
|
|
522
|
+
width: calc(0.25rem * 103);
|
|
523
|
+
align-content: center;
|
|
524
|
+
align-items: center;
|
|
525
|
+
justify-content: space-between;
|
|
526
|
+
gap: calc(0.25rem * 5.5);
|
|
527
|
+
border-style: solid;
|
|
528
|
+
border-width: 16px;
|
|
529
|
+
padding-inline: calc(0.25rem * 5);
|
|
530
|
+
text-align: center;
|
|
531
|
+
color: var(--color-white);
|
|
532
|
+
& *::selection {
|
|
533
|
+
background-color: var(--color-ds-text-focus);
|
|
534
|
+
}
|
|
535
|
+
&::selection {
|
|
536
|
+
background-color: var(--color-ds-text-focus);
|
|
537
|
+
}
|
|
538
|
+
border-image: url('./assets/svg/alert_border.svg') 15;
|
|
539
|
+
background: repeating-linear-gradient( black, black 2px, var(--color-ds-darkgrey) 2px, var(--color-ds-darkgrey) 4px );
|
|
540
|
+
background-size: 100% 4px;
|
|
541
|
+
clip-path: polygon( 10px 100%, 10px calc(100% - 2px), 8px calc(100% - 2px), 8px calc(100% - 4px), 6px calc(100% - 4px), 6px calc(100% - 6px), 4px calc(100% - 6px), 4px calc(100% - 8px), 2px calc(100% - 8px), 2px calc(100% - 10px), 0 calc(100% - 10px), 0 10px, 2px 10px, 2px 8px, 4px 8px, 4px 6px, 6px 6px, 6px 4px, 8px 4px, 8px 2px, 10px 2px, 10px 0, calc(100% - 10px) 0, calc(100% - 10px) 2px, calc(100% - 8px) 2px, calc(100% - 8px) 4px, calc(100% - 6px) 4px, calc(100% - 6px) 6px, calc(100% - 4px) 6px, calc(100% - 4px) 8px, calc(100% - 2px) 8px, calc(100% - 2px) 10px, 100% 10px, 100% calc(100% - 10px), calc(100% - 2px) calc(100% - 10px), calc(100% - 2px) calc(100% - 8px), calc(100% - 4px) calc(100% - 8px), calc(100% - 4px) calc(100% - 6px), calc(100% - 6px) calc(100% - 6px), calc(100% - 6px) calc(100% - 4px), calc(100% - 8px) calc(100% - 4px), calc(100% - 8px) calc(100% - 2px), calc(100% - 10px) calc(100% - 2px), calc(100% - 10px) 100% );
|
|
542
|
+
}
|
|
543
|
+
.bar {
|
|
544
|
+
height: calc(0.25rem * 8);
|
|
545
|
+
border-bottom-style: solid;
|
|
546
|
+
border-bottom-width: 2px;
|
|
547
|
+
background-blend-mode: hard-light;
|
|
548
|
+
background-image: url('./assets/svg/top_bar.svg');
|
|
549
|
+
}
|
|
550
|
+
.bar-lg {
|
|
551
|
+
height: calc(0.25rem * 11.5);
|
|
552
|
+
border-bottom-style: solid;
|
|
553
|
+
border-bottom-width: 2px;
|
|
554
|
+
background-blend-mode: hard-light;
|
|
555
|
+
background-image: url('./assets/svg/bottom_bar_top.svg');
|
|
556
|
+
}
|
|
557
|
+
.bar-lg-reverse {
|
|
558
|
+
height: calc(0.25rem * 11.5);
|
|
559
|
+
border-top-style: solid;
|
|
560
|
+
border-top-width: 2px;
|
|
561
|
+
background-blend-mode: hard-light;
|
|
562
|
+
background-image: url('./assets/svg/bottom_bar_bottom.svg');
|
|
563
|
+
background-position-y: -2px;
|
|
564
|
+
}
|
|
565
|
+
.button-lg {
|
|
566
|
+
width: calc(var(--spacing) * 55);
|
|
567
|
+
background-image: url('./assets/svg/button_lg.svg');
|
|
568
|
+
}
|
|
569
|
+
.button-square {
|
|
570
|
+
width: calc(var(--spacing) * 9);
|
|
571
|
+
height: calc(var(--spacing) * 9);
|
|
572
|
+
background-image: url('./assets/svg/button_square.svg');
|
|
573
|
+
}
|
|
574
|
+
.button-square:active {
|
|
575
|
+
background-image: url('./assets/svg/button_square_active.svg');
|
|
576
|
+
}
|
|
577
|
+
.button-lg:active {
|
|
578
|
+
background-image: url('./assets/svg/button_lg_active.svg');
|
|
579
|
+
}
|
|
580
|
+
button:active:not(:hover), .button-lg:active:not(:hover), .button-square:active:not(:hover) {
|
|
581
|
+
background-blend-mode: normal;
|
|
582
|
+
}
|
|
583
|
+
.ds-grid {
|
|
584
|
+
background: repeating-linear-gradient( transparent, transparent 30px, var(--color-ds-grid-border) 30px, var(--color-ds-grid-border) 32px ), repeating-linear-gradient( to right, transparent, transparent 30px, var(--color-ds-grid-border) 30px, var(--color-ds-grid-border) 32px ), repeating-linear-gradient( white, white 2px, var(--color-ds-grid-bg) 2px, var(--color-ds-grid-bg) 4px );
|
|
585
|
+
}
|
|
586
|
+
.ds-grid-lg {
|
|
587
|
+
background-image: url('./assets/svg/grid_lg.svg');
|
|
588
|
+
}
|
|
589
|
+
.info {
|
|
590
|
+
display: flex;
|
|
591
|
+
height: calc(0.25rem * 24);
|
|
592
|
+
width: var(--container-lg);
|
|
593
|
+
gap: calc(0.25rem * 0.5);
|
|
594
|
+
border-top-style: solid;
|
|
595
|
+
border-top-width: 2px;
|
|
596
|
+
padding-block: calc(0.25rem * 0.5);
|
|
597
|
+
padding-left: 0.25rem;
|
|
598
|
+
background-blend-mode: hard-light;
|
|
599
|
+
background-image: url('./assets/svg/info.svg');
|
|
600
|
+
}
|
|
601
|
+
.info-container {
|
|
602
|
+
height: calc(0.25rem * 22.5);
|
|
603
|
+
width: calc(0.25rem * 104);
|
|
604
|
+
}
|
|
605
|
+
.info-label {
|
|
606
|
+
height: calc(0.25rem * 6.5);
|
|
607
|
+
padding-right: 0.25rem;
|
|
608
|
+
padding-left: calc(0.25rem * 2);
|
|
609
|
+
}
|
|
610
|
+
.info-square {
|
|
611
|
+
display: grid;
|
|
612
|
+
width: calc(0.25rem * 22.5);
|
|
613
|
+
height: calc(0.25rem * 22.5);
|
|
614
|
+
place-items: center;
|
|
615
|
+
border-style: solid;
|
|
616
|
+
border-width: 2px;
|
|
617
|
+
background-blend-mode: hard-light;
|
|
618
|
+
background-image: url('./assets/svg/info_square.svg');
|
|
619
|
+
}
|
|
620
|
+
.info-text {
|
|
621
|
+
height: calc(0.25rem * 16);
|
|
622
|
+
border-style: solid;
|
|
623
|
+
border-width: 4px;
|
|
624
|
+
background-color: var(--color-ds-info-bg);
|
|
625
|
+
padding-inline: 0.25rem;
|
|
626
|
+
color: var(--color-white);
|
|
627
|
+
border-image: url('./assets/svg/info_border.svg') 4;
|
|
628
|
+
clip-path: polygon( 4px 100%, 4px calc(100% - 2px), 2px calc(100% - 2px), 2px calc(100% - 4px), 0px calc(100% - 4px), 0 4px, 2px 4px, 2px 2px, 4px 2px, 4px 0px, calc(100% - 4px) 0, calc(100% - 4px) 2px, calc(100% - 2px) 2px, calc(100% - 2px) 4px, calc(100% - 0px) 4px, 100% calc(100% - 4px), calc(100% - 2px) calc(100% - 4px), calc(100% - 2px) calc(100% - 2px), calc(100% - 4px) calc(100% - 2px), calc(100% - 4px) calc(100% - 0px) );
|
|
629
|
+
}
|
|
630
|
+
.input-lg {
|
|
631
|
+
width: calc(0.25rem * 104.5);
|
|
632
|
+
}
|
|
633
|
+
.input-wrapper {
|
|
634
|
+
display: flex;
|
|
635
|
+
align-items: center;
|
|
636
|
+
gap: calc(0.25rem * 0.5);
|
|
637
|
+
}
|
|
638
|
+
.input-before {
|
|
639
|
+
height: calc(0.25rem * 7.5);
|
|
640
|
+
width: calc(0.25rem * 7);
|
|
641
|
+
background-repeat: no-repeat;
|
|
642
|
+
background-image: url('./assets/svg/input_before.svg');
|
|
643
|
+
}
|
|
644
|
+
.input-after {
|
|
645
|
+
height: calc(var(--spacing) * 7.5);
|
|
646
|
+
width: calc(var(--spacing) * 7);
|
|
647
|
+
background-repeat: no-repeat;
|
|
648
|
+
background-image: url('./assets/svg/input_after.svg');
|
|
649
|
+
}
|
|
650
|
+
p, .pictochat-window, .pictochat-message, .pictochat-status, .pictochat-board {
|
|
651
|
+
clip-path: polygon( 8px 100%, 8px calc(100% - 2px), 6px calc(100% - 2px), 6px calc(100% - 4px), 4px calc(100% - 4px), 4px calc(100% - 6px), 2px calc(100% - 6px), 2px calc(100% - 8px), 0 calc(100% - 8px), 0 8px, 2px 8px, 2px 6px, 4px 6px, 4px 4px, 6px 4px, 6px 2px, 8px 2px, 8px 0px, calc(100% - 8px) 0, calc(100% - 8px) 2px, calc(100% - 6px) 2px, calc(100% - 6px) 4px, calc(100% - 4px) 4px, calc(100% - 4px) 6px, calc(100% - 2px) 6px, calc(100% - 2px) 8px, 100% 8px, 100% calc(100% - 8px), calc(100% - 2px) calc(100% - 8px), calc(100% - 2px) calc(100% - 6px), calc(100% - 4px) calc(100% - 6px), calc(100% - 4px) calc(100% - 4px), calc(100% - 6px) calc(100% - 4px), calc(100% - 6px) calc(100% - 2px), calc(100% - 8px) calc(100% - 2px), calc(100% - 8px) 100% );
|
|
652
|
+
}
|
|
653
|
+
.pictochat-window {
|
|
654
|
+
display: flex;
|
|
655
|
+
flex-direction: column;
|
|
656
|
+
border-style: solid;
|
|
657
|
+
border-width: 8px;
|
|
658
|
+
gap: calc(0.25rem * 2);
|
|
659
|
+
background: repeating-linear-gradient( var(--color-ds-pictochat-bg), var(--color-ds-pictochat-bg) 6px, var(--color-ds-pictochat-border) 6px, var(--color-ds-pictochat-border) 8px );
|
|
660
|
+
border-image: url('./assets/svg/pictochat_border.svg') 8;
|
|
661
|
+
}
|
|
662
|
+
.pictochat-window > div {
|
|
663
|
+
margin-inline: --calc(0.25rem * 0.5);
|
|
664
|
+
}
|
|
665
|
+
p, .pictochat-message {
|
|
666
|
+
border-style: solid;
|
|
667
|
+
border-width: 8px;
|
|
668
|
+
background-color: white;
|
|
669
|
+
padding-inline: 0.25rem;
|
|
670
|
+
border-image: url('./assets/svg/pictochat_message_border.svg') 8;
|
|
671
|
+
}
|
|
672
|
+
.pictochat-status {
|
|
673
|
+
border-style: solid;
|
|
674
|
+
border-width: 8px;
|
|
675
|
+
background-color: black;
|
|
676
|
+
color: white;
|
|
677
|
+
padding-inline: 0.25rem;
|
|
678
|
+
border-image: url('./assets/svg/pictochat_status.svg') 8;
|
|
679
|
+
}
|
|
680
|
+
.radio-button {
|
|
681
|
+
position: relative;
|
|
682
|
+
height: calc(0.25rem * 15.5);
|
|
683
|
+
width: calc(0.25rem * 48);
|
|
684
|
+
background-clip: border-box;
|
|
685
|
+
}
|
|
686
|
+
.radio-button > label {
|
|
687
|
+
position: absolute;
|
|
688
|
+
top: calc(1 / 2 * 100%);
|
|
689
|
+
z-index: 10;
|
|
690
|
+
width: 100%;
|
|
691
|
+
translate: 0 calc(calc(1 / 2 * 100%) * -1);
|
|
692
|
+
text-align: center;
|
|
693
|
+
}
|
|
694
|
+
.loading-container {
|
|
695
|
+
display: grid;
|
|
696
|
+
width: fit-content;
|
|
697
|
+
height: fit-content;
|
|
698
|
+
flex-shrink: 0;
|
|
699
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
700
|
+
gap: calc(0.25rem * 0.5);
|
|
701
|
+
}
|
|
702
|
+
.loading-container > div {
|
|
703
|
+
background-color: var(--color-ds-loading);
|
|
704
|
+
width: calc(0.25rem * 1.5);
|
|
705
|
+
height: calc(0.25rem * 1.5);
|
|
706
|
+
}
|
|
707
|
+
@keyframes loading-1 {
|
|
708
|
+
12.5%, 37.5% {
|
|
709
|
+
opacity: 1;
|
|
710
|
+
}
|
|
711
|
+
37.51%, 75% {
|
|
712
|
+
opacity: 0;
|
|
713
|
+
}
|
|
714
|
+
75.01%, 100% {
|
|
715
|
+
opacity: 1;
|
|
716
|
+
}
|
|
717
|
+
}
|
|
718
|
+
@keyframes loading-2 {
|
|
719
|
+
0%, 50% {
|
|
720
|
+
opacity: 1;
|
|
721
|
+
}
|
|
722
|
+
50.01%, 87.5% {
|
|
723
|
+
opacity: 0;
|
|
724
|
+
}
|
|
725
|
+
87.51%, 100% {
|
|
726
|
+
opacity: 1;
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
@keyframes loading-3 {
|
|
730
|
+
0%, 62.5% {
|
|
731
|
+
opacity: 1;
|
|
732
|
+
}
|
|
733
|
+
62.51%, 100% {
|
|
734
|
+
opacity: 0;
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
@keyframes loading-6 {
|
|
738
|
+
0%, 12.5% {
|
|
739
|
+
opacity: 0;
|
|
740
|
+
}
|
|
741
|
+
12.51%, 75% {
|
|
742
|
+
opacity: 1;
|
|
743
|
+
}
|
|
744
|
+
75.01%, 100% {
|
|
745
|
+
opacity: 0;
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
@keyframes loading-9 {
|
|
749
|
+
0%, 25% {
|
|
750
|
+
opacity: 0;
|
|
751
|
+
}
|
|
752
|
+
25.51%, 87.5% {
|
|
753
|
+
opacity: 1;
|
|
754
|
+
}
|
|
755
|
+
87.51%, 100% {
|
|
756
|
+
opacity: 0;
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
@keyframes loading-8 {
|
|
760
|
+
0%, 37.5% {
|
|
761
|
+
opacity: 0;
|
|
762
|
+
}
|
|
763
|
+
37.51%, 100% {
|
|
764
|
+
opacity: 1;
|
|
765
|
+
}
|
|
766
|
+
}
|
|
767
|
+
@keyframes loading-7 {
|
|
768
|
+
0%, 12.5% {
|
|
769
|
+
opacity: 1;
|
|
770
|
+
}
|
|
771
|
+
12.51%, 50% {
|
|
772
|
+
opacity: 0;
|
|
773
|
+
}
|
|
774
|
+
50.01%, 100% {
|
|
775
|
+
opacity: 1;
|
|
776
|
+
}
|
|
777
|
+
}
|
|
778
|
+
@keyframes loading-4 {
|
|
779
|
+
0%, 25% {
|
|
780
|
+
opacity: 1;
|
|
781
|
+
}
|
|
782
|
+
25.01%, 62.5% {
|
|
783
|
+
opacity: 0;
|
|
784
|
+
}
|
|
785
|
+
62.51%, 100% {
|
|
786
|
+
opacity: 1;
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
.loading-1 {
|
|
790
|
+
animation: 533.33ms infinite loading-1;
|
|
791
|
+
}
|
|
792
|
+
.loading-2 {
|
|
793
|
+
animation: 533.33ms infinite loading-2;
|
|
794
|
+
}
|
|
795
|
+
.loading-3 {
|
|
796
|
+
animation: 533.33ms infinite loading-3;
|
|
797
|
+
}
|
|
798
|
+
.loading-4 {
|
|
799
|
+
animation: 533.33ms infinite loading-4;
|
|
800
|
+
}
|
|
801
|
+
.loading-6 {
|
|
802
|
+
animation: 533.33ms infinite loading-6;
|
|
803
|
+
}
|
|
804
|
+
.loading-7 {
|
|
805
|
+
animation: 533.33ms infinite loading-7;
|
|
806
|
+
}
|
|
807
|
+
.loading-8 {
|
|
808
|
+
animation: 533.33ms infinite loading-8;
|
|
809
|
+
}
|
|
810
|
+
.loading-9 {
|
|
811
|
+
animation: 533.33ms infinite loading-9;
|
|
812
|
+
}
|