@rileybathurst/paddle 1.6.4 → 1.7.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rileybathurst/paddle",
3
3
  "private": false,
4
- "version": "1.6.4",
4
+ "version": "1.7.0",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -0,0 +1,50 @@
1
+ import * as React from "react"
2
+
3
+ type MoonlightTourDateTime = {
4
+ nodes: {
5
+ id: React.Key;
6
+ date: string;
7
+ start: string;
8
+ finish: string;
9
+ }[];
10
+ };
11
+
12
+ const Time = ({ string }: { string?: string }) => {
13
+ const dateStr = new Date().toISOString().split("T")[0];
14
+ return new Date(`${dateStr}T${string}`).toLocaleTimeString("en-US", {
15
+ hour: "2-digit",
16
+ minute: "2-digit",
17
+ hour12: true
18
+ });
19
+ };
20
+
21
+ export const PaddleMoonlightDatesTime = ({ nodes }: MoonlightTourDateTime) => (
22
+ <div>
23
+ <h3>Moonlight Tour Dates</h3>
24
+ <ul>
25
+ {nodes.map(({ id, date, start, finish }) => {
26
+ const hasPassed = new Date(date) < new Date();
27
+ const content = (
28
+ <>
29
+ {new Date(date).toLocaleDateString("en-US", {
30
+ timeZone: "UTC",
31
+ weekday: "long",
32
+ year: "numeric",
33
+ month: "long",
34
+ day: "numeric",
35
+ })}
36
+ &nbsp;-&nbsp;
37
+ <Time string={start} />
38
+ &nbsp;-&nbsp;
39
+ <Time string={finish} />
40
+ </>
41
+ );
42
+ return (
43
+ <li key={id}>
44
+ {hasPassed ? <s>{content}</s> : content}
45
+ </li>
46
+ );
47
+ })}
48
+ </ul>
49
+ </div>
50
+ );
@@ -1,13 +1,13 @@
1
1
  import * as React from "react";
2
- import PaddleRemainder from "./paddle-remainder.tsx";
2
+ import PaddleRemainder from "./paddle-remainder";
3
3
 
4
4
  interface SpecsTypes {
5
5
  [key: string]:
6
- | string
7
- | number
8
- | {
9
- [key: string]: string | number[];
10
- };
6
+ | string
7
+ | number
8
+ | {
9
+ [key: string]: string | number[];
10
+ };
11
11
  }
12
12
  // * moving the section tag to the parent component means you can loop yourself
13
13
  export const PaddleSpecs = (specs: SpecsTypes) =>
@@ -14,7 +14,7 @@ button,
14
14
  margin-block-end: var(--elbrus);
15
15
  transition: var(--slow);
16
16
  display: inline-block;
17
- line-height: var(--kilimanjaro);
17
+ line-height: 1.5;
18
18
  text-decoration: none;
19
19
  width: max-content;
20
20
  text-align: center;
@@ -243,6 +243,10 @@ menu button {
243
243
  justify-content: space-between;
244
244
  gap: var(--denali);
245
245
  width: 100%;
246
+
247
+ h3 {
248
+ margin-block-end: 0;
249
+ }
246
250
  }
247
251
 
248
252
  /*------------------------------------*/
@@ -48,31 +48,30 @@
48
48
  stroke: whitesmoke;
49
49
 
50
50
  @media (prefers-color-scheme: dark) {
51
- border-color: var(--black-metal);
52
- stroke: var(--black-metal);
51
+ border-color: var(--neutral-100);
52
+ stroke: var(--neutral-100);
53
53
  }
54
54
  }
55
55
 
56
56
  .cutout {
57
57
  object-fit: contain;
58
58
  place-self: center;
59
- /* box-shadow: var(--umbra); */
60
- z-index: 2; /* TODO: variable */
59
+ z-index: var(--understory);
61
60
  grid-row: 1/1;
62
- filter: drop-shadow(5px 5px 5px var(--black-out));
61
+ filter: drop-shadow(5px 5px 5px var(--neutral-700));
63
62
  aspect-ratio: 16/9;
64
63
  width: 100%;
65
64
  }
66
65
 
67
66
  svg {
68
- z-index: 1; /* TODO: variable */
67
+ z-index: var(--floor);
69
68
  max-height: 100%; /* overwrite the default */
70
69
  margin: calc(var(--elbrus) / 2);
71
70
  width: calc(100% - var(--elbrus));
72
71
  stroke: whitesmoke;
73
72
 
74
73
  @media (prefers-color-scheme: dark) {
75
- stroke: var(--black-metal);
74
+ stroke: var(--neutral-100);
76
75
  }
77
76
  }
78
77
  }
@@ -90,7 +89,7 @@
90
89
  .purchase__title {
91
90
  font-size: var(--denali);
92
91
  margin-inline: var(--kosciuszko);
93
- line-height: var(--aconcagua);
92
+ line-height: 2.5;
94
93
  }
95
94
 
96
95
  hr,
@@ -122,11 +121,11 @@
122
121
  h6 {
123
122
  font-size: clamp(var(--vinson), 1.667vw, var(--denali));
124
123
  font-weight: normal;
125
- line-height: var(--everest);
124
+ line-height: 3;
126
125
  }
127
126
 
128
127
  button {
129
- line-height: var(--denali);
128
+ line-height: 2;
130
129
  }
131
130
  }
132
131
 
@@ -196,7 +195,6 @@
196
195
  flex-flow: row wrap;
197
196
  gap: var(--elbrus);
198
197
  max-width: max-content;
199
- /* border: 1px solid var(--tin-soldier); im not sure yet */
200
198
  margin-block-end: var(--kilimanjaro);
201
199
  padding-block: var(--kilimanjaro);
202
200
  padding-inline: var(--kosciuszko);
@@ -277,12 +275,22 @@
277
275
  box-shadow: var(--penumbra);
278
276
  color: var(--lake-600);
279
277
 
278
+ .book-now {
279
+ background-color: var(--neutral-100);
280
+ color: var(--lake-700);
281
+ }
282
+
280
283
  @media (prefers-color-scheme: dark) {
281
284
  background-color: var(--lake-700);
282
285
  border-color: var(--lake-600);
283
- /* box-shadow: var(--penumbra--dark); */
284
286
  color: var(--lake-200);
285
287
 
288
+ .book-now {
289
+ background-color: var(--lake-400);
290
+ color: var(--lake-700);
291
+ border-color: var(--lake-500);
292
+ }
293
+
286
294
  a:not(.book-now) {
287
295
  color: var(--lake-200);
288
296
  }
@@ -28,7 +28,7 @@ body:has(#storybook-root) {
28
28
  body .tahoe-city {
29
29
  @media (prefers-color-scheme: dark) {
30
30
  background-color: var(--navy-300);
31
- color: var(--brilliance);
31
+ color: var(--neutral-100);
32
32
  }
33
33
  }
34
34
 
@@ -137,7 +137,7 @@ header {
137
137
  h2 {
138
138
  max-width: var(--vulture);
139
139
  margin-inline: auto;
140
- font-size: 2rem;
140
+ font-size: var(--denali);
141
141
 
142
142
  a {
143
143
  display: inline-block;
@@ -150,7 +150,7 @@ header {
150
150
  }
151
151
 
152
152
  /*------------------------------------*/
153
- /* #BLOCK Start */
153
+ /* #MARGIN BLOCK START */
154
154
  /* this seems like something you could do more interesting in a programatic way */
155
155
  /*------------------------------------*/
156
156
 
@@ -187,7 +187,44 @@ header {
187
187
  }
188
188
 
189
189
  /*------------------------------------*/
190
- /* #BLOCK END */
190
+ /* #MARGIN BLOCK */
191
+ /* this seems like something you could do more interesting in a programatic way */
192
+ /*------------------------------------*/
193
+
194
+ .everest-margin-block {
195
+ margin-block: var(--everest);
196
+ }
197
+
198
+ .aconcagua-margin-block {
199
+ margin-block: var(--aconcagua);
200
+ }
201
+
202
+ .denali-margin-block {
203
+ margin-block: var(--denali);
204
+ }
205
+
206
+ .kilimanjaro-margin-block {
207
+ margin-block: var(--kilimanjaro);
208
+ }
209
+
210
+ .elbrus-margin-block {
211
+ margin-block: var(--elbrus);
212
+ }
213
+
214
+ .vinson-margin-block {
215
+ margin-block: var(--vinson);
216
+ }
217
+
218
+ .kosciuszko-margin-block {
219
+ margin-block: var(--kosciuszko);
220
+ }
221
+
222
+ .zero-margin-block {
223
+ margin-block: 0;
224
+ }
225
+
226
+ /*------------------------------------*/
227
+ /* #MARGIN BLOCK END */
191
228
  /* this seems like something you could do more interesting in a programatic way */
192
229
  /*------------------------------------*/
193
230
 
@@ -224,7 +261,44 @@ header {
224
261
  }
225
262
 
226
263
  /*------------------------------------*/
227
- /* #BLOCK Start */
264
+ /* #BLOCK PADDING */
265
+ /* this seems like something you could do more interesting in a programatic way */
266
+ /*------------------------------------*/
267
+
268
+ .everest-padding-block {
269
+ padding-block: var(--everest);
270
+ }
271
+
272
+ .aconcagua-padding-block {
273
+ padding-block: var(--aconcagua);
274
+ }
275
+
276
+ .denali-padding-block {
277
+ padding-block: var(--denali);
278
+ }
279
+
280
+ .kilimanjaro-padding-block {
281
+ padding-block: var(--kilimanjaro);
282
+ }
283
+
284
+ .elbrus-padding-block {
285
+ padding-block: var(--elbrus);
286
+ }
287
+
288
+ .vinson-padding-block {
289
+ padding-block: var(--vinson);
290
+ }
291
+
292
+ .kosciuszko-padding-block {
293
+ padding-block: var(--kosciuszko);
294
+ }
295
+
296
+ .zero-padding-block {
297
+ padding-block: 0;
298
+ }
299
+
300
+ /*------------------------------------*/
301
+ /* #PADDING BLOCK START */
228
302
  /* this seems like something you could do more interesting in a programatic way */
229
303
  /*------------------------------------*/
230
304
 
@@ -261,7 +335,7 @@ header {
261
335
  }
262
336
 
263
337
  /*------------------------------------*/
264
- /* #BLOCK END */
338
+ /* #PADDING BLOCK END */
265
339
  /* this seems like something you could do more interesting in a programatic way */
266
340
  /*------------------------------------*/
267
341
 
@@ -349,13 +423,6 @@ header {
349
423
  gap: clamp(var(--kosciuszko), 1.67vw, var(--elbrus));
350
424
  border-radius: var(--card-radius);
351
425
 
352
- /* TODO: this is breaking with a phone and pushing too much location */
353
- /* > * {
354
- flex: 3rem 1;
355
- width: 100%;
356
- height: fit-content;
357
- } */
358
-
359
426
  > svg,
360
427
  .svg {
361
428
  min-width: var(--everest);
@@ -364,11 +431,11 @@ header {
364
431
 
365
432
  .location_details {
366
433
  width: 100%;
367
- }
368
434
 
369
- /* p {
370
- margin-block-end: 0; reset to the gap
371
- } */
435
+ .button {
436
+ margin-block-end: 0; /* reset */
437
+ }
438
+ }
372
439
 
373
440
  ul {
374
441
  padding-inline-start: 0;
@@ -390,7 +457,6 @@ header {
390
457
  max-width: 100%;
391
458
  }
392
459
 
393
- /* * img__wrapped */
394
460
  > * {
395
461
  border-radius: 0.25rem;
396
462
  box-shadow: var(--penumbra);
@@ -406,7 +472,7 @@ header {
406
472
  aspect-ratio: 1;
407
473
  border: none;
408
474
  box-shadow: none;
409
- margin-block: 1rem;
475
+ margin-block: var(--vinson);
410
476
 
411
477
  img {
412
478
  border-radius: 50%;
@@ -422,7 +488,7 @@ header {
422
488
  grid-row: 2;
423
489
  aspect-ratio: 1;
424
490
  box-shadow: none;
425
- margin-block: 1rem;
491
+ margin-block: var(--vinson);
426
492
  border-radius: 50%;
427
493
  border: 2px solid;
428
494
  width: calc(100% - 4px);
@@ -469,25 +535,25 @@ header {
469
535
 
470
536
  .spec {
471
537
  display: flex;
472
- gap: 1rem;
538
+ gap: var(--vinson);
473
539
  flex-flow: row wrap;
474
540
  justify-content: space-between;
475
541
  align-items: baseline;
476
542
  align-items: flex-start;
477
543
  /* addding this border has to flip the margins */
478
- border-block-start: 1px solid var(--tin-soldier);
544
+ border-block-start: 1px solid var(--neutral-300);
479
545
  text-transform: uppercase;
480
546
 
481
547
  height: 2lh;
482
548
  margin-block-start: 1lh;
483
549
  @supports not (margin: 1lh) {
484
- height: 2.5rem;
485
- margin-block-start: 1.25rem;
550
+ height: var(--aconcagua);
551
+ margin-block-start: var(--elbrus);
486
552
  }
487
553
 
488
554
  h2,
489
555
  h3 {
490
- line-height: 2rem;
556
+ line-height: 2;
491
557
  margin-block-end: 0.25rem;
492
558
  }
493
559
 
@@ -512,7 +578,7 @@ header {
512
578
  flex-direction: column;
513
579
  align-items: center;
514
580
  justify-content: center;
515
- gap: 1rem;
581
+ gap: var(--vinson);
516
582
 
517
583
  .equipment-images {
518
584
  max-width: 100%;
@@ -528,7 +594,7 @@ header {
528
594
  /* * test this in chrome, it doesnt have subgrid yet */
529
595
  .comparesheet {
530
596
  display: grid;
531
- gap: 1rem;
597
+ gap: var(--vinson);
532
598
  grid-template-columns: 1fr 1fr;
533
599
 
534
600
  @media (min-width: 30rem) {
@@ -549,9 +615,8 @@ header {
549
615
  grid-row: 1/11;
550
616
  display: grid;
551
617
  grid-template-rows: subgrid;
552
- gap: 1rem;
553
- /* border-inline-end: 1px solid var(--tin-soldier); */
554
- padding-inline-end: 1rem;
618
+ gap: var(--vinson);
619
+ padding-inline-end: var(--vinson);
555
620
 
556
621
  > * {
557
622
  align-self: stretch;
@@ -564,7 +629,7 @@ header {
564
629
 
565
630
  > *:nth-child(odd) {
566
631
  border-radius: 0.25rem;
567
- background-color: var(--brilliance);
632
+ background-color: var(--neutral-100);
568
633
 
569
634
  @media (prefers-color-scheme: dark) {
570
635
  background-color: var(--navy-300);
@@ -588,7 +653,7 @@ header {
588
653
  @media (min-width: 30rem) {
589
654
  display: grid;
590
655
  }
591
- padding-inline-end: 1rem;
656
+ padding-inline-end: var(--vinson);
592
657
  text-align: end;
593
658
  }
594
659
 
@@ -596,8 +661,8 @@ header {
596
661
  position: sticky;
597
662
  top: -1px;
598
663
  z-index: var(--understory);
599
- background-color: var(--brilliance);
600
- box-shadow: 0 0 0 100vmax var(--brilliance);
664
+ background-color: var(--neutral-100);
665
+ box-shadow: 0 0 0 100vmax var(--neutral-100);
601
666
  clip-path: inset(0 -100vmax);
602
667
 
603
668
  @media (prefers-color-scheme: dark) {
@@ -17,7 +17,7 @@ ol {
17
17
  display: block;
18
18
  margin-block-end: var(--baseline);
19
19
  padding-inline-start: 0;
20
- line-height: var(--kilimanjaro);
20
+ line-height: 1.5;
21
21
  }
22
22
  }
23
23
 
@@ -67,7 +67,7 @@ ol {
67
67
  .tour__minimum {
68
68
  display: flex;
69
69
  flex-flow: row wrap;
70
- gap: 1rem;
70
+ gap: var(--vinson);
71
71
  align-items: baseline;
72
72
  justify-content: space-between;
73
73
  }
@@ -78,7 +78,7 @@ ol {
78
78
 
79
79
  .features {
80
80
  text-transform: uppercase;
81
- font-size: 1rem;
81
+ font-size: var(--vinson);
82
82
 
83
83
  ul {
84
84
  list-style: none;
@@ -89,8 +89,8 @@ ol {
89
89
  margin-block-end: 1lh;
90
90
 
91
91
  @supports not (margin: 1lh) {
92
- height: 2.5rem;
93
- margin-block-end: 1.25rem;
92
+ height: var(--aconcagua);
93
+ margin-block-end: var(--elbrus);
94
94
  }
95
95
  }
96
96
 
@@ -110,8 +110,8 @@ ol {
110
110
 
111
111
  li {
112
112
  list-style: none;
113
- border-bottom: 1px solid var(--tin-soldier);
114
- margin-block-end: 1.5rem;
113
+ border-bottom: 1px solid var(--neutral-300);
114
+ margin-block-end: var(--kilimanjaro);
115
115
  }
116
116
 
117
117
  li:last-child {
@@ -120,14 +120,14 @@ ol {
120
120
 
121
121
  /* question */
122
122
  h2 {
123
- font-size: 1.25rem;
123
+ font-size: var(--elbrus);
124
124
  line-height: 1.875rem;
125
125
  margin-block-end: 0.625rem;
126
126
  }
127
127
 
128
128
  /* answer */
129
129
  h3 {
130
- font-size: 1rem;
130
+ font-size: var(--vinson);
131
131
  line-height: 1.25;
132
132
  font-weight: normal;
133
133
  margin-block-end: 0.625rem;
@@ -177,7 +177,7 @@ ol {
177
177
  transition: var(--fade);
178
178
  margin-block: var(--baseline);
179
179
  margin-inline: auto;
180
- min-width: 3rem; /* guess and check */
180
+ min-width: var(--everest); /* guess and check */
181
181
 
182
182
  @media (min-width: 20rem) {
183
183
  min-width: 4rem; /* guess and check */
@@ -13,9 +13,9 @@ header {
13
13
  margin-block-end: 0;
14
14
  transform: translate3D(0, 0, 0); /* I need this to hide things */
15
15
  line-height: 1.5;
16
- height: 2rem;
16
+ height: var(--denali);
17
17
  overflow: hidden;
18
- z-index: 1; /* TODO: variable */
18
+ z-index: var(--floor);
19
19
  position: relative;
20
20
  /* width: calc(100% - 1rem); */
21
21
  width: 100%;
@@ -34,17 +34,17 @@ header {
34
34
 
35
35
  .spinning-button {
36
36
  position: fixed; /* I never like these things but it's needed here */
37
- height: 1rem;
38
- line-height: 2rem;
37
+ height: var(--vinson);
38
+ line-height: 2;
39
39
  transition: 2s ease;
40
40
  margin-block-start: -1rem; /* I dont know why I have to add this something about defaults probably */
41
41
  }
42
42
 
43
43
  nav {
44
- margin: 1.5rem;
44
+ margin: var(--kilimanjaro);
45
45
  margin-block-start: 0; /* testing slide menu */
46
46
  transition: 2s ease;
47
- padding-inline-start: 1.5rem;
47
+ padding-inline-start: var(--kilimanjaro);
48
48
 
49
49
  @media (min-width: 40rem) {
50
50
  max-width: var(--pelican);
@@ -56,8 +56,8 @@ nav {
56
56
  flex-flow: row wrap;
57
57
  justify-content: space-between;
58
58
  margin-block: 0; /* testing slide menu */
59
- padding-block-start: 1.25rem;
60
- padding-block-start: calc(var(--elbrus) / 2);
59
+ padding-block-start: calc(var(--elbrus) / 2); /* 1.25/2= 0.625 */
60
+ /* TODO: check if this can be kosciuszko */
61
61
  list-style: none;
62
62
  padding-inline-start: 0;
63
63
  align-items: baseline;
@@ -106,13 +106,11 @@ nav {
106
106
  }
107
107
 
108
108
  li:first-child {
109
- margin-block-start: 1.5rem;
110
- margin-block-start: calc(var(--elbrus) / 2);
111
109
  margin-block-start: 0;
112
110
  }
113
111
 
114
112
  li:last-child {
115
- margin-block-end: 1.5rem;
113
+ margin-block-end: var(--kilimanjaro);
116
114
  }
117
115
 
118
116
  .book-now {
@@ -53,6 +53,12 @@
53
53
  }
54
54
  }
55
55
 
56
+ .tahoe-city {
57
+ .cloud {
58
+ background-color: var(--sand-100);
59
+ }
60
+ }
61
+
56
62
  .south-tahoe {
57
63
  .cloud {
58
64
  background-color: var(--cloud-background-color);
@@ -23,7 +23,7 @@
23
23
  /* * be careful of this it can break the footer flex */
24
24
  font-size: var(--kosciuszko);
25
25
 
26
- line-height: var(--denali);
26
+ line-height: 2;
27
27
  min-height: var(--denali); /* always keep a line */
28
28
  padding: clamp(0.5rem, 1vw, var(--vinson));
29
29
  border-bottom: 0.5px solid var(--neutral-400);
@@ -5,7 +5,7 @@
5
5
  body {
6
6
  font-family: var(--body_font); /* Google font */
7
7
  font-size: 16px;
8
- line-height: 1.25rem; /* 20px */
8
+ line-height: 1.25; /* 20px */
9
9
  }
10
10
 
11
11
  h1,
@@ -21,6 +21,7 @@ h4,
21
21
  h5,
22
22
  h6 {
23
23
  margin-block-start: 0; /* reset */
24
+ line-height: 1.5;
24
25
  }
25
26
 
26
27
  h3,
@@ -33,86 +34,48 @@ h6 {
33
34
  h1,
34
35
  .everest {
35
36
  margin-top: 0; /* browser reset */
36
- font-size: 3rem; /* 48px */
37
- line-height: 3.75rem; /* 60px */
38
- margin-bottom: 2.5rem; /* 40px */
39
- /* single line 100px */
40
- /* two lines 160px */
41
- /* multi lines + 60px each */
37
+ font-size: var(--everest); /* 48px */
38
+ margin-bottom: var(--aconcagua); /* 40px */
42
39
  }
43
40
 
44
41
  h2,
45
42
  .aconcagua,
46
43
  .supra {
47
- font-size: 2.5rem; /* 40px */
48
- line-height: 3rem; /* 48px */
49
- margin-block-end: 2rem; /* 32px */
50
- /* single line 80px */
51
- /* two lines 128px🚨 */
52
- /* multi lines + 48px each🚨 */
53
-
54
- /* what if i just do a slightly different base for two lines? as an extra class? */
55
- /* 96 + x? */
44
+ font-size: var(--aconcagua); /* 40px */
45
+ margin-block-end: var(--denali); /* 32px */
56
46
  }
57
47
 
58
48
  h3,
59
49
  .denali {
60
- font-size: 2rem; /* 32px */
61
- line-height: 2.5rem; /* 40px */
50
+ font-size: var(--denali); /* 32px */
62
51
  margin-bottom: 1.875rem; /* 30px */
63
- /* single line 70px */
64
- /* two lines 110px */
65
- /* multi lines + 40px each */
66
52
  }
67
53
 
68
54
  h4,
69
55
  .kilimanjaro,
70
56
  .spec h2 {
71
- font-size: 1.5rem; /* 24px */
72
- line-height: 2rem; /* 32px */
57
+ font-size: var(--kilimanjaro); /* 24px */
73
58
  margin-bottom: 1.75rem; /* 28px */
74
- /* single line 60px */
75
- /* two lines 92px🚨 */
76
- /* multi lines + 32px🚨 each */
77
59
  }
78
60
 
79
61
  h5,
80
62
  .elbrus {
81
- font-size: 1.25rem; /* 20px */
82
- line-height: 1.875rem; /* 30px */
63
+ font-size: var(--kosciuszko); /* 20px */
83
64
  margin-bottom: 0.625rem; /* 10px */
84
- /* single line 40px */
85
- /* two lines 70px */
86
- /* multi lines + 30px each */
87
65
  }
88
66
 
89
67
  h6,
90
68
  .vinson {
91
- font-size: 1rem; /* 16px */
92
- line-height: 1.25rem; /* 20px this becomes the vertical rythym */
69
+ font-size: var(--vinson); /* 16px */
93
70
  margin-bottom: 0.625rem; /* 10px skips some of the lines */
94
- /* single line 30px */
95
- /* two lines 50px */
96
- /* multi lines + 20px each */
97
71
  font-family: var(--body_font);
98
72
  }
99
73
 
100
74
  /* start the multi line problem here as itll be worst */
101
75
  small,
102
- .kosciuszko,
103
- .two-small-lines,
104
- .multiple-small-lines {
105
- font-size: 0.75rem; /* 12px */
106
- line-height: 1rem; /* 16px */
76
+ .kosciuszko {
77
+ font-size: var(--kosciuszko); /* 12px */
107
78
  margin-bottom: 0.875rem; /* 14px */
108
- /* single line 30px */
109
- /* two lines 46px🚨 */
110
- /* multi lines + 16px🚨 each */
111
-
112
- /* options i want 20px if its smaller it can be 10 but thats unrealistic */
113
- /* 4 is pretty small on a single line that doesnt work it'd have to go to 30 */
114
- /* two is already fine */
115
- /* anymore gets super complicated to get it right */
116
79
  }
117
80
 
118
81
  address {
@@ -131,15 +94,10 @@ p {
131
94
  font-family: var(--font-serif);
132
95
  }
133
96
 
134
- .two-small-lines {
135
- margin-bottom: 0.5rem;
136
- }
137
-
138
97
  /*------------------*/
139
98
  /* #HR */
140
99
  /*------------------*/
141
100
 
142
- /* default use on var(--brilliance) background */
143
101
  hr {
144
102
  border: none; /* reset */
145
103
  border-bottom: 1px solid;
@@ -271,11 +229,3 @@ select:active {
271
229
  /*------------------*/
272
230
 
273
231
  /* TODO: v1.2 */
274
- /* I think this is the only place its used but describes why */
275
- /* .single__description del {
276
- color: hsl(var(--sand__base), var(--dim));
277
- @media (prefers-color-scheme: dark) {
278
- color: hsl(var(--sand__base), var(--dark));
279
- }
280
- }
281
- */
@@ -83,28 +83,6 @@
83
83
  /* #NEUTRALS */
84
84
  /*------------------*/
85
85
 
86
- /* louie variables */
87
- --pitch: 2.5%;
88
- --dark: 12.5%;
89
- --dull: 25%;
90
- --dim: 37.5%;
91
- --mid: 50%;
92
- --glow: 62.5%;
93
- --light: 75%;
94
- --bright: 87.5%;
95
- --brilliance: 97.5%;
96
-
97
- /* louie neutrals */
98
- --black-metal: hsl(210, 25%, 2.5%);
99
- --black-out: hsl(210, 25%, 12.5%);
100
- --raven-black: hsl(210, 12.5%, 25%);
101
- --industrial-revolution: hsl(210, 7.5%, 37.5%);
102
- --grey: hsl(210, 7.5%, 50%);
103
- --cold-grey: hsl(210, 7.5%, 62.5%);
104
- --tin-soldier: hsl(210, 12.5%, 75%);
105
- --kingly-cloud: hsl(210, 18.75%, 87.5%);
106
- --brilliance: hsl(210, 25%, 97.5%);
107
-
108
86
  --neutral-100: #f9f9f9;
109
87
  --neutral-200: #ebebeb;
110
88
  --neutral-300: #d9d9d9;