ds-one 0.3.0-alpha.1 → 0.3.0-alpha.2

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.
Files changed (40) hide show
  1. package/DS1/0-face/device.ts +180 -34
  2. package/DS1/1-root/one.css +1 -1
  3. package/DS1/index.ts +0 -1
  4. package/README.md +2 -2
  5. package/dist/0-face/device.d.ts +47 -1
  6. package/dist/0-face/device.d.ts.map +1 -1
  7. package/dist/0-face/device.js +132 -25
  8. package/dist/ds-one.bundle.js +1421 -1436
  9. package/dist/ds-one.bundle.js.map +1 -1
  10. package/dist/ds-one.bundle.min.js +1206 -1217
  11. package/dist/ds-one.bundle.min.js.map +1 -1
  12. package/dist/index.d.ts +0 -1
  13. package/dist/index.d.ts.map +1 -1
  14. package/dist/index.js +0 -1
  15. package/package.json +1 -1
  16. package/DS1/0-face/scaling.ts +0 -152
  17. package/dist/0-face/scaling.d.ts +0 -48
  18. package/dist/0-face/scaling.d.ts.map +0 -1
  19. package/dist/0-face/scaling.js +0 -114
  20. package/dist/2-core/styles/ds-banner.css +0 -77
  21. package/dist/2-core/styles/ds-button.css +0 -67
  22. package/dist/2-core/styles/ds-cycle.css +0 -21
  23. package/dist/2-core/styles/ds-date.css +0 -9
  24. package/dist/2-core/styles/ds-gap.css +0 -93
  25. package/dist/2-core/styles/ds-icon.css +0 -30
  26. package/dist/2-core/styles/ds-input.css +0 -46
  27. package/dist/2-core/styles/ds-pagedots.css +0 -26
  28. package/dist/2-core/styles/ds-text.css +0 -29
  29. package/dist/2-core/styles/ds-tooltip.css +0 -49
  30. package/dist/3-unit/styles/ds-accordion.css +0 -46
  31. package/dist/3-unit/styles/ds-list.css +0 -9
  32. package/dist/3-unit/styles/ds-row.css +0 -19
  33. package/dist/3-unit/styles/ds-table.css +0 -80
  34. package/dist/4-page/styles/ds-container.css +0 -35
  35. package/dist/4-page/styles/ds-grid.css +0 -56
  36. package/dist/4-page/styles/ds-layout.css +0 -251
  37. package/dist/ds-one.bundle.css +0 -700
  38. package/dist/ds-one.bundle.css.map +0 -7
  39. package/dist/ds-one.bundle.min.css +0 -2
  40. package/dist/ds-one.bundle.min.css.map +0 -7
@@ -1,700 +0,0 @@
1
- /* dist/2-core/styles/ds-text.css?inline */
2
- :host {
3
- display: inline;
4
- font-family: var(--typeface-regular);
5
- font-size: var(--type-size-default);
6
- font-weight: var(--type-weight-default);
7
- line-height: calc(var(--type-lineheight-default) * var(--sf));
8
- letter-spacing: calc(var(--type-letterspacing-default) * var(--sf));
9
- text-align: var(--text-align-default);
10
- text-transform: var(--text-transform-default);
11
- text-decoration: var(--text-decoration-default);
12
- }
13
- :host([data-language="ja"]) {
14
- font-family: var(--typeface-regular-jp);
15
- }
16
- :host([data-language="zh"]),
17
- :host([data-language="zh-hant"]) {
18
- font-family: var(--typeface-regular-zh-hant);
19
- font-weight: 800;
20
- }
21
- :host([data-language="zh-hans"]) {
22
- font-family: var(--typeface-regular-zh-hans);
23
- font-weight: 800;
24
- }
25
-
26
- /* dist/2-core/styles/ds-button.css?inline */
27
- button {
28
- max-height: calc(var(--08) * var(--sf));
29
- display: inline-flex;
30
- align-items: center;
31
- justify-content: center;
32
- border: none;
33
- cursor: pointer;
34
- padding: 0 calc(0.5px * var(--sf));
35
- color: var(--button-text-color);
36
- font-family: var(--typeface-regular);
37
- }
38
- button.title {
39
- background-color: var(--button-background-color-secondary);
40
- color: var(--button-text-color);
41
- }
42
- button.primary {
43
- background-color: var(--accent-color);
44
- color: var(--button-text-color);
45
- text-decoration-line: none;
46
- font-family: var(--typeface-regular);
47
- }
48
- button.secondary {
49
- background-color: var(--button-background-color-secondary);
50
- color: var(--button-text-color);
51
- font-family: var(--typeface-regular);
52
- }
53
- button.text {
54
- background-color: transparent;
55
- color: var(--button-color, var(--button-text-color));
56
- font-family: var(--typeface-regular);
57
- padding: 0;
58
- text-decoration: none;
59
- }
60
- button.text:hover {
61
- opacity: 0.8;
62
- text-decoration: none;
63
- }
64
- button[bold] {
65
- font-weight: var(--type-weight-bold);
66
- font-family: var(--typeface-medium);
67
- }
68
- button[no-background] {
69
- background-color: transparent;
70
- max-height: var(--1);
71
- padding: 0;
72
- color: var(--button-color, var(--button-text-color-secondary));
73
- }
74
- button[no-background][bold] {
75
- font-weight: var(--type-weight-bold);
76
- font-family: var(--typeface-medium);
77
- color: var(--button-color, var(--button-text-color-secondary));
78
- }
79
- .loading {
80
- opacity: 0.7;
81
- }
82
-
83
- /* dist/2-core/styles/ds-banner.css?inline */
84
- :host {
85
- display: flex;
86
- position: absolute;
87
- top: 0;
88
- left: 0;
89
- right: 0;
90
- width: 100%;
91
- height: calc(var(--unit) * var(--sf, 1));
92
- align-items: center;
93
- justify-content: space-between;
94
- padding: 0 calc(var(--unit) * var(--sf, 1));
95
- box-sizing: border-box;
96
- z-index: 9999;
97
- }
98
- :host([variant="warning"]) {
99
- background-color: color-mix(in srgb, var(--yellow) 50%, transparent);
100
- --banner-text-color: color-mix(in srgb, var(--black) 50%, transparent);
101
- --banner-action-color: var(--slate);
102
- }
103
- :host([variant="info"]) {
104
- background-color: rgba(var(--sharp-blue-rgb, 0, 122, 255), 0.7);
105
- --banner-text-color: var(--white, #fff);
106
- --banner-action-color: var(--white, #fff);
107
- }
108
- :host([variant="success"]) {
109
- background-color: rgba(var(--apple-green-rgb, 52, 199, 89), 0.7);
110
- --banner-text-color: var(--white, #fff);
111
- --banner-action-color: var(--white, #fff);
112
- }
113
- :host([variant="error"]) {
114
- background-color: rgba(var(--tuned-red-rgb, 255, 59, 48), 0.7);
115
- --banner-text-color: var(--white, #fff);
116
- --banner-action-color: var(--slate, #1e1e1e);
117
- }
118
- .text-wrapper {
119
- flex: 1;
120
- cursor: pointer;
121
- user-select: none;
122
- }
123
- .text-wrapper ds-text,
124
- .text-wrapper .version {
125
- color: var(--banner-text-color);
126
- }
127
- .action-wrapper {
128
- font-size: calc(12px * var(--sf, 1));
129
- }
130
- .action-wrapper a {
131
- color: var(--banner-action-color);
132
- text-decoration: none;
133
- font-family: var(--typeface-regular);
134
- font-size: calc(12px * var(--sf, 1));
135
- cursor: pointer;
136
- pointer-events: auto;
137
- display: inline-block;
138
- }
139
- .action-wrapper a:hover {
140
- opacity: 0.8;
141
- }
142
- .action-wrapper ds-text {
143
- color: var(--banner-action-color);
144
- font-family: var(--typeface-regular);
145
- font-size: calc(12px * var(--sf, 1));
146
- pointer-events: none;
147
- }
148
-
149
- /* dist/2-core/styles/ds-icon.css?inline */
150
- :host {
151
- display: inline-flex;
152
- justify-content: center;
153
- align-items: center;
154
- width: calc(16px * var(--sf));
155
- height: calc(16px * var(--sf));
156
- --notes-style-color: #ffb6b9;
157
- }
158
- svg {
159
- width: 100%;
160
- height: 100%;
161
- fill: var(--icon-color, currentColor);
162
- }
163
- path {
164
- fill: var(--icon-color, currentColor);
165
- }
166
- .icon-container {
167
- display: flex;
168
- justify-content: center;
169
- align-items: center;
170
- width: calc(16px * var(--sf));
171
- height: calc(16px * var(--sf));
172
- }
173
-
174
- /* dist/2-core/styles/ds-cycle.css?inline */
175
- :host {
176
- display: inline-flex;
177
- align-items: center;
178
- }
179
- .cycle {
180
- display: inline-flex;
181
- align-items: center;
182
- gap: var(--025);
183
- }
184
- .color-preview {
185
- width: var(--05);
186
- height: var(--05);
187
- border-radius: 999px;
188
- border: 1px solid color-mix(in srgb, var(--text-color-primary) 20%, transparent);
189
- flex: 0 0 auto;
190
- }
191
-
192
- /* dist/2-core/styles/ds-date.css?inline */
193
- :host {
194
- display: inline;
195
- font-family: var(--typeface-regular, var(--typeface-regular-regular));
196
- font-size: inherit;
197
- color: inherit;
198
- }
199
-
200
- /* dist/2-core/styles/ds-gap.css?inline */
201
- :host {
202
- display: block;
203
- width: 100%;
204
- --gap-size: var(--unit);
205
- height: var(--gap-size);
206
- flex: 0 0 auto;
207
- }
208
- :host([tenth]) {
209
- --gap-size: var(--tenth);
210
- }
211
- :host([quarter]) {
212
- --gap-size: var(--quarter);
213
- }
214
- :host([half]) {
215
- --gap-size: var(--half);
216
- }
217
- :host([eight-tenth]) {
218
- --gap-size: var(--eight-tenth);
219
- }
220
- :host([unit]) {
221
- --gap-size: var(--unit);
222
- }
223
- :host([double]) {
224
- --gap-size: var(--double);
225
- }
226
- :host([triple]) {
227
- --gap-size: var(--triple);
228
- }
229
- :host([quad]) {
230
- --gap-size: var(--quad);
231
- }
232
- :host([oct]) {
233
- --gap-size: var(--oct);
234
- }
235
- :host([dozen]) {
236
- --gap-size: var(--dozen);
237
- }
238
- :host([size="01"]) {
239
- --gap-size: var(--01);
240
- }
241
- :host([size="025"]) {
242
- --gap-size: var(--025);
243
- }
244
- :host([size="05"]) {
245
- --gap-size: var(--05);
246
- }
247
- :host([size="08"]) {
248
- --gap-size: var(--08);
249
- }
250
- :host([size="1"]) {
251
- --gap-size: var(--1);
252
- }
253
- :host([size="2"]) {
254
- --gap-size: var(--2);
255
- }
256
- :host([size="3"]) {
257
- --gap-size: var(--3);
258
- }
259
- :host([size="4"]) {
260
- --gap-size: var(--4);
261
- }
262
- :host([size="8"]) {
263
- --gap-size: var(--8);
264
- }
265
- :host([size="12"]) {
266
- --gap-size: var(--12);
267
- }
268
-
269
- /* dist/2-core/styles/ds-tooltip.css?inline */
270
- :host {
271
- position: relative;
272
- display: inline-block;
273
- }
274
- .slot-wrapper {
275
- display: inline-flex;
276
- align-items: center;
277
- }
278
- .bubble {
279
- display: flex;
280
- align-items: center;
281
- justify-content: center;
282
- position: absolute;
283
- left: 50%;
284
- bottom: 100%;
285
- transform: translate(-50%, calc(-2px * var(--sf)));
286
- z-index: 1000;
287
- pointer-events: none;
288
- height: calc(var(--08) * var(--sf));
289
- opacity: 0;
290
- transition: opacity 120ms ease, transform 120ms ease;
291
- background-color: light-dark(var(--black), var(--white));
292
- color: light-dark(var(--white), var(--black));
293
- border-radius: 0;
294
- font-size: var(--type-size-default);
295
- padding: 0px calc(1px * var(--sf));
296
- font-family: var( --typeface-regular, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif );
297
- font-weight: 500;
298
- white-space: nowrap;
299
- min-width: max-content;
300
- }
301
- .bubble.visible {
302
- opacity: 1;
303
- }
304
-
305
- /* dist/3-unit/styles/ds-row.css?inline */
306
- :host {
307
- display: flex;
308
- align-items: end;
309
- width: calc(240px * var(--sf));
310
- }
311
- :host([type="fill"]) {
312
- justify-content: space-between;
313
- height: calc(var(--1) * var(--sf));
314
- }
315
- :host([type="centered"]) {
316
- justify-content: center;
317
- height: calc(var(--1) * var(--sf));
318
- gap: calc(var(--025) * var(--sf));
319
- }
320
-
321
- /* dist/3-unit/styles/ds-accordion.css?inline */
322
- :host {
323
- display: block;
324
- width: calc(240px * var(--sf));
325
- color: var(--text-color-primary);
326
- }
327
- details {
328
- width: 100%;
329
- }
330
- summary {
331
- cursor: pointer;
332
- user-select: none;
333
- list-style: none;
334
- outline: none;
335
- }
336
- summary::-webkit-details-marker {
337
- display: none;
338
- }
339
- .summaryRow {
340
- width: 100%;
341
- }
342
- ds-icon.chevron {
343
- transform: rotate(0deg);
344
- transition: transform 140ms ease;
345
- }
346
- details[open] ds-icon.chevron {
347
- transform: rotate(180deg);
348
- }
349
- .detailsBody {
350
- padding-top: calc(var(--half) * var(--sf));
351
- }
352
- .detailsText {
353
- display: block;
354
- white-space: normal;
355
- text-align: left;
356
- }
357
-
358
- /* dist/3-unit/styles/ds-list.css?inline */
359
- :host {
360
- display: flex;
361
- flex-direction: column;
362
- gap: 0;
363
- width: 100%;
364
- }
365
-
366
- /* dist/3-unit/styles/ds-table.css?inline */
367
- :host {
368
- display: block;
369
- width: 100%;
370
- }
371
- .table-container {
372
- display: flex;
373
- flex-direction: column;
374
- width: 100%;
375
- }
376
- .table-header {
377
- display: grid;
378
- grid-template-columns: 160px 80px 80px 80px;
379
- height: 20px;
380
- width: 400px;
381
- }
382
- .table-body {
383
- display: grid;
384
- grid-template-columns: 160px 80px 80px 80px;
385
- border: 1px solid var(--black);
386
- width: 400px;
387
- }
388
- .header-cell {
389
- height: 20px;
390
- display: flex;
391
- align-items: center;
392
- justify-content: left;
393
- padding: 0 2px;
394
- font-family: var(--typeface-regular);
395
- font-size: var(--type-size-default);
396
- font-weight: var(--type-weight-default);
397
- line-height: var(--type-lineheight-default);
398
- color: var(--black);
399
- letter-spacing: -0.26px;
400
- }
401
- .data-cell {
402
- height: 20px;
403
- margin-top: -1px;
404
- display: flex;
405
- align-items: center;
406
- justify-content: left;
407
- outline: 1px solid var(--black);
408
- font-family: var(--typeface-regular);
409
- font-size: var(--type-size-default);
410
- font-weight: var(--type-weight-default);
411
- line-height: var(--type-lineheight-default);
412
- color: var(--black);
413
- letter-spacing: -0.26px;
414
- }
415
- .status-cell {
416
- background-color: var(--apple-green);
417
- text-align: center;
418
- }
419
- .product-cell {
420
- text-align: left;
421
- justify-content: flex-start;
422
- }
423
- .users-cell,
424
- .retention-cell {
425
- text-align: center;
426
- }
427
- @media (max-width: 480px) {
428
- .table-header,
429
- .table-body {
430
- width: 100%;
431
- grid-template-columns: 1fr 60px 60px 60px;
432
- }
433
- }
434
-
435
- /* dist/4-page/styles/ds-container.css?inline */
436
- :host {
437
- display: flex;
438
- width: 100%;
439
- max-width: 100%;
440
- flex-direction: column;
441
- background-color: var(--background-color);
442
- box-sizing: border-box;
443
- }
444
- :host ::slotted(*) {
445
- max-width: 100%;
446
- box-sizing: border-box;
447
- }
448
- @media (max-width: 820px) {
449
- :host {
450
- width: 100%;
451
- max-width: 100%;
452
- }
453
- }
454
- @media (min-width: 821px) {
455
- :host {
456
- max-width: 1000px;
457
- margin-left: auto;
458
- margin-right: auto;
459
- width: 100%;
460
- }
461
- }
462
-
463
- /* dist/4-page/styles/ds-grid.css?inline */
464
- :host {
465
- margin-top: 0.5px !important;
466
- margin-left: 0.5px !important;
467
- display: grid;
468
- width: 1440px;
469
- height: 1280px;
470
- grid-template-columns: repeat(auto-fill, 19px);
471
- grid-template-rows: repeat(auto-fill, 19px);
472
- gap: 1px;
473
- row-rule: calc(1px * var(--sf)) solid var(--grid-color);
474
- column-rule: calc(1px * var(--sf)) solid var(--grid-color);
475
- outline: calc(1px * var(--sf)) solid light-dark(var(--sharp-blue), var(--yellow));
476
- position: fixed;
477
- top: 0;
478
- left: 50%;
479
- transform: translateX(-50%);
480
- pointer-events: none;
481
- z-index: 300;
482
- }
483
- :host(.mobile) {
484
- width: calc(100% - calc(1px * var(--sf)));
485
- max-width: 100vw;
486
- margin-left: 0.5px !important;
487
- margin-top: 0 !important;
488
- box-sizing: border-box;
489
- position: fixed;
490
- top: calc(0.5px * var(--sf));
491
- left: 50%;
492
- transform: translateX(-50%);
493
- pointer-events: none;
494
- z-index: 300;
495
- gap: calc(1px * var(--sf));
496
- grid-template-columns: repeat(14, calc(19px * var(--sf)));
497
- grid-template-rows: repeat(auto-fill, calc(19px * var(--sf)));
498
- }
499
- :host([align="left"]) {
500
- left: 0;
501
- transform: none;
502
- }
503
- :host([align="center"]) {
504
- left: 50%;
505
- transform: translateX(-50%);
506
- }
507
- :host([align="right"]) {
508
- left: auto;
509
- right: 0;
510
- transform: none;
511
- }
512
-
513
- /* dist/4-page/styles/ds-layout.css?inline */
514
- :host {
515
- display: grid;
516
- position: relative;
517
- width: 100%;
518
- }
519
- slot {
520
- display: contents;
521
- }
522
- :host([mode="portfolio"]) {
523
- --portfolio-cols: 120px 480px 40px;
524
- --portfolio-rows: 120px 120px 60px 180px 60px 120px 60px 20px 120px 120px;
525
- --portfolio-areas: "square . ." ". title ." ". header ." ". projects ." ". . ." ". bio ." ". . ." ". nav ." ". . ." ". footer ." ". . .";
526
- --portfolio-overlay-cols: 120px 480px;
527
- --portfolio-overlay-areas: "square ." ". title" ". header" ". projects" ". ." ". bio" ". ." ". nav" ". ." ". footer" ". .";
528
- grid-template-columns: var(--portfolio-cols);
529
- grid-template-rows: var(--portfolio-rows);
530
- grid-template-areas: var(--portfolio-areas);
531
- min-height: 600px;
532
- background-color: rgba(165, 165, 165, 0.03);
533
- max-width: 640px;
534
- margin: 0;
535
- }
536
- :host([mode="portfolio"]) .view-overlay {
537
- grid-template-columns: var(--portfolio-overlay-cols);
538
- grid-template-rows: var(--portfolio-rows);
539
- grid-template-areas: var(--portfolio-overlay-areas);
540
- }
541
- :host([mode="company"]) {
542
- --company-cols: auto 400px auto;
543
- --company-rows: 80px 20px 20px 120px 20px 120px;
544
- --company-areas: ". . ." ". header ." ". . ." ". content ." ". . ." ". footer .";
545
- grid-template-columns: var(--company-cols);
546
- grid-template-rows: var(--company-rows);
547
- grid-template-areas: var(--company-areas);
548
- gap: 0;
549
- max-width: 100%;
550
- }
551
- :host([mode="company"]) .view-overlay {
552
- grid-template-columns: var(--company-cols);
553
- grid-template-rows: var(--company-rows);
554
- grid-template-areas: var(--company-areas);
555
- gap: 0;
556
- }
557
- :host([align="left"]),
558
- :host([mode="portfolio"][align="left"]),
559
- :host([mode="company"][align="left"]),
560
- :host([mode="app"][align="left"]) {
561
- margin: 0;
562
- justify-self: start;
563
- }
564
- :host([align="center"]),
565
- :host([mode="portfolio"][align="center"]),
566
- :host([mode="company"][align="center"]),
567
- :host([mode="app"][align="center"]) {
568
- margin: 0 auto;
569
- justify-self: center;
570
- }
571
- :host([align="right"]),
572
- :host([mode="portfolio"][align="right"]),
573
- :host([mode="company"][align="right"]),
574
- :host([mode="app"][align="right"]) {
575
- margin: 0 0 0 auto;
576
- justify-self: end;
577
- }
578
- :host([mode="app"]) {
579
- --app-cols: 100%;
580
- --app-rows: calc(var(--unit) * var(--sf)) calc(var(--unit) * var(--sf)) calc(var(--unit) * var(--sf)) calc(var(--double) * var(--sf)) calc(var(--dozen) * var(--sf)) calc(var(--unit) * var(--sf)) calc(var(--quad) * var(--sf)) calc(var(--double) * var(--sf));
581
- --app-areas: "banner" "." "header" "." "main" "page-dots" "." "footer";
582
- --app-overlay-cols: 100%;
583
- --app-overlay-rows: calc(var(--unit) * var(--sf)) calc(var(--unit) * var(--sf)) calc(var(--unit) * var(--sf)) calc(var(--double) * var(--sf)) calc(var(--dozen) * var(--sf)) calc(var(--unit) * var(--sf)) calc(var(--quad) * var(--sf)) calc(var(--double) * var(--sf));
584
- --app-overlay-areas: "banner" "." "header" "." "main" "page-dots" "." "footer";
585
- grid-template-columns: var(--app-cols);
586
- grid-template-rows: var(--app-rows);
587
- grid-template-areas: var(--app-areas);
588
- min-height: 100vh;
589
- background-color: transparent;
590
- width: calc(240px * var(--sf, 1));
591
- max-width: calc(240px * var(--sf, 1));
592
- margin: 0 auto;
593
- }
594
- :host([mode="app"]) .view-overlay {
595
- grid-template-columns: var(--app-overlay-cols);
596
- grid-template-rows: var(--app-overlay-rows);
597
- grid-template-areas: var(--app-overlay-areas);
598
- }
599
- .view-overlay {
600
- position: absolute;
601
- margin-left: -1px;
602
- top: 0;
603
- left: 0;
604
- right: 0;
605
- bottom: 0;
606
- pointer-events: none;
607
- z-index: 1000;
608
- display: grid;
609
- }
610
- .view-area {
611
- display: flex;
612
- width: calc(240px * var(--sf, 1));
613
- height: 100%;
614
- align-items: center;
615
- justify-content: center;
616
- font-family: var(--typeface-regular);
617
- font-size: calc(var(--type-size-default) * var(--05));
618
- color: color-mix(in srgb, var(--tuned-red) 25%, transparent);
619
- background-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
620
- opacity: 1;
621
- }
622
- :host([mode="portfolio"]) .view-area:nth-of-type(1) {
623
- background-color: color-mix(in srgb, var(--tuned-red) 25%, transparent);
624
- }
625
- :host([mode="portfolio"]) .view-area:nth-of-type(2) {
626
- border-color: var(--sharp-blue);
627
- }
628
- :host([mode="portfolio"]) .view-area:nth-of-type(3) {
629
- border-color: var(--yellow);
630
- }
631
- :host([mode="portfolio"]) .view-area:nth-of-type(4) {
632
- border-color: var(--apple-green);
633
- }
634
- :host([mode="portfolio"]) .view-area:nth-of-type(5) {
635
- border-color: var(--pink);
636
- }
637
- :host([mode="portfolio"]) .view-area:nth-of-type(6) {
638
- border-color: var(--orange);
639
- }
640
- :host([mode="portfolio"]) .view-area:nth-of-type(7) {
641
- border-color: var(--zenith-blue);
642
- }
643
- :host([mode="company"]) .view-area:nth-of-type(1) {
644
- border-color: var(--tuned-red);
645
- }
646
- :host([mode="company"]) .view-area:nth-of-type(2) {
647
- border-color: var(--sharp-blue);
648
- }
649
- :host([mode="company"]) .view-area:nth-of-type(3) {
650
- border-color: var(--yellow);
651
- }
652
- :host([mode="app"]) .view-area:nth-of-type(1) {
653
- background-color: color-mix(in srgb, var(--tuned-red) 25%, transparent);
654
- }
655
- :host([mode="app"]) .view-area:nth-of-type(2) {
656
- background-color: color-mix(in srgb, var(--sharp-blue) 25%, transparent);
657
- }
658
- :host([mode="app"]) .view-area:nth-of-type(3) {
659
- background-color: color-mix(in srgb, var(--yellow) 25%, transparent);
660
- }
661
- :host([mode="app"]) .view-area:nth-of-type(4) {
662
- background-color: color-mix(in srgb, var(--apple-green) 25%, transparent);
663
- }
664
- :host([mode="app"]) .view-area:nth-of-type(5) {
665
- background-color: color-mix(in srgb, var(--pink) 25%, transparent);
666
- }
667
- .view-square {
668
- grid-area: square;
669
- }
670
- .view-title {
671
- grid-area: title;
672
- }
673
- .view-header {
674
- grid-area: header;
675
- }
676
- .view-projects {
677
- grid-area: projects;
678
- }
679
- .view-bio {
680
- grid-area: bio;
681
- }
682
- .view-nav {
683
- grid-area: nav;
684
- }
685
- .view-footer {
686
- grid-area: footer;
687
- }
688
- .view-content {
689
- grid-area: content;
690
- }
691
- .view-banner {
692
- grid-area: banner;
693
- }
694
- .view-main {
695
- grid-area: main;
696
- }
697
- .view-page-dots {
698
- grid-area: page-dots;
699
- }
700
- /*# sourceMappingURL=ds-one.bundle.css.map */