@splendidlabz/styles 4.0.1 → 4.2.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 +3 -3
- package/src/components/astro/fancylist.css +12 -6
- package/src/components/css/card.css +78 -37
- package/src/components/css/hero-heading.css +2 -1
- package/src/components/css/indent-list.css +40 -7
- package/src/components/css/prose.css +22 -18
- package/src/components/svelte/accordion.css +18 -1
- package/src/components/svelte/drawer.css +9 -0
- package/src/components/svelte/modal.css +14 -14
- package/src/components/svelte/popover.css +8 -4
- package/src/effects/{fancy-box.css → fancybox.css} +44 -17
- package/src/effects/frosted-glass.css +2 -1
- package/src/effects/gradients.css +2 -2
- package/src/effects/index.css +1 -1
- package/src/form/input.css +1 -0
- package/src/generic/anchors-and-buttons.css +7 -3
- package/src/generic/form.css +13 -8
- package/src/generic/index.css +1 -0
- package/src/generic/scroll-behavior.css +5 -0
- package/src/layouts/macro/grid.css +13 -8
- package/src/layouts/micro/divider.css +4 -3
- package/src/layouts/micro/index.css +1 -0
- package/src/layouts/micro/inner-spacing.css +39 -0
- package/src/layouts/micro/micro.css +2 -0
- package/src/layouts/micro/stack.css +18 -0
- package/src/layouts/position/edge.css +72 -34
- package/src/reset.css +1 -1
- package/src/tools/color.css +4 -0
- package/src/tools/index.css +2 -1
- package/src/tools/pigment.css +65 -70
- package/src/tools/scaffolds.css +119 -0
- package/src/tools/transitions.css +18 -2
- package/src/type/index.css +2 -0
- package/src/type/text-edge.css +3 -0
- package/src/type/text-relative.css +51 -0
- package/src/variables/font.css +29 -0
- package/src/variables/radius.css +40 -40
- package/src/variables/variables.css +0 -2
- package/dist/no-tw/layouts.css +0 -1278
- package/dist/no-tw/styles.css +0 -2018
- package/dist/styles.css +0 -1383
- package/src/tools/border.css +0 -59
|
@@ -7,12 +7,16 @@
|
|
|
7
7
|
align-items: center;
|
|
8
8
|
gap: 0.5em;
|
|
9
9
|
max-width: 100%;
|
|
10
|
-
padding: 0.
|
|
10
|
+
padding: 0.125lh 0.75lh;
|
|
11
11
|
font: inherit;
|
|
12
12
|
font-family: var(--input-font);
|
|
13
13
|
text-decoration: none !important;
|
|
14
14
|
cursor: pointer;
|
|
15
15
|
|
|
16
|
+
&[disabled] {
|
|
17
|
+
cursor: default;
|
|
18
|
+
}
|
|
19
|
+
|
|
16
20
|
* {
|
|
17
21
|
pointer-events: none;
|
|
18
22
|
}
|
|
@@ -39,8 +43,8 @@
|
|
|
39
43
|
|
|
40
44
|
@layer base {
|
|
41
45
|
a {
|
|
42
|
-
@apply pigment
|
|
43
|
-
border-radius: 0;
|
|
46
|
+
/* @apply pigment; */
|
|
47
|
+
/* border-radius: 0; */
|
|
44
48
|
text-decoration: none;
|
|
45
49
|
}
|
|
46
50
|
|
package/src/generic/form.css
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
|
|
6
6
|
/* Text inputs */
|
|
7
7
|
input:where(
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
[type='text'],
|
|
9
|
+
[type='search'],
|
|
10
|
+
[type='email'],
|
|
11
|
+
[type='password'],
|
|
12
|
+
[type='tel'],
|
|
13
|
+
[type='url']
|
|
14
|
+
),
|
|
15
15
|
textarea,
|
|
16
16
|
select,
|
|
17
17
|
.field {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
@apply outline-scaffold;
|
|
21
21
|
display: block;
|
|
22
22
|
width: 100%;
|
|
23
|
-
padding: 0.
|
|
23
|
+
padding: 0.125lh 0.5lh;
|
|
24
24
|
font: inherit;
|
|
25
25
|
font-family: var(--input-font);
|
|
26
26
|
color: var(--text-color, currentcolor);
|
|
@@ -53,4 +53,9 @@
|
|
|
53
53
|
outline-color: transparent;
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
|
+
|
|
57
|
+
/* This is for honeypot */
|
|
58
|
+
.form-field-helper {
|
|
59
|
+
display: none !important;
|
|
60
|
+
}
|
|
56
61
|
}
|
package/src/generic/index.css
CHANGED
|
@@ -10,9 +10,8 @@
|
|
|
10
10
|
inherits: false;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
/* Gotta test for subgrid after adding inherit-false to --span */
|
|
14
13
|
@property --span {
|
|
15
|
-
syntax: '<
|
|
14
|
+
syntax: '<number> | auto';
|
|
16
15
|
initial-value: 1;
|
|
17
16
|
inherits: false;
|
|
18
17
|
}
|
|
@@ -29,18 +28,19 @@
|
|
|
29
28
|
inherits: false;
|
|
30
29
|
}
|
|
31
30
|
|
|
31
|
+
/* Major change here to set to width to 100% and max-width is self-set */
|
|
32
32
|
@utility grid-scaffold {
|
|
33
33
|
& {
|
|
34
34
|
display: grid;
|
|
35
35
|
gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
|
|
36
|
-
|
|
36
|
+
/* width: 100%; */
|
|
37
37
|
|
|
38
38
|
> *,
|
|
39
39
|
> *:where(.contents) > *,
|
|
40
40
|
> *:where(astro-island, astro-slot) > * {
|
|
41
|
-
grid-column: var(--colstart) / span var(--span);
|
|
42
|
-
grid-row: var(--rowstart) / span var(--rowspan);
|
|
43
|
-
|
|
41
|
+
grid-column: var(--colstart) / var(--colend, span var(--span));
|
|
42
|
+
grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
|
|
43
|
+
/* width: 100%; */
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
}
|
|
@@ -64,12 +64,17 @@
|
|
|
64
64
|
*********************/
|
|
65
65
|
@utility grid-fr-auto {
|
|
66
66
|
@apply grid-scaffold;
|
|
67
|
-
grid-template-columns:
|
|
67
|
+
grid-template-columns:
|
|
68
|
+
repeat(calc(var(--cols) - 1), minmax(0, 1fr))
|
|
69
|
+
minmax(0, auto);
|
|
68
70
|
}
|
|
69
71
|
|
|
70
72
|
@utility grid-auto-fr {
|
|
71
73
|
@apply grid-scaffold;
|
|
72
|
-
grid-template-columns: minmax(0, auto)
|
|
74
|
+
grid-template-columns: minmax(0, auto) repeat(
|
|
75
|
+
calc(var(--cols) - 1),
|
|
76
|
+
minmax(0, 1fr)
|
|
77
|
+
);
|
|
73
78
|
}
|
|
74
79
|
|
|
75
80
|
@utility grid-with-breakout {
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
@utility divider-y {
|
|
35
35
|
& {
|
|
36
36
|
@apply divider-scaffold;
|
|
37
|
+
flex-grow: 0;
|
|
37
38
|
flex-direction: column;
|
|
38
39
|
|
|
39
40
|
&::before,
|
|
@@ -63,9 +64,9 @@
|
|
|
63
64
|
row-gap: 0;
|
|
64
65
|
|
|
65
66
|
> * + *,
|
|
66
|
-
> * + *:where(astro-island, astro-slot) > * {
|
|
67
|
+
> * + *:where(astro-island, astro-slot):not(:first-of-type) > * {
|
|
67
68
|
border-top-width: var(--border-width, 1px);
|
|
68
|
-
border-color: var(--border-color);
|
|
69
|
+
border-color: var(--_bc, var(--border-color));
|
|
69
70
|
}
|
|
70
71
|
}
|
|
71
72
|
}
|
|
@@ -77,7 +78,7 @@
|
|
|
77
78
|
> * + *,
|
|
78
79
|
> * + *:where(astro-island, astro-slot) > * {
|
|
79
80
|
border-left-width: var(--border-width, 1px);
|
|
80
|
-
border-color: var(--border-color);
|
|
81
|
+
border-color: var(--_bc, var(--border-color));
|
|
81
82
|
}
|
|
82
83
|
}
|
|
83
84
|
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/*********************
|
|
2
|
+
* Inner Margin *
|
|
3
|
+
*********************/
|
|
4
|
+
@utility im-* {
|
|
5
|
+
& > * {
|
|
6
|
+
margin: calc(var(--spacing) * --value(integer));
|
|
7
|
+
margin: calc(--value([length]));
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@utility im-x-* {
|
|
12
|
+
margin-inline: calc(var(--spacing) * --value(integer));
|
|
13
|
+
margin-inline: calc(--value([length]));
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@utility im-y-* {
|
|
17
|
+
margin-block: calc(var(--spacing) * --value(integer));
|
|
18
|
+
margin-block: calc(--value([length]));
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/*********************
|
|
22
|
+
* Inner Padding *
|
|
23
|
+
*********************/
|
|
24
|
+
@utility ip-* {
|
|
25
|
+
& > * {
|
|
26
|
+
padding: calc(var(--spacing) * --value(integer));
|
|
27
|
+
padding: calc(--value([length]));
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@utility ip-x-* {
|
|
32
|
+
padding-inline: calc(var(--spacing) * --value(integer));
|
|
33
|
+
padding-inline: calc(--value([length]));
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@utility ip-y-* {
|
|
37
|
+
padding-block: calc(var(--spacing) * --value(integer));
|
|
38
|
+
padding-block: calc(--value([length]));
|
|
39
|
+
}
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
@apply micro;
|
|
15
15
|
display: flex;
|
|
16
16
|
flex-direction: row;
|
|
17
|
+
flex-wrap: nowrap;
|
|
17
18
|
gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
|
|
18
19
|
|
|
19
20
|
> .spacer {
|
|
@@ -27,6 +28,7 @@
|
|
|
27
28
|
@apply micro;
|
|
28
29
|
display: flex;
|
|
29
30
|
flex-direction: column;
|
|
31
|
+
flex-wrap: nowrap;
|
|
30
32
|
gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
|
|
31
33
|
|
|
32
34
|
> .spacer {
|
|
@@ -6,8 +6,6 @@
|
|
|
6
6
|
/* prettier-ignore */
|
|
7
7
|
@utility edge-scaffold {
|
|
8
8
|
transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
|
|
9
|
-
:where(.stack) > & { box-sizing: content-box; }
|
|
10
|
-
:where(.relative > &) { position: absolute; }
|
|
11
9
|
}
|
|
12
10
|
|
|
13
11
|
/*********************
|
|
@@ -17,69 +15,85 @@
|
|
|
17
15
|
/* Top */
|
|
18
16
|
@utility stack-edge-top {
|
|
19
17
|
place-self: start center;
|
|
18
|
+
box-sizing: content-box;
|
|
20
19
|
}
|
|
21
20
|
|
|
22
21
|
@utility stack-edge-topleft {
|
|
23
22
|
place-self: start start;
|
|
23
|
+
box-sizing: content-box;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
@utility stack-edge-topright {
|
|
27
27
|
place-self: start end;
|
|
28
|
+
box-sizing: content-box;
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
@utility stack-edge-topfull {
|
|
31
32
|
place-self: start stretch;
|
|
33
|
+
box-sizing: content-box;
|
|
32
34
|
}
|
|
33
35
|
|
|
34
36
|
/* Bottom */
|
|
35
37
|
@utility stack-edge-bottom {
|
|
36
38
|
place-self: end center;
|
|
39
|
+
box-sizing: content-box;
|
|
37
40
|
}
|
|
38
41
|
|
|
39
42
|
@utility stack-edge-bottomleft {
|
|
40
43
|
place-self: end start;
|
|
44
|
+
box-sizing: content-box;
|
|
41
45
|
}
|
|
42
46
|
|
|
43
47
|
@utility stack-edge-bottomright {
|
|
44
48
|
place-self: end end;
|
|
49
|
+
box-sizing: content-box;
|
|
45
50
|
}
|
|
46
51
|
|
|
47
52
|
@utility stack-edge-bottomfull {
|
|
48
53
|
place-self: end stretch;
|
|
54
|
+
box-sizing: content-box;
|
|
49
55
|
}
|
|
50
56
|
|
|
51
57
|
/* Left */
|
|
52
58
|
@utility stack-edge-left {
|
|
53
59
|
place-self: center start;
|
|
60
|
+
box-sizing: content-box;
|
|
54
61
|
}
|
|
55
62
|
|
|
56
63
|
@utility stack-edge-lefttop {
|
|
57
64
|
place-self: start start;
|
|
65
|
+
box-sizing: content-box;
|
|
58
66
|
}
|
|
59
67
|
|
|
60
68
|
@utility stack-edge-leftbottom {
|
|
61
69
|
place-self: end start;
|
|
70
|
+
box-sizing: content-box;
|
|
62
71
|
}
|
|
63
72
|
|
|
64
73
|
@utility stack-edge-leftfull {
|
|
65
74
|
place-self: stretch start;
|
|
75
|
+
box-sizing: content-box;
|
|
66
76
|
}
|
|
67
77
|
|
|
68
78
|
/* Right */
|
|
69
79
|
@utility stack-edge-right {
|
|
70
80
|
place-self: center end;
|
|
81
|
+
box-sizing: content-box;
|
|
71
82
|
}
|
|
72
83
|
|
|
73
84
|
@utility stack-edge-righttop {
|
|
74
85
|
place-self: start end;
|
|
86
|
+
box-sizing: content-box;
|
|
75
87
|
}
|
|
76
88
|
|
|
77
89
|
@utility stack-edge-rightbottom {
|
|
78
90
|
place-self: end end;
|
|
91
|
+
box-sizing: content-box;
|
|
79
92
|
}
|
|
80
93
|
|
|
81
94
|
@utility stack-edge-rightfull {
|
|
82
95
|
place-self: stretch end;
|
|
96
|
+
box-sizing: content-box;
|
|
83
97
|
}
|
|
84
98
|
|
|
85
99
|
/*********************
|
|
@@ -88,6 +102,7 @@
|
|
|
88
102
|
|
|
89
103
|
/* Top */
|
|
90
104
|
@utility relative-edge-top {
|
|
105
|
+
position: absolute;
|
|
91
106
|
inset-block-start: 0;
|
|
92
107
|
inset-inline: 0;
|
|
93
108
|
width: fit-content;
|
|
@@ -95,22 +110,26 @@
|
|
|
95
110
|
}
|
|
96
111
|
|
|
97
112
|
@utility relative-edge-topleft {
|
|
113
|
+
position: absolute;
|
|
98
114
|
inset-block-start: 0;
|
|
99
115
|
inset-inline-start: 0;
|
|
100
116
|
}
|
|
101
117
|
|
|
102
118
|
@utility relative-edge-topright {
|
|
119
|
+
position: absolute;
|
|
103
120
|
inset-block-start: 0;
|
|
104
121
|
inset-inline-end: 0;
|
|
105
122
|
}
|
|
106
123
|
|
|
107
124
|
@utility relative-edge-topfull {
|
|
125
|
+
position: absolute;
|
|
108
126
|
inset-block-start: 0;
|
|
109
127
|
inset-inline: 0;
|
|
110
128
|
}
|
|
111
129
|
|
|
112
130
|
/* Bottom */
|
|
113
131
|
@utility relative-edge-bottom {
|
|
132
|
+
position: absolute;
|
|
114
133
|
inset-block-end: 0;
|
|
115
134
|
inset-inline: 0;
|
|
116
135
|
width: fit-content;
|
|
@@ -118,22 +137,26 @@
|
|
|
118
137
|
}
|
|
119
138
|
|
|
120
139
|
@utility relative-edge-bottomfull {
|
|
140
|
+
position: absolute;
|
|
121
141
|
inset-block-end: 0;
|
|
122
142
|
inset-inline: 0;
|
|
123
143
|
}
|
|
124
144
|
|
|
125
145
|
@utility relative-edge-bottomleft {
|
|
146
|
+
position: absolute;
|
|
126
147
|
inset-block-end: 0;
|
|
127
148
|
inset-inline-start: 0;
|
|
128
149
|
}
|
|
129
150
|
|
|
130
151
|
@utility relative-edge-bottomright {
|
|
152
|
+
position: absolute;
|
|
131
153
|
inset-block-end: 0;
|
|
132
154
|
inset-inline-end: 0;
|
|
133
155
|
}
|
|
134
156
|
|
|
135
157
|
/* Left */
|
|
136
158
|
@utility relative-edge-left {
|
|
159
|
+
position: absolute;
|
|
137
160
|
inset-block: 0;
|
|
138
161
|
inset-inline-start: 0;
|
|
139
162
|
height: fit-content;
|
|
@@ -141,22 +164,26 @@
|
|
|
141
164
|
}
|
|
142
165
|
|
|
143
166
|
@utility relative-edge-lefttop {
|
|
167
|
+
position: absolute;
|
|
144
168
|
inset-block-start: 0;
|
|
145
169
|
inset-inline-start: 0;
|
|
146
170
|
}
|
|
147
171
|
|
|
148
172
|
@utility relative-edge-leftbottom {
|
|
173
|
+
position: absolute;
|
|
149
174
|
inset-block-end: 0;
|
|
150
175
|
inset-inline-start: 0;
|
|
151
176
|
}
|
|
152
177
|
|
|
153
178
|
@utility relative-edge-leftfull {
|
|
179
|
+
position: absolute;
|
|
154
180
|
inset-block: 0;
|
|
155
181
|
inset-inline-start: 0;
|
|
156
182
|
}
|
|
157
183
|
|
|
158
184
|
/* Right */
|
|
159
185
|
@utility relative-edge-right {
|
|
186
|
+
position: absolute;
|
|
160
187
|
inset-block: 0;
|
|
161
188
|
inset-inline-end: 0;
|
|
162
189
|
height: fit-content;
|
|
@@ -164,16 +191,19 @@
|
|
|
164
191
|
}
|
|
165
192
|
|
|
166
193
|
@utility relative-edge-righttop {
|
|
194
|
+
position: absolute;
|
|
167
195
|
inset-block-start: 0;
|
|
168
196
|
inset-inline-end: 0;
|
|
169
197
|
}
|
|
170
198
|
|
|
171
199
|
@utility relative-edge-rightbottom {
|
|
200
|
+
position: absolute;
|
|
172
201
|
inset-block-end: 0;
|
|
173
202
|
inset-inline-end: 0;
|
|
174
203
|
}
|
|
175
204
|
|
|
176
205
|
@utility relative-edge-rightfull {
|
|
206
|
+
position: absolute;
|
|
177
207
|
inset-block: 0;
|
|
178
208
|
inset-inline-end: 0;
|
|
179
209
|
}
|
|
@@ -185,7 +215,9 @@
|
|
|
185
215
|
/* Top *
|
|
186
216
|
*********************/
|
|
187
217
|
@utility edge-adjust-top {
|
|
218
|
+
--tx: 0%;
|
|
188
219
|
--ty: -50%;
|
|
220
|
+
--_tx: var(--tx);
|
|
189
221
|
--_ty: var(--ty);
|
|
190
222
|
}
|
|
191
223
|
|
|
@@ -228,7 +260,9 @@
|
|
|
228
260
|
/* Bottom *
|
|
229
261
|
*********************/
|
|
230
262
|
@utility edge-adjust-bottom {
|
|
263
|
+
--tx: 0%;
|
|
231
264
|
--ty: -50%;
|
|
265
|
+
--_tx: var(--tx);
|
|
232
266
|
--_ty: calc(var(--ty) * -1);
|
|
233
267
|
}
|
|
234
268
|
|
|
@@ -272,7 +306,9 @@
|
|
|
272
306
|
*********************/
|
|
273
307
|
@utility edge-adjust-left {
|
|
274
308
|
--tx: -50%;
|
|
309
|
+
--ty: 0%;
|
|
275
310
|
--_tx: var(--tx);
|
|
311
|
+
--_ty: var(--ty);
|
|
276
312
|
}
|
|
277
313
|
|
|
278
314
|
@utility edge-adjust-lefttop-start {
|
|
@@ -315,7 +351,9 @@
|
|
|
315
351
|
*********************/
|
|
316
352
|
@utility edge-adjust-right {
|
|
317
353
|
--tx: -50%;
|
|
354
|
+
--ty: 0%;
|
|
318
355
|
--_tx: calc(var(--tx) * -1);
|
|
356
|
+
--_ty: calc(var(--ty) * -1);
|
|
319
357
|
}
|
|
320
358
|
|
|
321
359
|
@utility edge-adjust-righttop-start {
|
|
@@ -362,11 +400,11 @@
|
|
|
362
400
|
@apply edge-scaffold;
|
|
363
401
|
@apply edge-adjust-top;
|
|
364
402
|
|
|
365
|
-
:where(.stack)
|
|
403
|
+
:where(.stack) & {
|
|
366
404
|
@apply stack-edge-top;
|
|
367
405
|
}
|
|
368
406
|
|
|
369
|
-
:where(.relative)
|
|
407
|
+
:where(.relative) & {
|
|
370
408
|
@apply relative-edge-top;
|
|
371
409
|
}
|
|
372
410
|
}
|
|
@@ -376,11 +414,11 @@
|
|
|
376
414
|
@apply edge-scaffold;
|
|
377
415
|
@apply edge-adjust-topleft;
|
|
378
416
|
|
|
379
|
-
:where(.stack)
|
|
417
|
+
:where(.stack) & {
|
|
380
418
|
@apply stack-edge-topleft;
|
|
381
419
|
}
|
|
382
420
|
|
|
383
|
-
:where(.relative)
|
|
421
|
+
:where(.relative) & {
|
|
384
422
|
@apply relative-edge-topleft;
|
|
385
423
|
}
|
|
386
424
|
}
|
|
@@ -390,11 +428,11 @@
|
|
|
390
428
|
@apply edge-scaffold;
|
|
391
429
|
@apply edge-adjust-topright;
|
|
392
430
|
|
|
393
|
-
:where(.stack)
|
|
431
|
+
:where(.stack) & {
|
|
394
432
|
@apply stack-edge-topright;
|
|
395
433
|
}
|
|
396
434
|
|
|
397
|
-
:where(.relative)
|
|
435
|
+
:where(.relative) & {
|
|
398
436
|
@apply relative-edge-topright;
|
|
399
437
|
}
|
|
400
438
|
}
|
|
@@ -404,11 +442,11 @@
|
|
|
404
442
|
@apply edge-scaffold;
|
|
405
443
|
@apply edge-adjust-top;
|
|
406
444
|
|
|
407
|
-
:where(.stack)
|
|
445
|
+
:where(.stack) & {
|
|
408
446
|
@apply stack-edge-topfull;
|
|
409
447
|
}
|
|
410
448
|
|
|
411
|
-
:where(.relative)
|
|
449
|
+
:where(.relative) & {
|
|
412
450
|
@apply relative-edge-topfull;
|
|
413
451
|
}
|
|
414
452
|
}
|
|
@@ -419,11 +457,11 @@
|
|
|
419
457
|
@apply edge-scaffold;
|
|
420
458
|
@apply edge-adjust-bottom;
|
|
421
459
|
|
|
422
|
-
:where(.stack)
|
|
460
|
+
:where(.stack) & {
|
|
423
461
|
@apply stack-edge-bottom;
|
|
424
462
|
}
|
|
425
463
|
|
|
426
|
-
:where(.relative)
|
|
464
|
+
:where(.relative) & {
|
|
427
465
|
@apply relative-edge-bottom;
|
|
428
466
|
}
|
|
429
467
|
}
|
|
@@ -433,11 +471,11 @@
|
|
|
433
471
|
@apply edge-scaffold;
|
|
434
472
|
@apply edge-adjust-bottomleft;
|
|
435
473
|
|
|
436
|
-
:where(.stack)
|
|
474
|
+
:where(.stack) & {
|
|
437
475
|
@apply stack-edge-bottomleft;
|
|
438
476
|
}
|
|
439
477
|
|
|
440
|
-
:where(.relative)
|
|
478
|
+
:where(.relative) & {
|
|
441
479
|
@apply relative-edge-bottomleft;
|
|
442
480
|
}
|
|
443
481
|
}
|
|
@@ -447,11 +485,11 @@
|
|
|
447
485
|
@apply edge-scaffold;
|
|
448
486
|
@apply edge-adjust-bottomright;
|
|
449
487
|
|
|
450
|
-
:where(.stack)
|
|
488
|
+
:where(.stack) & {
|
|
451
489
|
@apply stack-edge-bottomright;
|
|
452
490
|
}
|
|
453
491
|
|
|
454
|
-
:where(.relative)
|
|
492
|
+
:where(.relative) & {
|
|
455
493
|
@apply relative-edge-bottomright;
|
|
456
494
|
}
|
|
457
495
|
}
|
|
@@ -461,11 +499,11 @@
|
|
|
461
499
|
@apply edge-scaffold;
|
|
462
500
|
@apply edge-adjust-bottom;
|
|
463
501
|
|
|
464
|
-
:where(.stack)
|
|
502
|
+
:where(.stack) & {
|
|
465
503
|
@apply stack-edge-bottomfull;
|
|
466
504
|
}
|
|
467
505
|
|
|
468
|
-
:where(.relative)
|
|
506
|
+
:where(.relative) & {
|
|
469
507
|
@apply relative-edge-bottomfull;
|
|
470
508
|
}
|
|
471
509
|
}
|
|
@@ -476,11 +514,11 @@
|
|
|
476
514
|
@apply edge-scaffold;
|
|
477
515
|
@apply edge-adjust-left;
|
|
478
516
|
|
|
479
|
-
:where(.stack)
|
|
517
|
+
:where(.stack) & {
|
|
480
518
|
@apply stack-edge-left;
|
|
481
519
|
}
|
|
482
520
|
|
|
483
|
-
:where(.relative)
|
|
521
|
+
:where(.relative) & {
|
|
484
522
|
@apply relative-edge-left;
|
|
485
523
|
}
|
|
486
524
|
}
|
|
@@ -490,11 +528,11 @@
|
|
|
490
528
|
@apply edge-scaffold;
|
|
491
529
|
@apply edge-adjust-lefttop;
|
|
492
530
|
|
|
493
|
-
:where(.stack)
|
|
531
|
+
:where(.stack) & {
|
|
494
532
|
@apply stack-edge-lefttop;
|
|
495
533
|
}
|
|
496
534
|
|
|
497
|
-
:where(.relative)
|
|
535
|
+
:where(.relative) & {
|
|
498
536
|
@apply relative-edge-lefttop;
|
|
499
537
|
}
|
|
500
538
|
}
|
|
@@ -504,11 +542,11 @@
|
|
|
504
542
|
@apply edge-scaffold;
|
|
505
543
|
@apply edge-adjust-leftbottom;
|
|
506
544
|
|
|
507
|
-
:where(.stack)
|
|
545
|
+
:where(.stack) & {
|
|
508
546
|
@apply stack-edge-leftbottom;
|
|
509
547
|
}
|
|
510
548
|
|
|
511
|
-
:where(.relative)
|
|
549
|
+
:where(.relative) & {
|
|
512
550
|
@apply relative-edge-leftbottom;
|
|
513
551
|
}
|
|
514
552
|
}
|
|
@@ -518,11 +556,11 @@
|
|
|
518
556
|
@apply edge-scaffold;
|
|
519
557
|
@apply edge-adjust-left;
|
|
520
558
|
|
|
521
|
-
:where(.stack)
|
|
559
|
+
:where(.stack) & {
|
|
522
560
|
@apply stack-edge-leftfull;
|
|
523
561
|
}
|
|
524
562
|
|
|
525
|
-
:where(.relative)
|
|
563
|
+
:where(.relative) & {
|
|
526
564
|
@apply relative-edge-leftfull;
|
|
527
565
|
}
|
|
528
566
|
}
|
|
@@ -533,11 +571,11 @@
|
|
|
533
571
|
@apply edge-scaffold;
|
|
534
572
|
@apply edge-adjust-right;
|
|
535
573
|
|
|
536
|
-
:where(.stack)
|
|
574
|
+
:where(.stack) & {
|
|
537
575
|
@apply stack-edge-right;
|
|
538
576
|
}
|
|
539
577
|
|
|
540
|
-
:where(.relative)
|
|
578
|
+
:where(.relative) & {
|
|
541
579
|
@apply relative-edge-right;
|
|
542
580
|
}
|
|
543
581
|
}
|
|
@@ -547,11 +585,11 @@
|
|
|
547
585
|
@apply edge-scaffold;
|
|
548
586
|
@apply edge-adjust-righttop;
|
|
549
587
|
|
|
550
|
-
:where(.stack)
|
|
588
|
+
:where(.stack) & {
|
|
551
589
|
@apply stack-edge-righttop;
|
|
552
590
|
}
|
|
553
591
|
|
|
554
|
-
:where(.relative)
|
|
592
|
+
:where(.relative) & {
|
|
555
593
|
@apply relative-edge-righttop;
|
|
556
594
|
}
|
|
557
595
|
}
|
|
@@ -561,11 +599,11 @@
|
|
|
561
599
|
@apply edge-scaffold;
|
|
562
600
|
@apply edge-adjust-rightbottom;
|
|
563
601
|
|
|
564
|
-
:where(.stack)
|
|
602
|
+
:where(.stack) & {
|
|
565
603
|
@apply stack-edge-rightbottom;
|
|
566
604
|
}
|
|
567
605
|
|
|
568
|
-
:where(.relative)
|
|
606
|
+
:where(.relative) & {
|
|
569
607
|
@apply relative-edge-rightbottom;
|
|
570
608
|
}
|
|
571
609
|
}
|
|
@@ -575,11 +613,11 @@
|
|
|
575
613
|
@apply edge-scaffold;
|
|
576
614
|
@apply edge-adjust-right;
|
|
577
615
|
|
|
578
|
-
:where(.stack)
|
|
616
|
+
:where(.stack) & {
|
|
579
617
|
@apply stack-edge-rightfull;
|
|
580
618
|
}
|
|
581
619
|
|
|
582
|
-
:where(.relative)
|
|
620
|
+
:where(.relative) & {
|
|
583
621
|
@apply relative-edge-rightfull;
|
|
584
622
|
}
|
|
585
623
|
}
|