@beforesemicolon/builder 1.8.0 → 1.8.1
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/cjs/docs/templates/fading-citrus/stylesheets/common.css +5 -4
- package/dist/cjs/docs/templates/fading-citrus/stylesheets/documentation.css +5 -71
- package/dist/cjs/docs/templates/fading-citrus/stylesheets/landing.css +4 -1
- package/dist/cjs/docs/templates/fading-citrus/template.config.js +1 -1
- package/dist/esm/docs/templates/fading-citrus/stylesheets/common.css +5 -4
- package/dist/esm/docs/templates/fading-citrus/stylesheets/documentation.css +5 -71
- package/dist/esm/docs/templates/fading-citrus/stylesheets/landing.css +4 -1
- package/dist/esm/docs/templates/fading-citrus/template.config.js +1 -1
- package/package.json +1 -1
|
@@ -115,7 +115,6 @@ h6 {
|
|
|
115
115
|
font-weight: 800;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
-
h1 a,
|
|
119
118
|
h2 a,
|
|
120
119
|
h3 a,
|
|
121
120
|
h4 a,
|
|
@@ -126,7 +125,6 @@ h6 a {
|
|
|
126
125
|
color: inherit;
|
|
127
126
|
}
|
|
128
127
|
|
|
129
|
-
h1 a::before,
|
|
130
128
|
h2 a::before,
|
|
131
129
|
h3 a::before,
|
|
132
130
|
h4 a::before,
|
|
@@ -138,12 +136,15 @@ h6 a::before {
|
|
|
138
136
|
position: absolute;
|
|
139
137
|
top: 50%;
|
|
140
138
|
left: 0;
|
|
141
|
-
transform: translate(calc(-100% -
|
|
139
|
+
transform: translate(calc(-100% - 4px), -50%);
|
|
142
140
|
color: var(--primary);
|
|
143
141
|
transition: opacity 0.2s ease;
|
|
144
142
|
}
|
|
145
143
|
|
|
146
|
-
|
|
144
|
+
h2 a::before {
|
|
145
|
+
font-size: 50%;
|
|
146
|
+
}
|
|
147
|
+
|
|
147
148
|
h2 a:hover::before,
|
|
148
149
|
h3 a:hover::before,
|
|
149
150
|
h4 a:hover::before,
|
|
@@ -155,13 +155,17 @@ body {
|
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
#documentation article h2 {
|
|
158
|
-
font-size:
|
|
158
|
+
font-size: 2rem;
|
|
159
159
|
font-weight: 850;
|
|
160
160
|
letter-spacing: -0.03rem;
|
|
161
161
|
margin-bottom: 24px;
|
|
162
162
|
line-height: 1.15;
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
+
#documentation article h2:first-of-type {
|
|
166
|
+
font-size: 3rem;
|
|
167
|
+
}
|
|
168
|
+
|
|
165
169
|
#documentation article h3 {
|
|
166
170
|
font-weight: 700;
|
|
167
171
|
font-size: 1.75rem;
|
|
@@ -377,64 +381,6 @@ body {
|
|
|
377
381
|
display: none;
|
|
378
382
|
}
|
|
379
383
|
|
|
380
|
-
#documentation.docs-index article h2:first-child::before {
|
|
381
|
-
content: '// documentation';
|
|
382
|
-
display: block;
|
|
383
|
-
font-family: var(--font-mono);
|
|
384
|
-
font-size: 0.85rem;
|
|
385
|
-
font-weight: 500;
|
|
386
|
-
color: var(--primary);
|
|
387
|
-
text-transform: uppercase;
|
|
388
|
-
letter-spacing: 0.15rem;
|
|
389
|
-
margin-bottom: 18px;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
#documentation.docs-index article h2:first-child {
|
|
393
|
-
font-size: clamp(3.2rem, 5vw, 4.2rem);
|
|
394
|
-
margin-bottom: 22px;
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
#documentation.docs-index article h2:first-child + p {
|
|
398
|
-
font-size: 1.15rem;
|
|
399
|
-
max-width: 900px;
|
|
400
|
-
color: oklch(0.76 0.012 250);
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
#documentation.docs-index article h2:first-child + p + p {
|
|
404
|
-
display: none;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
#documentation.docs-index article h2:first-child + p + p + ul {
|
|
408
|
-
display: grid;
|
|
409
|
-
grid-template-columns: repeat(3, 1fr);
|
|
410
|
-
gap: 16px;
|
|
411
|
-
padding: 0;
|
|
412
|
-
margin: 34px 0 64px;
|
|
413
|
-
list-style: none;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
#documentation.docs-index article h2:first-child + p + p + ul li {
|
|
417
|
-
margin: 0;
|
|
418
|
-
padding: 24px;
|
|
419
|
-
min-height: 140px;
|
|
420
|
-
border: 1px solid oklch(0.3 0.02 250 / 0.7);
|
|
421
|
-
border-radius: 12px;
|
|
422
|
-
background: oklch(0.22 0.018 250 / 0.36);
|
|
423
|
-
color: var(--muted-foreground);
|
|
424
|
-
line-height: 1.6;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
#documentation.docs-index article h2:first-child + p + p + ul code {
|
|
428
|
-
display: block;
|
|
429
|
-
width: fit-content;
|
|
430
|
-
margin-bottom: 14px;
|
|
431
|
-
border: 0;
|
|
432
|
-
background: transparent;
|
|
433
|
-
padding: 0;
|
|
434
|
-
color: var(--primary);
|
|
435
|
-
font-size: 1.05rem;
|
|
436
|
-
}
|
|
437
|
-
|
|
438
384
|
#documentation.docs-index article h3 {
|
|
439
385
|
border-bottom: 0;
|
|
440
386
|
padding-bottom: 0;
|
|
@@ -583,21 +529,9 @@ body {
|
|
|
583
529
|
}
|
|
584
530
|
}
|
|
585
531
|
|
|
586
|
-
@media screen and (max-width: 860px) {
|
|
587
|
-
#documentation.docs-index article h2:first-child + p + p + ul {
|
|
588
|
-
grid-template-columns: 1fr;
|
|
589
|
-
}
|
|
590
|
-
}
|
|
591
|
-
|
|
592
532
|
@media screen and (max-width: 640px) {
|
|
593
533
|
#documentation {
|
|
594
534
|
padding-left: 20px;
|
|
595
535
|
padding-right: 20px;
|
|
596
536
|
}
|
|
597
|
-
|
|
598
|
-
#documentation article h2,
|
|
599
|
-
#documentation.docs-index article h2:first-child {
|
|
600
|
-
font-size: 2.25rem;
|
|
601
|
-
line-height: 2.5rem;
|
|
602
|
-
}
|
|
603
537
|
}
|
|
@@ -163,7 +163,6 @@
|
|
|
163
163
|
|
|
164
164
|
.hero-stats {
|
|
165
165
|
display: flex;
|
|
166
|
-
align-items: center;
|
|
167
166
|
gap: 32px;
|
|
168
167
|
}
|
|
169
168
|
|
|
@@ -1485,6 +1484,10 @@
|
|
|
1485
1484
|
}
|
|
1486
1485
|
|
|
1487
1486
|
@media screen and (max-width: 768px) {
|
|
1487
|
+
.install-command code {
|
|
1488
|
+
font-size: 0.9rem;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1488
1491
|
.hero-section {
|
|
1489
1492
|
padding: 112px 0 80px;
|
|
1490
1493
|
}
|
|
@@ -115,7 +115,6 @@ h6 {
|
|
|
115
115
|
font-weight: 800;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
-
h1 a,
|
|
119
118
|
h2 a,
|
|
120
119
|
h3 a,
|
|
121
120
|
h4 a,
|
|
@@ -126,7 +125,6 @@ h6 a {
|
|
|
126
125
|
color: inherit;
|
|
127
126
|
}
|
|
128
127
|
|
|
129
|
-
h1 a::before,
|
|
130
128
|
h2 a::before,
|
|
131
129
|
h3 a::before,
|
|
132
130
|
h4 a::before,
|
|
@@ -138,12 +136,15 @@ h6 a::before {
|
|
|
138
136
|
position: absolute;
|
|
139
137
|
top: 50%;
|
|
140
138
|
left: 0;
|
|
141
|
-
transform: translate(calc(-100% -
|
|
139
|
+
transform: translate(calc(-100% - 4px), -50%);
|
|
142
140
|
color: var(--primary);
|
|
143
141
|
transition: opacity 0.2s ease;
|
|
144
142
|
}
|
|
145
143
|
|
|
146
|
-
|
|
144
|
+
h2 a::before {
|
|
145
|
+
font-size: 50%;
|
|
146
|
+
}
|
|
147
|
+
|
|
147
148
|
h2 a:hover::before,
|
|
148
149
|
h3 a:hover::before,
|
|
149
150
|
h4 a:hover::before,
|
|
@@ -155,13 +155,17 @@ body {
|
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
#documentation article h2 {
|
|
158
|
-
font-size:
|
|
158
|
+
font-size: 2rem;
|
|
159
159
|
font-weight: 850;
|
|
160
160
|
letter-spacing: -0.03rem;
|
|
161
161
|
margin-bottom: 24px;
|
|
162
162
|
line-height: 1.15;
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
+
#documentation article h2:first-of-type {
|
|
166
|
+
font-size: 3rem;
|
|
167
|
+
}
|
|
168
|
+
|
|
165
169
|
#documentation article h3 {
|
|
166
170
|
font-weight: 700;
|
|
167
171
|
font-size: 1.75rem;
|
|
@@ -377,64 +381,6 @@ body {
|
|
|
377
381
|
display: none;
|
|
378
382
|
}
|
|
379
383
|
|
|
380
|
-
#documentation.docs-index article h2:first-child::before {
|
|
381
|
-
content: '// documentation';
|
|
382
|
-
display: block;
|
|
383
|
-
font-family: var(--font-mono);
|
|
384
|
-
font-size: 0.85rem;
|
|
385
|
-
font-weight: 500;
|
|
386
|
-
color: var(--primary);
|
|
387
|
-
text-transform: uppercase;
|
|
388
|
-
letter-spacing: 0.15rem;
|
|
389
|
-
margin-bottom: 18px;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
#documentation.docs-index article h2:first-child {
|
|
393
|
-
font-size: clamp(3.2rem, 5vw, 4.2rem);
|
|
394
|
-
margin-bottom: 22px;
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
#documentation.docs-index article h2:first-child + p {
|
|
398
|
-
font-size: 1.15rem;
|
|
399
|
-
max-width: 900px;
|
|
400
|
-
color: oklch(0.76 0.012 250);
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
#documentation.docs-index article h2:first-child + p + p {
|
|
404
|
-
display: none;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
#documentation.docs-index article h2:first-child + p + p + ul {
|
|
408
|
-
display: grid;
|
|
409
|
-
grid-template-columns: repeat(3, 1fr);
|
|
410
|
-
gap: 16px;
|
|
411
|
-
padding: 0;
|
|
412
|
-
margin: 34px 0 64px;
|
|
413
|
-
list-style: none;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
#documentation.docs-index article h2:first-child + p + p + ul li {
|
|
417
|
-
margin: 0;
|
|
418
|
-
padding: 24px;
|
|
419
|
-
min-height: 140px;
|
|
420
|
-
border: 1px solid oklch(0.3 0.02 250 / 0.7);
|
|
421
|
-
border-radius: 12px;
|
|
422
|
-
background: oklch(0.22 0.018 250 / 0.36);
|
|
423
|
-
color: var(--muted-foreground);
|
|
424
|
-
line-height: 1.6;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
#documentation.docs-index article h2:first-child + p + p + ul code {
|
|
428
|
-
display: block;
|
|
429
|
-
width: fit-content;
|
|
430
|
-
margin-bottom: 14px;
|
|
431
|
-
border: 0;
|
|
432
|
-
background: transparent;
|
|
433
|
-
padding: 0;
|
|
434
|
-
color: var(--primary);
|
|
435
|
-
font-size: 1.05rem;
|
|
436
|
-
}
|
|
437
|
-
|
|
438
384
|
#documentation.docs-index article h3 {
|
|
439
385
|
border-bottom: 0;
|
|
440
386
|
padding-bottom: 0;
|
|
@@ -583,21 +529,9 @@ body {
|
|
|
583
529
|
}
|
|
584
530
|
}
|
|
585
531
|
|
|
586
|
-
@media screen and (max-width: 860px) {
|
|
587
|
-
#documentation.docs-index article h2:first-child + p + p + ul {
|
|
588
|
-
grid-template-columns: 1fr;
|
|
589
|
-
}
|
|
590
|
-
}
|
|
591
|
-
|
|
592
532
|
@media screen and (max-width: 640px) {
|
|
593
533
|
#documentation {
|
|
594
534
|
padding-left: 20px;
|
|
595
535
|
padding-right: 20px;
|
|
596
536
|
}
|
|
597
|
-
|
|
598
|
-
#documentation article h2,
|
|
599
|
-
#documentation.docs-index article h2:first-child {
|
|
600
|
-
font-size: 2.25rem;
|
|
601
|
-
line-height: 2.5rem;
|
|
602
|
-
}
|
|
603
537
|
}
|
|
@@ -163,7 +163,6 @@
|
|
|
163
163
|
|
|
164
164
|
.hero-stats {
|
|
165
165
|
display: flex;
|
|
166
|
-
align-items: center;
|
|
167
166
|
gap: 32px;
|
|
168
167
|
}
|
|
169
168
|
|
|
@@ -1485,6 +1484,10 @@
|
|
|
1485
1484
|
}
|
|
1486
1485
|
|
|
1487
1486
|
@media screen and (max-width: 768px) {
|
|
1487
|
+
.install-command code {
|
|
1488
|
+
font-size: 0.9rem;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1488
1491
|
.hero-section {
|
|
1489
1492
|
padding: 112px 0 80px;
|
|
1490
1493
|
}
|