@solid-design-system/styles 6.0.0-next.12 → 6.0.0-next.13
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/CHANGELOG.md +44 -0
- package/cdn/modules/chip.css +1 -1
- package/cdn/modules/flag.css +1 -1
- package/cdn/modules/footnotes.css +1 -1
- package/cdn/modules/interactive.css +1 -1
- package/cdn/modules/pagination.css +1 -1
- package/cdn/modules/prose.css +1 -1
- package/cdn/solid-styles.css +1 -1
- package/cdn-versioned/modules/chip.css +1 -1
- package/cdn-versioned/modules/container.css +1 -1
- package/cdn-versioned/modules/copyright.css +1 -1
- package/cdn-versioned/modules/display.css +1 -1
- package/cdn-versioned/modules/flag.css +1 -1
- package/cdn-versioned/modules/footnotes.css +1 -1
- package/cdn-versioned/modules/headline.css +1 -1
- package/cdn-versioned/modules/hidden-links.css +1 -1
- package/cdn-versioned/modules/interactive.css +1 -1
- package/cdn-versioned/modules/leadtext.css +1 -1
- package/cdn-versioned/modules/list.css +1 -1
- package/cdn-versioned/modules/mark.css +1 -1
- package/cdn-versioned/modules/media.css +1 -1
- package/cdn-versioned/modules/meta.css +1 -1
- package/cdn-versioned/modules/pagination.css +1 -1
- package/cdn-versioned/modules/paragraph.css +1 -1
- package/cdn-versioned/modules/prose.css +1 -1
- package/cdn-versioned/modules/status-badge.css +1 -1
- package/cdn-versioned/modules/table-cell.css +1 -1
- package/cdn-versioned/modules/table.css +1 -1
- package/cdn-versioned/solid-styles.css +1 -1
- package/dist/modules/chip.css +26 -6
- package/dist/modules/flag.css +24 -3
- package/dist/modules/footnotes.css +3 -3
- package/dist/modules/interactive.css +3 -3
- package/dist/modules/pagination.css +1 -1
- package/dist/modules/prose.css +3 -3
- package/dist/solid-styles.css +37 -22
- package/dist-versioned/modules/chip.css +30 -10
- package/dist-versioned/modules/container.css +27 -27
- package/dist-versioned/modules/copyright.css +6 -6
- package/dist-versioned/modules/display.css +6 -6
- package/dist-versioned/modules/flag.css +28 -7
- package/dist-versioned/modules/footnotes.css +31 -31
- package/dist-versioned/modules/headline.css +28 -28
- package/dist-versioned/modules/hidden-links.css +4 -4
- package/dist-versioned/modules/interactive.css +19 -19
- package/dist-versioned/modules/leadtext.css +3 -3
- package/dist-versioned/modules/list.css +30 -30
- package/dist-versioned/modules/mark.css +1 -1
- package/dist-versioned/modules/media.css +4 -4
- package/dist-versioned/modules/meta.css +7 -7
- package/dist-versioned/modules/pagination.css +61 -61
- package/dist-versioned/modules/paragraph.css +3 -3
- package/dist-versioned/modules/prose.css +126 -126
- package/dist-versioned/modules/status-badge.css +6 -6
- package/dist-versioned/modules/table-cell.css +16 -16
- package/dist-versioned/modules/table.css +2 -2
- package/dist-versioned/solid-styles.css +307 -292
- package/package.json +1 -1
|
@@ -1,59 +1,66 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
|
-
.sd-6-0-0-next-
|
|
4
|
+
.sd-6-0-0-next-13-chip {
|
|
5
5
|
display: inline-flex;
|
|
6
6
|
height: var(--sd-spacing-6);
|
|
7
7
|
align-items: center;
|
|
8
8
|
overflow: hidden;
|
|
9
|
-
border-radius: var(--sd-radius);
|
|
10
|
-
|
|
9
|
+
border-radius: var(--sd-chip-border-radius, var(--sd-spacing-1));
|
|
10
|
+
border-style: var(--tw-border-style);
|
|
11
|
+
border-width: 1px;
|
|
12
|
+
border-width: var(--sd-chip-border-width, 0);
|
|
13
|
+
border-color: rgba(var(--sd-chip--primary-200-color-border, rgba(255, 255, 255, 0)));
|
|
14
|
+
background-color: rgba(var(--sd-chip--primary-200-color-background, rgba(var(--sd-color-primary-200))));
|
|
11
15
|
padding-inline: var(--sd-spacing-2);
|
|
12
16
|
font-size: var(--sd-text-sm);
|
|
13
17
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
14
18
|
white-space: nowrap;
|
|
15
19
|
color: rgba(var(--sd-color-text-black));
|
|
16
20
|
}
|
|
17
|
-
.sd-6-0-0-next-
|
|
18
|
-
|
|
19
|
-
color: rgba(var(--sd-color-
|
|
21
|
+
.sd-6-0-0-next-13-chip--primary-500 {
|
|
22
|
+
border-color: rgba(var(--sd-chip--primary-500-color-border, rgba(255, 255, 255, 0)));
|
|
23
|
+
background-color: rgba(var(--sd-chip--primary-500-color-background, rgba(var(--sd-color-primary-500))));
|
|
24
|
+
color: rgba(var(--sd-chip--primary-500-color-text, rgba(var(--sd-color-white))));
|
|
20
25
|
}
|
|
21
|
-
.sd-6-0-0-next-
|
|
22
|
-
|
|
26
|
+
.sd-6-0-0-next-13-chip--primary-300 {
|
|
27
|
+
border-color: rgba(var(--sd-chip--primary-300-color-border, rgba(255, 255, 255, 0)));
|
|
28
|
+
background-color: rgba(var(--sd-chip--primary-300-color-background, rgba(var(--sd-color-primary-300))));
|
|
23
29
|
}
|
|
24
|
-
.sd-6-0-0-next-
|
|
25
|
-
|
|
30
|
+
.sd-6-0-0-next-13-chip--white {
|
|
31
|
+
border-color: rgba(var(--sd-chip--white-color-border, rgba(255, 255, 255, 0)));
|
|
32
|
+
background-color: rgba(var(--sd-chip--white-color-background, rgba(var(--sd-color-white))));
|
|
26
33
|
}
|
|
27
|
-
.sd-6-0-0-next-
|
|
34
|
+
.sd-6-0-0-next-13-container {
|
|
28
35
|
position: relative;
|
|
29
36
|
background-color: rgba(var(--sd-color-background-neutral-100));
|
|
30
37
|
padding-inline: var(--sd-spacing-10);
|
|
31
38
|
padding-block: var(--sd-spacing-8);
|
|
32
39
|
}
|
|
33
|
-
.sd-6-0-0-next-
|
|
40
|
+
.sd-6-0-0-next-13-container--variant-primary-100 {
|
|
34
41
|
background-color: rgba(var(--sd-color-background-primary-100));
|
|
35
42
|
}
|
|
36
|
-
.sd-6-0-0-next-
|
|
43
|
+
.sd-6-0-0-next-13-container--variant-primary {
|
|
37
44
|
background-color: rgba(var(--sd-color-background-primary));
|
|
38
45
|
}
|
|
39
|
-
.sd-6-0-0-next-
|
|
46
|
+
.sd-6-0-0-next-13-container--variant-border-neutral-400 {
|
|
40
47
|
--tw-border-style: solid;
|
|
41
48
|
border-style: solid;
|
|
42
49
|
border-color: rgba(var(--sd-color-border-neutral-400));
|
|
43
50
|
background-color: rgba(var(--sd-color-background-white));
|
|
44
51
|
border-width: 1px;
|
|
45
52
|
}
|
|
46
|
-
.sd-6-0-0-next-
|
|
53
|
+
.sd-6-0-0-next-13-container--variant-white {
|
|
47
54
|
background-color: rgba(var(--sd-color-background-white));
|
|
48
55
|
}
|
|
49
|
-
.sd-6-0-0-next-
|
|
56
|
+
.sd-6-0-0-next-13-container--padding-sm {
|
|
50
57
|
padding-inline: var(--sd-spacing-6);
|
|
51
58
|
padding-block: var(--sd-spacing-4);
|
|
52
59
|
}
|
|
53
|
-
.sd-6-0-0-next-
|
|
60
|
+
.sd-6-0-0-next-13-container{
|
|
54
61
|
--triangle-background: rgba(var(--sd-color-white));
|
|
55
62
|
}
|
|
56
|
-
.sd-6-0-0-next-
|
|
63
|
+
.sd-6-0-0-next-13-container--triangle-top::before, .sd-6-0-0-next-13-container--triangle-right::before, .sd-6-0-0-next-13-container--triangle-bottom::before, .sd-6-0-0-next-13-container--triangle-left::before {
|
|
57
64
|
position: absolute;
|
|
58
65
|
display: block;
|
|
59
66
|
--tw-border-style: solid;
|
|
@@ -62,27 +69,27 @@
|
|
|
62
69
|
border-width: 14px;
|
|
63
70
|
content: '';
|
|
64
71
|
}
|
|
65
|
-
.sd-6-0-0-next-
|
|
72
|
+
.sd-6-0-0-next-13-container--triangle-top::before {
|
|
66
73
|
top: calc(var(--sd-spacing-1) * 0);
|
|
67
74
|
left: calc(50% - 14px);
|
|
68
75
|
border-top-color: var(--triangle-background);
|
|
69
76
|
}
|
|
70
|
-
.sd-6-0-0-next-
|
|
77
|
+
.sd-6-0-0-next-13-container--triangle-right::before {
|
|
71
78
|
right: calc(var(--sd-spacing-1) * 0);
|
|
72
79
|
top: calc(50% - 14px);
|
|
73
80
|
border-right-color: var(--triangle-background);
|
|
74
81
|
}
|
|
75
|
-
.sd-6-0-0-next-
|
|
82
|
+
.sd-6-0-0-next-13-container--triangle-bottom::before {
|
|
76
83
|
bottom: calc(var(--sd-spacing-1) * 0);
|
|
77
84
|
left: calc(50% - 14px);
|
|
78
85
|
border-bottom-color: var(--triangle-background);
|
|
79
86
|
}
|
|
80
|
-
.sd-6-0-0-next-
|
|
87
|
+
.sd-6-0-0-next-13-container--triangle-left::before {
|
|
81
88
|
left: calc(var(--sd-spacing-1) * 0);
|
|
82
89
|
top: calc(50% - 14px);
|
|
83
90
|
border-left-color: var(--triangle-background);
|
|
84
91
|
}
|
|
85
|
-
.sd-6-0-0-next-
|
|
92
|
+
.sd-6-0-0-next-13-container--triangle-top-border::after, .sd-6-0-0-next-13-container--triangle-top-border::before, .sd-6-0-0-next-13-container--triangle-right-border::after, .sd-6-0-0-next-13-container--triangle-right-border::before, .sd-6-0-0-next-13-container--triangle-bottom-border::after, .sd-6-0-0-next-13-container--triangle-bottom-border::before, .sd-6-0-0-next-13-container--triangle-left-border::after, .sd-6-0-0-next-13-container--triangle-left-border::before {
|
|
86
93
|
position: absolute;
|
|
87
94
|
display: block;
|
|
88
95
|
--tw-border-style: solid;
|
|
@@ -90,57 +97,57 @@
|
|
|
90
97
|
border-color: transparent;
|
|
91
98
|
content: '';
|
|
92
99
|
}
|
|
93
|
-
.sd-6-0-0-next-
|
|
100
|
+
.sd-6-0-0-next-13-container--triangle-top-border::after, .sd-6-0-0-next-13-container--triangle-right-border::after, .sd-6-0-0-next-13-container--triangle-bottom-border::after, .sd-6-0-0-next-13-container--triangle-left-border::after {
|
|
94
101
|
border-width: 14px;
|
|
95
102
|
}
|
|
96
|
-
.sd-6-0-0-next-
|
|
103
|
+
.sd-6-0-0-next-13-container--triangle-top-border::before, .sd-6-0-0-next-13-container--triangle-right-border::before, .sd-6-0-0-next-13-container--triangle-bottom-border::before, .sd-6-0-0-next-13-container--triangle-left-border::before {
|
|
97
104
|
border-width: 15px;
|
|
98
105
|
}
|
|
99
|
-
.sd-6-0-0-next-
|
|
106
|
+
.sd-6-0-0-next-13-container--triangle-top-border::after, .sd-6-0-0-next-13-container--triangle-top-border::before {
|
|
100
107
|
top: -1px;
|
|
101
108
|
}
|
|
102
|
-
.sd-6-0-0-next-
|
|
109
|
+
.sd-6-0-0-next-13-container--triangle-top-border::before {
|
|
103
110
|
border-top-color: rgba(var(--sd-color-border-neutral-400));
|
|
104
111
|
left: calc(50% - 15px);
|
|
105
112
|
}
|
|
106
|
-
.sd-6-0-0-next-
|
|
113
|
+
.sd-6-0-0-next-13-container--triangle-top-border::after {
|
|
107
114
|
left: calc(50% - 14px);
|
|
108
115
|
border-top-color: var(--triangle-background);
|
|
109
116
|
}
|
|
110
|
-
.sd-6-0-0-next-
|
|
117
|
+
.sd-6-0-0-next-13-container--triangle-right-border::after, .sd-6-0-0-next-13-container--triangle-right-border::before {
|
|
111
118
|
right: -1px;
|
|
112
119
|
}
|
|
113
|
-
.sd-6-0-0-next-
|
|
120
|
+
.sd-6-0-0-next-13-container--triangle-right-border::before {
|
|
114
121
|
border-right-color: rgba(var(--sd-color-border-neutral-400));
|
|
115
122
|
top: calc(50% - 15px);
|
|
116
123
|
}
|
|
117
|
-
.sd-6-0-0-next-
|
|
124
|
+
.sd-6-0-0-next-13-container--triangle-right-border::after {
|
|
118
125
|
top: calc(50% - 14px);
|
|
119
126
|
border-right-color: var(--triangle-background);
|
|
120
127
|
}
|
|
121
|
-
.sd-6-0-0-next-
|
|
128
|
+
.sd-6-0-0-next-13-container--triangle-bottom-border::after, .sd-6-0-0-next-13-container--triangle-bottom-border::before {
|
|
122
129
|
bottom: -1px;
|
|
123
130
|
}
|
|
124
|
-
.sd-6-0-0-next-
|
|
131
|
+
.sd-6-0-0-next-13-container--triangle-bottom-border::before {
|
|
125
132
|
border-bottom-color: rgba(var(--sd-color-border-neutral-400));
|
|
126
133
|
left: calc(50% - 15px);
|
|
127
134
|
}
|
|
128
|
-
.sd-6-0-0-next-
|
|
135
|
+
.sd-6-0-0-next-13-container--triangle-bottom-border::after {
|
|
129
136
|
left: calc(50% - 14px);
|
|
130
137
|
border-bottom-color: var(--triangle-background);
|
|
131
138
|
}
|
|
132
|
-
.sd-6-0-0-next-
|
|
139
|
+
.sd-6-0-0-next-13-container--triangle-left-border::after, .sd-6-0-0-next-13-container--triangle-left-border::before {
|
|
133
140
|
left: -1px;
|
|
134
141
|
}
|
|
135
|
-
.sd-6-0-0-next-
|
|
142
|
+
.sd-6-0-0-next-13-container--triangle-left-border::before {
|
|
136
143
|
border-left-color: rgba(var(--sd-color-border-neutral-400));
|
|
137
144
|
top: calc(50% - 15px);
|
|
138
145
|
}
|
|
139
|
-
.sd-6-0-0-next-
|
|
146
|
+
.sd-6-0-0-next-13-container--triangle-left-border::after {
|
|
140
147
|
top: calc(50% - 14px);
|
|
141
148
|
border-left-color: var(--triangle-background);
|
|
142
149
|
}
|
|
143
|
-
.sd-6-0-0-next-
|
|
150
|
+
.sd-6-0-0-next-13-copyright {
|
|
144
151
|
position: relative;
|
|
145
152
|
--tw-blur: ;
|
|
146
153
|
--tw-brightness: ;
|
|
@@ -151,7 +158,7 @@
|
|
|
151
158
|
--tw-saturate: ;
|
|
152
159
|
--tw-sepia: ;
|
|
153
160
|
}
|
|
154
|
-
.sd-6-0-0-next-
|
|
161
|
+
.sd-6-0-0-next-13-copyright::after {
|
|
155
162
|
position: absolute;
|
|
156
163
|
bottom: calc(var(--sd-spacing-1) * 0);
|
|
157
164
|
left: calc(var(--sd-spacing-1) * 0);
|
|
@@ -167,7 +174,7 @@
|
|
|
167
174
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
168
175
|
content: var(--copyright);
|
|
169
176
|
}
|
|
170
|
-
.sd-6-0-0-next-
|
|
177
|
+
.sd-6-0-0-next-13-copyright--orientation-vertical::after {
|
|
171
178
|
width: -moz-max-content;
|
|
172
179
|
width: max-content;
|
|
173
180
|
padding-top: var(--sd-spacing-2);
|
|
@@ -178,14 +185,14 @@
|
|
|
178
185
|
text-orientation: sideways-right;
|
|
179
186
|
transform: rotate(180deg);
|
|
180
187
|
}
|
|
181
|
-
.sd-6-0-0-next-
|
|
188
|
+
.sd-6-0-0-next-13-copyright--color-black::after {
|
|
182
189
|
color: rgba(var(--sd-color-text-black));
|
|
183
190
|
filter: drop-shadow(0 0 transparent);
|
|
184
191
|
}
|
|
185
|
-
.sd-6-0-0-next-
|
|
192
|
+
.sd-6-0-0-next-13-copyright--no-shadow::after {
|
|
186
193
|
filter: drop-shadow(0 0 transparent);
|
|
187
194
|
}
|
|
188
|
-
.sd-6-0-0-next-
|
|
195
|
+
.sd-6-0-0-next-13-copyright--placement-top::after {
|
|
189
196
|
position: absolute;
|
|
190
197
|
top: calc(var(--sd-spacing-1) * 0);
|
|
191
198
|
right: calc(var(--sd-spacing-1) * 0);
|
|
@@ -195,29 +202,37 @@
|
|
|
195
202
|
padding-top: var(--sd-spacing-2);
|
|
196
203
|
padding-right: var(--sd-spacing-4);
|
|
197
204
|
}
|
|
198
|
-
.sd-6-0-0-next-
|
|
205
|
+
.sd-6-0-0-next-13-flag {
|
|
199
206
|
display: inline-flex;
|
|
200
207
|
height: var(--sd-spacing-8);
|
|
201
208
|
align-items: center;
|
|
202
209
|
overflow: hidden;
|
|
203
|
-
|
|
210
|
+
border-radius: var(--sd-flag-border-radius, 0);
|
|
211
|
+
border-style: var(--tw-border-style);
|
|
212
|
+
border-width: 1px;
|
|
213
|
+
border-width: var(--sd-flag-border-width, 0);
|
|
214
|
+
border-color: rgba(var(--sd-flag--neutral-200-color-border, rgba(255, 255, 255, 0)));
|
|
215
|
+
background-color: rgba(var(--sd-flag--neutral-200-color-background, rgba(var(--sd-color-neutral-200))));
|
|
204
216
|
padding-inline: var(--sd-spacing-3);
|
|
205
217
|
font-size: var(--sd-text-sm);
|
|
206
218
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
207
219
|
white-space: nowrap;
|
|
208
220
|
color: rgba(var(--sd-color-text-black));
|
|
209
221
|
}
|
|
210
|
-
.sd-6-0-0-next-
|
|
222
|
+
.sd-6-0-0-next-13-flag--neutral-500 {
|
|
223
|
+
border-color: rgba(var(--sd-flag--neutral-500-color-border, rgba(255, 255, 255, 0)));
|
|
211
224
|
background-color: rgba(var(--sd-flag--neutral-500-color-background, rgba(var(--sd-color-neutral-500))));
|
|
212
225
|
color: rgba(var(--sd-color-text-black));
|
|
213
226
|
}
|
|
214
|
-
.sd-6-0-0-next-
|
|
215
|
-
|
|
227
|
+
.sd-6-0-0-next-13-flag--neutral-300 {
|
|
228
|
+
border-color: rgba(var(--sd-flag--neutral-300-color-border, rgba(255, 255, 255, 0)));
|
|
229
|
+
background-color: rgba(var(--sd-flag--neutral-300-color-background, rgba(var(--sd-color-neutral-300))));
|
|
216
230
|
}
|
|
217
|
-
.sd-6-0-0-next-
|
|
218
|
-
|
|
231
|
+
.sd-6-0-0-next-13-flag--white {
|
|
232
|
+
border-color: rgba(var(--sd-flag--white-color-border, rgba(255, 255, 255, 0)));
|
|
233
|
+
background-color: rgba(var(--sd-flag--white-color-background, rgba(var(--sd-color-white))));
|
|
219
234
|
}
|
|
220
|
-
.sd-6-0-0-next-
|
|
235
|
+
.sd-6-0-0-next-13-footnotes {
|
|
221
236
|
margin-block: calc(var(--sd-spacing-1) * 0);
|
|
222
237
|
padding: calc(var(--sd-spacing-1) * 0);
|
|
223
238
|
text-align: left;
|
|
@@ -225,18 +240,18 @@
|
|
|
225
240
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
226
241
|
color: rgba(var(--sd-color-text-neutral-700));
|
|
227
242
|
}
|
|
228
|
-
.sd-6-0-0-next-
|
|
243
|
+
.sd-6-0-0-next-13-footnotes :target {
|
|
229
244
|
background-color: rgba(var(--sd-color-background-neutral-200));
|
|
230
245
|
}
|
|
231
|
-
.sd-6-0-0-next-
|
|
246
|
+
.sd-6-0-0-next-13-footnotes:is(ol) {
|
|
232
247
|
padding-inline-start: var(--sd-spacing-8);
|
|
233
248
|
}
|
|
234
|
-
.sd-6-0-0-next-
|
|
249
|
+
.sd-6-0-0-next-13-footnotes:is(ol) li {
|
|
235
250
|
counter-increment: list-item;
|
|
236
251
|
position: relative;
|
|
237
252
|
list-style-type: none;
|
|
238
253
|
}
|
|
239
|
-
.sd-6-0-0-next-
|
|
254
|
+
.sd-6-0-0-next-13-footnotes:is(ol) li .sd-6-0-0-next-13-footnotes--marker::before, .sd-6-0-0-next-13-footnotes:is(ol) li:has(.sd-6-0-0-next-13-footnotes--marker:nth-of-type(2))::before, .sd-6-0-0-next-13-footnotes:is(ol) li:not(:has(.sd-6-0-0-next-13-footnotes--marker))::before {
|
|
240
255
|
position: absolute;
|
|
241
256
|
left: calc(var(--sd-spacing-8) * -1);
|
|
242
257
|
flex-shrink: 0;
|
|
@@ -248,14 +263,14 @@
|
|
|
248
263
|
padding-top: 1px;
|
|
249
264
|
font-size: 10px;
|
|
250
265
|
}
|
|
251
|
-
.sd-6-0-0-next-
|
|
266
|
+
.sd-6-0-0-next-13-footnotes:is(ol) li .sd-6-0-0-next-13-footnotes--marker::after, .sd-6-0-0-next-13-footnotes:is(ol) li:has(.sd-6-0-0-next-13-footnotes--marker:nth-of-type(2))::after, .sd-6-0-0-next-13-footnotes:is(ol) li:not(:has(.sd-6-0-0-next-13-footnotes--marker))::after {
|
|
252
267
|
content: none;
|
|
253
268
|
}
|
|
254
|
-
.sd-6-0-0-next-
|
|
269
|
+
.sd-6-0-0-next-13-footnotes:is(ol) li .sd-6-0-0-next-13-footnotes--marker .sd-6-0-0-next-13-footnotes--marker, .sd-6-0-0-next-13-footnotes:is(ol) li:has(.sd-6-0-0-next-13-footnotes--marker:nth-of-type(2)) .sd-6-0-0-next-13-footnotes--marker, .sd-6-0-0-next-13-footnotes:is(ol) li:not(:has(.sd-6-0-0-next-13-footnotes--marker)) .sd-6-0-0-next-13-footnotes--marker {
|
|
255
270
|
display: inline-block;
|
|
256
271
|
counter-increment: footnotes-multiple;
|
|
257
272
|
}
|
|
258
|
-
.sd-6-0-0-next-
|
|
273
|
+
.sd-6-0-0-next-13-footnotes:is(ol) li .sd-6-0-0-next-13-footnotes--marker .sd-6-0-0-next-13-footnotes--marker::before, .sd-6-0-0-next-13-footnotes:is(ol) li:has(.sd-6-0-0-next-13-footnotes--marker:nth-of-type(2)) .sd-6-0-0-next-13-footnotes--marker::before, .sd-6-0-0-next-13-footnotes:is(ol) li:not(:has(.sd-6-0-0-next-13-footnotes--marker)) .sd-6-0-0-next-13-footnotes--marker::before {
|
|
259
274
|
position: relative;
|
|
260
275
|
left: calc(var(--sd-spacing-1) * 0);
|
|
261
276
|
vertical-align: super;
|
|
@@ -265,43 +280,43 @@
|
|
|
265
280
|
font-weight: var(--sd-font-weight-bold);
|
|
266
281
|
content: counter(footnotes-multiple, lower-alpha);
|
|
267
282
|
}
|
|
268
|
-
.sd-6-0-0-next-
|
|
283
|
+
.sd-6-0-0-next-13-footnotes:is(ol) li .sd-6-0-0-next-13-footnotes--marker {
|
|
269
284
|
bottom: calc(var(--sd-spacing-1) * 0);
|
|
270
285
|
display: block;
|
|
271
286
|
}
|
|
272
|
-
.sd-6-0-0-next-
|
|
287
|
+
.sd-6-0-0-next-13-footnotes:is(ol) li .sd-6-0-0-next-13-footnotes--marker:focus-visible {
|
|
273
288
|
outline-style: var(--tw-outline-style);
|
|
274
289
|
outline-width: 0px;
|
|
275
290
|
}
|
|
276
|
-
.sd-6-0-0-next-
|
|
291
|
+
.sd-6-0-0-next-13-footnotes:is(ol) li .sd-6-0-0-next-13-footnotes--marker:focus-visible::before {
|
|
277
292
|
border-radius: var(--sd-radius);
|
|
278
293
|
outline-width: 1px;
|
|
279
294
|
outline-style: var(--tw-outline-style);
|
|
280
295
|
outline-width: 2px;
|
|
281
296
|
outline-offset: 2px;
|
|
282
|
-
outline-color: var(--sd-border-
|
|
297
|
+
outline-color: var(--sd-color-border-primary, var(--sd-color-primary));
|
|
283
298
|
}
|
|
284
|
-
.sd-6-0-0-next-
|
|
299
|
+
.sd-6-0-0-next-13-footnotes:is(ul) {
|
|
285
300
|
list-style: '';
|
|
286
301
|
}
|
|
287
|
-
.sd-6-0-0-next-
|
|
302
|
+
.sd-6-0-0-next-13-footnotes--inverted {
|
|
288
303
|
color: rgba(var(--sd-color-text-primary-400));
|
|
289
304
|
}
|
|
290
|
-
.sd-6-0-0-next-
|
|
305
|
+
.sd-6-0-0-next-13-footnotes--inverted :target {
|
|
291
306
|
background-color: rgba(var(--sd-footnotes--target--inverted-color-background, rgba(var(--sd-color-primary-800))));
|
|
292
307
|
}
|
|
293
|
-
.sd-6-0-0-next-
|
|
308
|
+
.sd-6-0-0-next-13-footnotes--inverted .sd-6-0-0-next-13-footnotes--marker::before {
|
|
294
309
|
color: rgba(var(--sd-color-text-white));
|
|
295
310
|
outline-color: var(--color-white, #fff) !important;
|
|
296
311
|
}
|
|
297
|
-
.sd-6-0-0-next-
|
|
312
|
+
.sd-6-0-0-next-13-footnotes--inverted:is(.sd-6-0-0-next-13-footnotes--marker) {
|
|
298
313
|
color: rgba(var(--sd-color-text-white)) !important;
|
|
299
314
|
outline-color: var(--color-white, #fff) !important;
|
|
300
315
|
}
|
|
301
|
-
.sd-6-0-0-next-
|
|
316
|
+
.sd-6-0-0-next-13-footnotes--inverted:is(.sd-6-0-0-next-13-footnotes--marker):target {
|
|
302
317
|
background-color: rgba(var(--sd-footnotes--target--inverted-color-background, rgba(var(--sd-color-primary-800))));
|
|
303
318
|
}
|
|
304
|
-
.sd-6-0-0-next-
|
|
319
|
+
.sd-6-0-0-next-13-footnotes--marker {
|
|
305
320
|
position: relative;
|
|
306
321
|
bottom: var(--sd-spacing-2);
|
|
307
322
|
display: inline-block;
|
|
@@ -311,53 +326,53 @@
|
|
|
311
326
|
text-decoration-line: none !important;
|
|
312
327
|
font-size: x-small;
|
|
313
328
|
}
|
|
314
|
-
.sd-6-0-0-next-
|
|
329
|
+
.sd-6-0-0-next-13-footnotes--marker:target {
|
|
315
330
|
background-color: rgba(var(--sd-color-background-neutral-200));
|
|
316
331
|
}
|
|
317
|
-
.sd-6-0-0-next-
|
|
332
|
+
.sd-6-0-0-next-13-footnotes--marker:not(:has(a))::before {
|
|
318
333
|
content: '[ ';
|
|
319
334
|
display: inline-block;
|
|
320
335
|
}
|
|
321
|
-
.sd-6-0-0-next-
|
|
336
|
+
.sd-6-0-0-next-13-footnotes--marker:not(:has(a))::after {
|
|
322
337
|
content: ' ]';
|
|
323
338
|
display: inline-block;
|
|
324
339
|
}
|
|
325
|
-
.sd-6-0-0-next-
|
|
340
|
+
.sd-6-0-0-next-13-footnotes--marker :is(a) {
|
|
326
341
|
display: inline-block;
|
|
327
342
|
--tw-font-weight: var(--sd-font-weight-bold);
|
|
328
343
|
font-weight: var(--sd-font-weight-bold);
|
|
329
344
|
white-space: nowrap;
|
|
330
345
|
text-decoration-line: none !important;
|
|
331
346
|
}
|
|
332
|
-
.sd-6-0-0-next-
|
|
347
|
+
.sd-6-0-0-next-13-footnotes--marker :is(a)::before {
|
|
333
348
|
content: '[ ';
|
|
334
349
|
display: inline-block;
|
|
335
350
|
}
|
|
336
|
-
.sd-6-0-0-next-
|
|
351
|
+
.sd-6-0-0-next-13-footnotes--marker :is(a)::after {
|
|
337
352
|
content: ' ]';
|
|
338
353
|
display: inline-block;
|
|
339
354
|
}
|
|
340
|
-
.sd-6-0-0-next-
|
|
355
|
+
.sd-6-0-0-next-13-footnotes--marker :is(a):focus-visible {
|
|
341
356
|
border-radius: var(--sd-radius);
|
|
342
357
|
outline-width: 1px;
|
|
343
358
|
outline-style: var(--tw-outline-style);
|
|
344
359
|
outline-width: 2px;
|
|
345
360
|
outline-offset: 2px;
|
|
346
|
-
outline-color: var(--sd-border-
|
|
361
|
+
outline-color: var(--sd-color-border-primary, var(--sd-color-primary));
|
|
347
362
|
}
|
|
348
|
-
.sd-6-0-0-next-
|
|
363
|
+
.sd-6-0-0-next-13-footnotes--marker :is(a):link {
|
|
349
364
|
color: rgba(var(--sd-color-text-primary));
|
|
350
365
|
}
|
|
351
|
-
.sd-6-0-0-next-
|
|
366
|
+
.sd-6-0-0-next-13-footnotes--marker:link, .sd-6-0-0-next-13-footnotes--marker:visited {
|
|
352
367
|
color: rgba(var(--sd-color-text-primary));
|
|
353
368
|
}
|
|
354
|
-
.sd-6-0-0-next-
|
|
369
|
+
.sd-6-0-0-next-13-footnotes--marker:focus-visible {
|
|
355
370
|
border-radius: var(--sd-radius);
|
|
356
371
|
outline-width: 1px;
|
|
357
372
|
outline-style: var(--tw-outline-style);
|
|
358
373
|
outline-width: 2px;
|
|
359
374
|
outline-offset: 2px;
|
|
360
|
-
outline-color: var(--sd-border-
|
|
375
|
+
outline-color: var(--sd-color-border-primary, var(--sd-color-primary));
|
|
361
376
|
}
|
|
362
377
|
:lang(en) {
|
|
363
378
|
--sd-hidden-links-title: 'Jump to';
|
|
@@ -365,7 +380,7 @@
|
|
|
365
380
|
:lang(de) {
|
|
366
381
|
--sd-hidden-links-title: 'Springe zu';
|
|
367
382
|
}
|
|
368
|
-
.sd-6-0-0-next-
|
|
383
|
+
.sd-6-0-0-next-13-hidden-links:not(:focus-within):not(.sd-6-0-0-next-13-hidden-links--debug) {
|
|
369
384
|
position: absolute;
|
|
370
385
|
width: 1px;
|
|
371
386
|
height: 1px;
|
|
@@ -376,12 +391,12 @@
|
|
|
376
391
|
white-space: nowrap;
|
|
377
392
|
border-width: 0;
|
|
378
393
|
}
|
|
379
|
-
.sd-6-0-0-next-
|
|
394
|
+
.sd-6-0-0-next-13-hidden-links{
|
|
380
395
|
position: absolute;
|
|
381
396
|
top: var(--sd-spacing-6);
|
|
382
397
|
left: var(--sd-spacing-6);
|
|
383
398
|
}
|
|
384
|
-
.sd-6-0-0-next-
|
|
399
|
+
.sd-6-0-0-next-13-hidden-links--multiple {
|
|
385
400
|
display: flex;
|
|
386
401
|
flex-direction: column;
|
|
387
402
|
background-color: rgba(var(--sd-color-background-white));
|
|
@@ -390,18 +405,18 @@
|
|
|
390
405
|
--tw-shadow: var(--sd-shadow);
|
|
391
406
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
392
407
|
}
|
|
393
|
-
.sd-6-0-0-next-
|
|
408
|
+
.sd-6-0-0-next-13-hidden-links--multiple:before {
|
|
394
409
|
padding-inline: var(--sd-spacing-4);
|
|
395
410
|
padding-block: var(--sd-spacing-2);
|
|
396
411
|
--tw-font-weight: var(--sd-font-weight-bold);
|
|
397
412
|
font-weight: var(--sd-font-weight-bold);
|
|
398
413
|
content: var(--sd-hidden-links-title);
|
|
399
414
|
}
|
|
400
|
-
mark.sd-6-0-0-next-
|
|
415
|
+
mark.sd-6-0-0-next-13-mark {
|
|
401
416
|
background-color: transparent;
|
|
402
417
|
color: rgba(var(--sd-color-text-accent));
|
|
403
418
|
}
|
|
404
|
-
.sd-6-0-0-next-
|
|
419
|
+
.sd-6-0-0-next-13-meta {
|
|
405
420
|
font-size: var(--sd-text-base);
|
|
406
421
|
line-height: var(--tw-leading, var(--text-base--line-height, calc(1.5 / 1)));
|
|
407
422
|
--tw-leading: 1;
|
|
@@ -410,38 +425,38 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
410
425
|
font-weight: var(--sd-font-weight-normal);
|
|
411
426
|
color: rgba(var(--sd-color-text-black));
|
|
412
427
|
}
|
|
413
|
-
.sd-6-0-0-next-
|
|
428
|
+
.sd-6-0-0-next-13-meta--size-sm {
|
|
414
429
|
font-size: var(--sd-text-sm);
|
|
415
430
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
416
431
|
}
|
|
417
|
-
.sd-6-0-0-next-
|
|
432
|
+
.sd-6-0-0-next-13-meta--light {
|
|
418
433
|
color: rgba(var(--sd-color-text-neutral-700));
|
|
419
434
|
}
|
|
420
|
-
.sd-6-0-0-next-
|
|
435
|
+
.sd-6-0-0-next-13-meta--inverted {
|
|
421
436
|
color: rgba(var(--sd-color-text-white));
|
|
422
437
|
}
|
|
423
|
-
.sd-6-0-0-next-
|
|
438
|
+
.sd-6-0-0-next-13-meta--inverted.sd-6-0-0-next-13-meta--light {
|
|
424
439
|
color: rgba(var(--sd-color-text-primary-400));
|
|
425
440
|
}
|
|
426
|
-
.sd-6-0-0-next-
|
|
441
|
+
.sd-6-0-0-next-13-meta--pipe::after {
|
|
427
442
|
content: '|';
|
|
428
443
|
margin-inline: var(--sd-spacing-1);
|
|
429
444
|
}
|
|
430
|
-
.sd-6-0-0-next-
|
|
445
|
+
.sd-6-0-0-next-13-meta--pipe.sd-6-0-0-next-13-meta--size-sm::after {
|
|
431
446
|
margin-inline: var(--sd-spacing-0\.5);
|
|
432
447
|
}
|
|
433
|
-
.sd-6-0-0-next-
|
|
448
|
+
.sd-6-0-0-next-13-pagination > :not(ul) {
|
|
434
449
|
position: absolute;
|
|
435
450
|
height: var(--sd-spacing-0\.25);
|
|
436
451
|
width: var(--sd-spacing-0\.25);
|
|
437
452
|
overflow: hidden;
|
|
438
453
|
}
|
|
439
|
-
.sd-6-0-0-next-
|
|
454
|
+
.sd-6-0-0-next-13-pagination ul {
|
|
440
455
|
display: flex;
|
|
441
456
|
align-items: center;
|
|
442
457
|
gap: var(--sd-spacing-2);
|
|
443
458
|
}
|
|
444
|
-
.sd-6-0-0-next-
|
|
459
|
+
.sd-6-0-0-next-13-pagination ul li button {
|
|
445
460
|
all: unset;
|
|
446
461
|
border-style: var(--tw-border-style);
|
|
447
462
|
border-width: 0px;
|
|
@@ -449,13 +464,13 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
449
464
|
border-style: solid;
|
|
450
465
|
border-color: transparent;
|
|
451
466
|
}
|
|
452
|
-
.sd-6-0-0-next-
|
|
467
|
+
.sd-6-0-0-next-13-pagination ul li button:hover:not([disabled]) {
|
|
453
468
|
cursor: pointer;
|
|
454
469
|
}
|
|
455
|
-
.sd-6-0-0-next-
|
|
470
|
+
.sd-6-0-0-next-13-pagination ul li:has(button) {
|
|
456
471
|
height: 1.875rem;
|
|
457
472
|
}
|
|
458
|
-
.sd-6-0-0-next-
|
|
473
|
+
.sd-6-0-0-next-13-pagination ul li a, .sd-6-0-0-next-13-pagination ul li button {
|
|
459
474
|
display: flex;
|
|
460
475
|
align-items: center;
|
|
461
476
|
justify-content: center;
|
|
@@ -465,30 +480,30 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
465
480
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1)));
|
|
466
481
|
transition-duration: var(--tw-duration, var(--default-transition-duration, 150ms));
|
|
467
482
|
}
|
|
468
|
-
.sd-6-0-0-next-
|
|
483
|
+
.sd-6-0-0-next-13-pagination ul li a:hover:not([disabled]), .sd-6-0-0-next-13-pagination ul li button:hover:not([disabled]) {
|
|
469
484
|
color: rgba(var(--sd-color-text-primary-500));
|
|
470
485
|
}
|
|
471
|
-
.sd-6-0-0-next-
|
|
486
|
+
.sd-6-0-0-next-13-pagination ul li a:active:not([disabled]), .sd-6-0-0-next-13-pagination ul li button:active:not([disabled]) {
|
|
472
487
|
color: rgba(var(--sd-color-text-primary-800));
|
|
473
488
|
}
|
|
474
|
-
.sd-6-0-0-next-
|
|
489
|
+
.sd-6-0-0-next-13-pagination ul li a:focus-visible, .sd-6-0-0-next-13-pagination ul li button:focus-visible {
|
|
475
490
|
outline-width: 1px;
|
|
476
491
|
outline-style: var(--tw-outline-style);
|
|
477
492
|
outline-width: 2px;
|
|
478
493
|
outline-offset: 2px;
|
|
479
|
-
outline-color: var(--sd-border-
|
|
494
|
+
outline-color: var(--sd-color-border-primary, var(--sd-color-primary));
|
|
480
495
|
}
|
|
481
|
-
.sd-6-0-0-next-
|
|
496
|
+
.sd-6-0-0-next-13-pagination ul li:first-child, .sd-6-0-0-next-13-pagination ul li:last-child {
|
|
482
497
|
height: var(--sd-spacing-12);
|
|
483
498
|
width: var(--sd-spacing-12);
|
|
484
499
|
font-size: var(--sd-text-xl);
|
|
485
500
|
line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
|
|
486
501
|
}
|
|
487
|
-
.sd-6-0-0-next-
|
|
502
|
+
.sd-6-0-0-next-13-pagination ul li:first-child a, .sd-6-0-0-next-13-pagination ul li:first-child button, .sd-6-0-0-next-13-pagination ul li:last-child a, .sd-6-0-0-next-13-pagination ul li:last-child button {
|
|
488
503
|
height: 100%;
|
|
489
504
|
width: 100%;
|
|
490
505
|
}
|
|
491
|
-
.sd-6-0-0-next-
|
|
506
|
+
.sd-6-0-0-next-13-pagination ul li {
|
|
492
507
|
display: flex;
|
|
493
508
|
height: var(--sd-spacing-8);
|
|
494
509
|
width: var(--sd-spacing-8);
|
|
@@ -496,127 +511,127 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
496
511
|
justify-content: center;
|
|
497
512
|
text-align: center;
|
|
498
513
|
}
|
|
499
|
-
.sd-6-0-0-next-
|
|
514
|
+
.sd-6-0-0-next-13-pagination ul li:not(:first-child):not(:last-child) a, .sd-6-0-0-next-13-pagination ul li:not(:first-child):not(:last-child) button {
|
|
500
515
|
height: 100%;
|
|
501
516
|
width: 100%;
|
|
502
517
|
border-bottom-style: var(--tw-border-style);
|
|
503
518
|
border-bottom-width: var(--sd-border-width-2);
|
|
504
519
|
border-bottom-color: transparent;
|
|
505
520
|
}
|
|
506
|
-
.sd-6-0-0-next-
|
|
521
|
+
.sd-6-0-0-next-13-pagination ul li:not(:first-child):not(:last-child) a[aria-current], .sd-6-0-0-next-13-pagination ul li:not(:first-child):not(:last-child) button[aria-current] {
|
|
507
522
|
border-bottom-color: rgba(var(--sd-color-border-accent));
|
|
508
523
|
}
|
|
509
|
-
.sd-6-0-0-next-
|
|
524
|
+
.sd-6-0-0-next-13-pagination ul li a[aria-current], .sd-6-0-0-next-13-pagination ul li button[aria-current] {
|
|
510
525
|
color: rgba(var(--sd-color-text-black));
|
|
511
526
|
}
|
|
512
|
-
.sd-6-0-0-next-
|
|
527
|
+
.sd-6-0-0-next-13-pagination ul li a[aria-current]:hover:not([disabled]), .sd-6-0-0-next-13-pagination ul li button[aria-current]:hover:not([disabled]) {
|
|
513
528
|
color: rgba(var(--sd-color-text-black));
|
|
514
529
|
}
|
|
515
|
-
.sd-6-0-0-next-
|
|
530
|
+
.sd-6-0-0-next-13-pagination ul li:first-child:has(a:not([href])) a, .sd-6-0-0-next-13-pagination ul li:last-child:has(a:not([href])) a, .sd-6-0-0-next-13-pagination ul li:first-child:has(button[disabled]) button, .sd-6-0-0-next-13-pagination ul li:last-child:has(button[disabled]) button {
|
|
516
531
|
cursor: not-allowed;
|
|
517
532
|
color: rgba(var(--sd-color-text-neutral-500));
|
|
518
533
|
}
|
|
519
|
-
.sd-6-0-0-next-
|
|
534
|
+
.sd-6-0-0-next-13-pagination ul li:first-child:has(a:not([href])) a:hover:not([disabled]), .sd-6-0-0-next-13-pagination ul li:last-child:has(a:not([href])) a:hover:not([disabled]), .sd-6-0-0-next-13-pagination ul li:first-child:has(button[disabled]) button:hover:not([disabled]), .sd-6-0-0-next-13-pagination ul li:last-child:has(button[disabled]) button:hover:not([disabled]) {
|
|
520
535
|
color: rgba(var(--sd-color-text-neutral-500));
|
|
521
536
|
}
|
|
522
|
-
.sd-6-0-0-next-
|
|
537
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):not(:has(a[aria-current], button[aria-current])) {
|
|
523
538
|
pointer-events: none;
|
|
524
539
|
position: absolute;
|
|
525
540
|
}
|
|
526
|
-
.sd-6-0-0-next-
|
|
541
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):not(:has(a[aria-current], button[aria-current])) a, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):not(:has(a[aria-current], button[aria-current])) button {
|
|
527
542
|
display: none;
|
|
528
543
|
}
|
|
529
|
-
.sd-6-0-0-next-
|
|
544
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):has(+ li + li a[aria-current], + li + li button[aria-current]), .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):has(a[aria-current], button[aria-current]) + li + li:not(:last-child) {
|
|
530
545
|
pointer-events: auto !important;
|
|
531
546
|
position: relative !important;
|
|
532
547
|
}
|
|
533
|
-
.sd-6-0-0-next-
|
|
548
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):has(+ li + li a[aria-current], + li + li button[aria-current])::after, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):has(a[aria-current], button[aria-current]) + li + li:not(:last-child)::after {
|
|
534
549
|
--tw-content: '...';
|
|
535
550
|
content: var(--tw-content);
|
|
536
551
|
}
|
|
537
|
-
.sd-6-0-0-next-
|
|
552
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(2), .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(2), .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):has( + li a[aria-current], + li button[aria-current]), .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):has( a[aria-current], button[aria-current]) + li {
|
|
538
553
|
pointer-events: auto !important;
|
|
539
554
|
position: relative !important;
|
|
540
555
|
}
|
|
541
|
-
.sd-6-0-0-next-
|
|
556
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(2)::after, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(2)::after, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):has( + li a[aria-current], + li button[aria-current])::after, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):has( a[aria-current], button[aria-current]) + li::after {
|
|
542
557
|
content: var(--tw-content);
|
|
543
558
|
display: none !important;
|
|
544
559
|
}
|
|
545
|
-
.sd-6-0-0-next-
|
|
560
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(2) a, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(2) button, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(2) a, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(2) button, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):has( + li a[aria-current], + li button[aria-current]) a, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):has( + li a[aria-current], + li button[aria-current]) button, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):has( a[aria-current], button[aria-current]) + li a, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):has( a[aria-current], button[aria-current]) + li button {
|
|
546
561
|
display: flex !important;
|
|
547
562
|
}
|
|
548
|
-
.sd-6-0-0-next-
|
|
563
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(a[aria-current], button[aria-current]) ~ :nth-child(-n + 6) {
|
|
549
564
|
pointer-events: auto;
|
|
550
565
|
position: relative;
|
|
551
566
|
}
|
|
552
|
-
.sd-6-0-0-next-
|
|
567
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(a[aria-current], button[aria-current]) ~ :nth-child(-n + 6)::after {
|
|
553
568
|
content: var(--tw-content);
|
|
554
569
|
display: none;
|
|
555
570
|
}
|
|
556
|
-
.sd-6-0-0-next-
|
|
571
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(a[aria-current], button[aria-current]) ~ :nth-child(-n + 6) a, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(a[aria-current], button[aria-current]) ~ :nth-child(-n + 6) button {
|
|
557
572
|
display: flex;
|
|
558
573
|
}
|
|
559
|
-
.sd-6-0-0-next-
|
|
574
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(a[aria-current], button[aria-current]) ~ :nth-child(6):not(:last-child) + li {
|
|
560
575
|
pointer-events: none;
|
|
561
576
|
position: relative;
|
|
562
577
|
}
|
|
563
|
-
.sd-6-0-0-next-
|
|
578
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(a[aria-current], button[aria-current]) ~ :nth-child(6):not(:last-child) + li::after {
|
|
564
579
|
--tw-content: '...';
|
|
565
580
|
content: var(--tw-content);
|
|
566
581
|
}
|
|
567
|
-
.sd-6-0-0-next-
|
|
582
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(~ :nth-child(-n + 5) a[aria-current], ~ :nth-child(-n + 5) button[aria-current]) {
|
|
568
583
|
pointer-events: auto;
|
|
569
584
|
position: relative;
|
|
570
585
|
}
|
|
571
|
-
.sd-6-0-0-next-
|
|
586
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(~ :nth-child(-n + 5) a[aria-current], ~ :nth-child(-n + 5) button[aria-current])::after {
|
|
572
587
|
content: var(--tw-content);
|
|
573
588
|
display: none;
|
|
574
589
|
}
|
|
575
|
-
.sd-6-0-0-next-
|
|
590
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(~ :nth-child(-n + 5) a[aria-current], ~ :nth-child(-n + 5) button[aria-current]) a, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(~ :nth-child(-n + 5) a[aria-current], ~ :nth-child(-n + 5) button[aria-current]) button {
|
|
576
591
|
display: flex;
|
|
577
592
|
}
|
|
578
|
-
.sd-6-0-0-next-
|
|
593
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 5):has(a[aria-current], button[aria-current]) ~ :nth-last-child(-n + 5):not(:first-child):not(:last-child) {
|
|
579
594
|
pointer-events: auto;
|
|
580
595
|
position: relative;
|
|
581
596
|
}
|
|
582
|
-
.sd-6-0-0-next-
|
|
597
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 5):has(a[aria-current], button[aria-current]) ~ :nth-last-child(-n + 5):not(:first-child):not(:last-child)::after {
|
|
583
598
|
content: var(--tw-content);
|
|
584
599
|
display: none;
|
|
585
600
|
}
|
|
586
|
-
.sd-6-0-0-next-
|
|
601
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 5):has(a[aria-current], button[aria-current]) ~ :nth-last-child(-n + 5):not(:first-child):not(:last-child) a, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 5):has(a[aria-current], button[aria-current]) ~ :nth-last-child(-n + 5):not(:first-child):not(:last-child) button {
|
|
587
602
|
display: flex;
|
|
588
603
|
}
|
|
589
|
-
.sd-6-0-0-next-
|
|
604
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 6):has( ~ :nth-last-child(-n + 5) a[aria-current], ~ :nth-last-child(-n + 5) button[aria-current] ) {
|
|
590
605
|
pointer-events: auto;
|
|
591
606
|
position: relative;
|
|
592
607
|
}
|
|
593
|
-
.sd-6-0-0-next-
|
|
608
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 6):has( ~ :nth-last-child(-n + 5) a[aria-current], ~ :nth-last-child(-n + 5) button[aria-current] )::after {
|
|
594
609
|
content: var(--tw-content);
|
|
595
610
|
display: none;
|
|
596
611
|
}
|
|
597
|
-
.sd-6-0-0-next-
|
|
612
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 6):has( ~ :nth-last-child(-n + 5) a[aria-current], ~ :nth-last-child(-n + 5) button[aria-current] ) a, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 6):has( ~ :nth-last-child(-n + 5) a[aria-current], ~ :nth-last-child(-n + 5) button[aria-current] ) button {
|
|
598
613
|
display: flex;
|
|
599
614
|
}
|
|
600
|
-
.sd-6-0-0-next-
|
|
615
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(7):has( ~ :nth-last-child(-n + 5) a[aria-current], ~ :nth-last-child(-n + 5) button[aria-current] ) {
|
|
601
616
|
pointer-events: none;
|
|
602
617
|
position: relative;
|
|
603
618
|
}
|
|
604
|
-
.sd-6-0-0-next-
|
|
619
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(7):has( ~ :nth-last-child(-n + 5) a[aria-current], ~ :nth-last-child(-n + 5) button[aria-current] )::after {
|
|
605
620
|
--tw-content: '...';
|
|
606
621
|
content: var(--tw-content);
|
|
607
622
|
}
|
|
608
|
-
.sd-6-0-0-next-
|
|
623
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul:has(> li:last-child:nth-child(-n + 9)) li {
|
|
609
624
|
pointer-events: auto;
|
|
610
625
|
position: relative;
|
|
611
626
|
}
|
|
612
|
-
.sd-6-0-0-next-
|
|
627
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul:has(> li:last-child:nth-child(-n + 9)) li::after {
|
|
613
628
|
content: var(--tw-content);
|
|
614
629
|
display: none;
|
|
615
630
|
}
|
|
616
|
-
.sd-6-0-0-next-
|
|
631
|
+
.sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul:has(> li:last-child:nth-child(-n + 9)) li a, .sd-6-0-0-next-13-pagination:not(.sd-6-0-0-next-13-pagination--simple) ul:has(> li:last-child:nth-child(-n + 9)) li button {
|
|
617
632
|
display: flex;
|
|
618
633
|
}
|
|
619
|
-
.sd-6-0-0-next-
|
|
634
|
+
.sd-6-0-0-next-13-pagination--simple ul li:nth-child(2) {
|
|
620
635
|
position: relative;
|
|
621
636
|
margin-inline-end: calc(var(--sd-spacing-1) * 5);
|
|
622
637
|
width: var(--sd-spacing-8);
|
|
@@ -624,65 +639,65 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
624
639
|
border-bottom-width: var(--sd-border-width-2);
|
|
625
640
|
border-bottom-color: rgba(var(--sd-color-border-accent));
|
|
626
641
|
}
|
|
627
|
-
.sd-6-0-0-next-
|
|
642
|
+
.sd-6-0-0-next-13-pagination--simple ul li:nth-child(2)::after {
|
|
628
643
|
content: var(--tw-content);
|
|
629
644
|
position: absolute;
|
|
630
645
|
}
|
|
631
|
-
.sd-6-0-0-next-
|
|
646
|
+
.sd-6-0-0-next-13-pagination--simple ul li:nth-child(2)::after {
|
|
632
647
|
content: var(--tw-content);
|
|
633
648
|
right: calc(18px * -1);
|
|
634
649
|
}
|
|
635
|
-
.sd-6-0-0-next-
|
|
650
|
+
.sd-6-0-0-next-13-pagination--simple ul li:nth-child(2)::after {
|
|
636
651
|
content: var(--tw-content);
|
|
637
652
|
--tw-scale-y: 1.5;
|
|
638
653
|
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
639
654
|
}
|
|
640
|
-
.sd-6-0-0-next-
|
|
655
|
+
.sd-6-0-0-next-13-pagination--simple ul li:nth-child(2)::after {
|
|
641
656
|
--tw-content: '/';
|
|
642
657
|
content: var(--tw-content);
|
|
643
658
|
}
|
|
644
|
-
.sd-6-0-0-next-
|
|
659
|
+
.sd-6-0-0-next-13-pagination--simple ul li:nth-child(2){
|
|
645
660
|
border-bottom-style: solid;
|
|
646
661
|
}
|
|
647
|
-
.sd-6-0-0-next-
|
|
662
|
+
.sd-6-0-0-next-13-pagination--simple ul li:nth-last-child(2) {
|
|
648
663
|
border-bottom-style: var(--tw-border-style);
|
|
649
664
|
border-bottom-width: var(--sd-border-width-2);
|
|
650
665
|
border-bottom-color: transparent;
|
|
651
666
|
}
|
|
652
|
-
.sd-6-0-0-next-
|
|
667
|
+
.sd-6-0-0-next-13-pagination--inverted ul li::after {
|
|
653
668
|
content: var(--tw-content);
|
|
654
669
|
color: rgba(var(--sd-color-text-white));
|
|
655
670
|
}
|
|
656
|
-
.sd-6-0-0-next-
|
|
671
|
+
.sd-6-0-0-next-13-pagination--inverted ul li:first-child:has(a:not([href])) a, .sd-6-0-0-next-13-pagination--inverted ul li:last-child:has(a:not([href])) a, .sd-6-0-0-next-13-pagination--inverted ul li:first-child:has(button[disabled]) button, .sd-6-0-0-next-13-pagination--inverted ul li:last-child:has(button[disabled]) button {
|
|
657
672
|
color: rgba(var(--sd-color-text-neutral-600));
|
|
658
673
|
}
|
|
659
|
-
.sd-6-0-0-next-
|
|
674
|
+
.sd-6-0-0-next-13-pagination--inverted ul li:first-child:has(a:not([href])) a:hover:not([disabled]), .sd-6-0-0-next-13-pagination--inverted ul li:last-child:has(a:not([href])) a:hover:not([disabled]), .sd-6-0-0-next-13-pagination--inverted ul li:first-child:has(button[disabled]) button:hover:not([disabled]), .sd-6-0-0-next-13-pagination--inverted ul li:last-child:has(button[disabled]) button:hover:not([disabled]) {
|
|
660
675
|
color: rgba(var(--sd-color-text-neutral-600));
|
|
661
676
|
}
|
|
662
|
-
.sd-6-0-0-next-
|
|
677
|
+
.sd-6-0-0-next-13-pagination--inverted ul li a, .sd-6-0-0-next-13-pagination--inverted ul li a[aria-current], .sd-6-0-0-next-13-pagination--inverted ul li button, .sd-6-0-0-next-13-pagination--inverted ul li button[aria-current] {
|
|
663
678
|
color: rgba(var(--sd-color-text-white));
|
|
664
679
|
}
|
|
665
|
-
.sd-6-0-0-next-
|
|
680
|
+
.sd-6-0-0-next-13-pagination--inverted ul li a:hover:not([disabled]), .sd-6-0-0-next-13-pagination--inverted ul li a[aria-current]:hover:not([disabled]), .sd-6-0-0-next-13-pagination--inverted ul li button:hover:not([disabled]), .sd-6-0-0-next-13-pagination--inverted ul li button[aria-current]:hover:not([disabled]) {
|
|
666
681
|
color: rgba(var(--sd-color-text-primary-200));
|
|
667
682
|
}
|
|
668
|
-
.sd-6-0-0-next-
|
|
683
|
+
.sd-6-0-0-next-13-pagination--inverted ul li a:active:not([disabled]), .sd-6-0-0-next-13-pagination--inverted ul li a[aria-current]:active:not([disabled]), .sd-6-0-0-next-13-pagination--inverted ul li button:active:not([disabled]), .sd-6-0-0-next-13-pagination--inverted ul li button[aria-current]:active:not([disabled]) {
|
|
669
684
|
color: rgba(var(--sd-color-text-primary-400));
|
|
670
685
|
}
|
|
671
|
-
.sd-6-0-0-next-
|
|
686
|
+
.sd-6-0-0-next-13-pagination--inverted ul li a:focus-visible, .sd-6-0-0-next-13-pagination--inverted ul li a[aria-current]:focus-visible, .sd-6-0-0-next-13-pagination--inverted ul li button:focus-visible, .sd-6-0-0-next-13-pagination--inverted ul li button[aria-current]:focus-visible {
|
|
672
687
|
outline-color: var(--color-white, #fff);
|
|
673
688
|
}
|
|
674
|
-
.sd-6-0-0-next-
|
|
689
|
+
.sd-6-0-0-next-13-pagination--inverted.sd-6-0-0-next-13-pagination--simple ul li {
|
|
675
690
|
color: rgba(var(--sd-color-text-white));
|
|
676
691
|
}
|
|
677
|
-
.sd-6-0-0-next-
|
|
692
|
+
.sd-6-0-0-next-13-pagination--inverted.sd-6-0-0-next-13-pagination--simple ul li::after {
|
|
678
693
|
content: var(--tw-content);
|
|
679
694
|
color: rgba(var(--sd-color-text-white));
|
|
680
695
|
}
|
|
681
|
-
.sd-6-0-0-next-
|
|
696
|
+
.sd-6-0-0-next-13-status-badge {
|
|
682
697
|
display: inline-flex;
|
|
683
698
|
align-items: center;
|
|
684
699
|
}
|
|
685
|
-
.sd-6-0-0-next-
|
|
700
|
+
.sd-6-0-0-next-13-status-badge sd-icon {
|
|
686
701
|
margin-right: var(--sd-spacing-2);
|
|
687
702
|
display: flex;
|
|
688
703
|
height: var(--sd-spacing-3);
|
|
@@ -691,19 +706,19 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
691
706
|
padding: var(--sd-spacing-1);
|
|
692
707
|
color: rgba(var(--sd-color-text-white)) !important;
|
|
693
708
|
}
|
|
694
|
-
.sd-6-0-0-next-
|
|
709
|
+
.sd-6-0-0-next-13-status-badge--success sd-icon {
|
|
695
710
|
background-color: rgba(var(--sd-color-background-success));
|
|
696
711
|
}
|
|
697
|
-
.sd-6-0-0-next-
|
|
712
|
+
.sd-6-0-0-next-13-status-badge--warning sd-icon {
|
|
698
713
|
background-color: rgba(var(--sd-color-background-warning));
|
|
699
714
|
}
|
|
700
|
-
.sd-6-0-0-next-
|
|
715
|
+
.sd-6-0-0-next-13-status-badge--error sd-icon {
|
|
701
716
|
background-color: rgba(var(--sd-color-background-error));
|
|
702
717
|
}
|
|
703
|
-
.sd-6-0-0-next-
|
|
718
|
+
.sd-6-0-0-next-13-status-badge--info sd-icon {
|
|
704
719
|
background-color: rgba(var(--sd-color-background-info));
|
|
705
720
|
}
|
|
706
|
-
.sd-6-0-0-next-
|
|
721
|
+
.sd-6-0-0-next-13-display {
|
|
707
722
|
font-size: var(--sd-text-3xl);
|
|
708
723
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)));
|
|
709
724
|
--tw-leading: var(--leading-tight, 1.25);
|
|
@@ -713,12 +728,12 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
713
728
|
color: rgba(var(--sd-color-text-black));
|
|
714
729
|
}
|
|
715
730
|
@media (width >= 64rem) {
|
|
716
|
-
.sd-6-0-0-next-
|
|
731
|
+
.sd-6-0-0-next-13-display {
|
|
717
732
|
font-size: var(--sd-text-4xl);
|
|
718
733
|
line-height: var(--tw-leading, var(--text-4xl--line-height, calc(2.5 / 2.25)))
|
|
719
734
|
}
|
|
720
735
|
}
|
|
721
|
-
.sd-6-0-0-next-
|
|
736
|
+
.sd-6-0-0-next-13-display--size-xl {
|
|
722
737
|
font-size: var(--sd-text-xl);
|
|
723
738
|
line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
|
|
724
739
|
--tw-leading: var(--leading-tight, 1.25);
|
|
@@ -727,7 +742,7 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
727
742
|
font-weight: var(--sd-font-weight-normal);
|
|
728
743
|
color: rgba(var(--sd-color-text-black));
|
|
729
744
|
}
|
|
730
|
-
.sd-6-0-0-next-
|
|
745
|
+
.sd-6-0-0-next-13-display--size-3xl {
|
|
731
746
|
font-size: var(--sd-text-2xl);
|
|
732
747
|
line-height: var(--tw-leading, var(--text-2xl--line-height, calc(2 / 1.5)));
|
|
733
748
|
--tw-leading: var(--leading-tight, 1.25);
|
|
@@ -737,31 +752,31 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
737
752
|
color: rgba(var(--sd-color-text-black));
|
|
738
753
|
}
|
|
739
754
|
@media (width >= 64rem) {
|
|
740
|
-
.sd-6-0-0-next-
|
|
755
|
+
.sd-6-0-0-next-13-display--size-3xl {
|
|
741
756
|
font-size: var(--sd-text-3xl);
|
|
742
757
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)))
|
|
743
758
|
}
|
|
744
759
|
}
|
|
745
|
-
.sd-6-0-0-next-
|
|
760
|
+
.sd-6-0-0-next-13-display--inverted {
|
|
746
761
|
color: rgba(var(--sd-color-text-white));
|
|
747
762
|
}
|
|
748
|
-
.sd-6-0-0-next-
|
|
763
|
+
.sd-6-0-0-next-13-headline, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5) {
|
|
749
764
|
display: flex;
|
|
750
765
|
--tw-font-weight: var(--sd-font-weight-bold);
|
|
751
766
|
font-weight: var(--sd-font-weight-bold);
|
|
752
767
|
color: rgba(var(--sd-color-text-primary));
|
|
753
768
|
}
|
|
754
|
-
.sd-6-0-0-next-
|
|
769
|
+
.sd-6-0-0-next-13-headline sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5) sd-icon {
|
|
755
770
|
flex-shrink: 0;
|
|
756
771
|
font-size: 3rem;
|
|
757
772
|
color: rgba(var(--sd-color-text-primary));
|
|
758
773
|
}
|
|
759
774
|
@media (width >= 40rem) {
|
|
760
|
-
.sd-6-0-0-next-
|
|
775
|
+
.sd-6-0-0-next-13-headline sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5) sd-icon {
|
|
761
776
|
margin-top: var(--sd-spacing-2)
|
|
762
777
|
}
|
|
763
778
|
}
|
|
764
|
-
.sd-6-0-0-next-
|
|
779
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline, .sd-6-0-0-next-13-headline:is(h1):not(.sd-6-0-0-next-13-headline), .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-6-0-0-next-13-headline) {
|
|
765
780
|
gap: var(--sd-spacing-4);
|
|
766
781
|
font-size: var(--sd-text-3xl);
|
|
767
782
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)));
|
|
@@ -769,20 +784,20 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
769
784
|
line-height: var(--leading-tight, 1.25);
|
|
770
785
|
}
|
|
771
786
|
@media (width >= 40rem) {
|
|
772
|
-
.sd-6-0-0-next-
|
|
787
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline, .sd-6-0-0-next-13-headline:is(h1):not(.sd-6-0-0-next-13-headline), .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-6-0-0-next-13-headline) {
|
|
773
788
|
font-size: var(--sd-text-4xl);
|
|
774
789
|
line-height: var(--tw-leading, var(--text-4xl--line-height, calc(2.5 / 2.25)))
|
|
775
790
|
}
|
|
776
791
|
}
|
|
777
|
-
.sd-6-0-0-next-
|
|
792
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline sd-icon, .sd-6-0-0-next-13-headline:is(h1):not(.sd-6-0-0-next-13-headline) sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-6-0-0-next-13-headline) sd-icon {
|
|
778
793
|
margin-top: calc(var(--sd-spacing-1) * -1);
|
|
779
794
|
}
|
|
780
795
|
@media (width >= 40rem) {
|
|
781
|
-
.sd-6-0-0-next-
|
|
796
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline sd-icon, .sd-6-0-0-next-13-headline:is(h1):not(.sd-6-0-0-next-13-headline) sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-6-0-0-next-13-headline) sd-icon {
|
|
782
797
|
margin-top: calc(var(--sd-spacing-1) * 0)
|
|
783
798
|
}
|
|
784
799
|
}
|
|
785
|
-
.sd-6-0-0-next-
|
|
800
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-3xl, .sd-6-0-0-next-13-headline:is(h2):not(.sd-6-0-0-next-13-headline), .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-3xl, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-6-0-0-next-13-headline) {
|
|
786
801
|
gap: var(--sd-spacing-4);
|
|
787
802
|
font-size: var(--sd-text-2xl);
|
|
788
803
|
line-height: var(--tw-leading, var(--text-2xl--line-height, calc(2 / 1.5)));
|
|
@@ -790,88 +805,88 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
790
805
|
line-height: var(--leading-tight, 1.25);
|
|
791
806
|
}
|
|
792
807
|
@media (width >= 40rem) {
|
|
793
|
-
.sd-6-0-0-next-
|
|
808
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-3xl, .sd-6-0-0-next-13-headline:is(h2):not(.sd-6-0-0-next-13-headline), .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-3xl, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-6-0-0-next-13-headline) {
|
|
794
809
|
font-size: var(--sd-text-3xl);
|
|
795
810
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)))
|
|
796
811
|
}
|
|
797
812
|
}
|
|
798
|
-
.sd-6-0-0-next-
|
|
813
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-3xl sd-icon, .sd-6-0-0-next-13-headline:is(h2):not(.sd-6-0-0-next-13-headline) sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-3xl sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-6-0-0-next-13-headline) sd-icon {
|
|
799
814
|
margin-top: calc(var(--sd-spacing-1) * -1);
|
|
800
815
|
}
|
|
801
816
|
@media (width >= 40rem) {
|
|
802
|
-
.sd-6-0-0-next-
|
|
817
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-3xl sd-icon, .sd-6-0-0-next-13-headline:is(h2):not(.sd-6-0-0-next-13-headline) sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-3xl sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-6-0-0-next-13-headline) sd-icon {
|
|
803
818
|
margin-top: calc(var(--sd-spacing-1) * 0)
|
|
804
819
|
}
|
|
805
820
|
}
|
|
806
|
-
.sd-6-0-0-next-
|
|
821
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-xl, .sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-lg, .sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-base, .sd-6-0-0-next-13-headline:is(h3, h4, h5):not(.sd-6-0-0-next-13-headline), .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-xl, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-lg, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-base, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-6-0-0-next-13-headline) {
|
|
807
822
|
gap: var(--sd-spacing-2);
|
|
808
823
|
color: rgba(var(--sd-color-text-black));
|
|
809
824
|
}
|
|
810
|
-
.sd-6-0-0-next-
|
|
825
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-xl sd-icon, .sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-lg sd-icon, .sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-base sd-icon, .sd-6-0-0-next-13-headline:is(h3, h4, h5):not(.sd-6-0-0-next-13-headline) sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-xl sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-lg sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-base sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-6-0-0-next-13-headline) sd-icon {
|
|
811
826
|
font-size: 2rem;
|
|
812
827
|
}
|
|
813
|
-
.sd-6-0-0-next-
|
|
828
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-xl, .sd-6-0-0-next-13-headline:is(h3):not(.sd-6-0-0-next-13-headline), .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-xl, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-6-0-0-next-13-headline) {
|
|
814
829
|
font-size: var(--sd-text-xl);
|
|
815
830
|
line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
|
|
816
831
|
}
|
|
817
|
-
.sd-6-0-0-next-
|
|
832
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-xl sd-icon, .sd-6-0-0-next-13-headline:is(h3):not(.sd-6-0-0-next-13-headline) sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-xl sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-6-0-0-next-13-headline) sd-icon {
|
|
818
833
|
margin-top: var(--sd-spacing-0\.5);
|
|
819
834
|
}
|
|
820
835
|
@media (width >= 40rem) {
|
|
821
|
-
.sd-6-0-0-next-
|
|
836
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-xl sd-icon, .sd-6-0-0-next-13-headline:is(h3):not(.sd-6-0-0-next-13-headline) sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-xl sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-6-0-0-next-13-headline) sd-icon {
|
|
822
837
|
margin-top: var(--sd-spacing-0\.5)
|
|
823
838
|
}
|
|
824
839
|
}
|
|
825
|
-
.sd-6-0-0-next-
|
|
840
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-lg, .sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-base, .sd-6-0-0-next-13-headline:is(h4, h5):not(.sd-6-0-0-next-13-headline), .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-lg, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-base, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h4, h5):not(.sd-6-0-0-next-13-headline) {
|
|
826
841
|
--tw-leading: var(--leading-normal, 1.5);
|
|
827
842
|
line-height: var(--leading-normal, 1.5);
|
|
828
843
|
}
|
|
829
|
-
.sd-6-0-0-next-
|
|
844
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-lg, .sd-6-0-0-next-13-headline:is(h4), .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-lg, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h4) {
|
|
830
845
|
font-size: var(--sd-text-lg);
|
|
831
846
|
line-height: var(--tw-leading, var(--text-lg--line-height, calc(1.75 / 1.125)));
|
|
832
847
|
}
|
|
833
|
-
.sd-6-0-0-next-
|
|
848
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-lg sd-icon, .sd-6-0-0-next-13-headline:is(h4) sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-lg sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
|
|
834
849
|
margin-top: calc(var(--sd-spacing-1) * 0);
|
|
835
850
|
}
|
|
836
851
|
@media (width >= 40rem) {
|
|
837
|
-
.sd-6-0-0-next-
|
|
852
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-lg sd-icon, .sd-6-0-0-next-13-headline:is(h4) sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-lg sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
|
|
838
853
|
margin-top: calc(var(--sd-spacing-1) * 0)
|
|
839
854
|
}
|
|
840
855
|
}
|
|
841
|
-
.sd-6-0-0-next-
|
|
856
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-base, .sd-6-0-0-next-13-headline:is(h5):not(.sd-6-0-0-next-13-headline), .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-base, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-6-0-0-next-13-headline) {
|
|
842
857
|
font-size: var(--sd-text-base);
|
|
843
858
|
line-height: var(--tw-leading, var(--text-base--line-height, calc(1.5 / 1)));
|
|
844
859
|
}
|
|
845
|
-
.sd-6-0-0-next-
|
|
860
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-base sd-icon, .sd-6-0-0-next-13-headline:is(h5):not(.sd-6-0-0-next-13-headline) sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-base sd-icon, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-6-0-0-next-13-headline) sd-icon {
|
|
846
861
|
margin-top: calc(var(--sd-spacing-1) * -1);
|
|
847
862
|
}
|
|
848
|
-
.sd-6-0-0-next-
|
|
863
|
+
.sd-6-0-0-next-13-headline.sd-6-0-0-next-13-headline--size-base mark, .sd-6-0-0-next-13-headline:is(h5):not(.sd-6-0-0-next-13-headline) mark, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5).sd-6-0-0-next-13-headline--size-base mark, .sd-6-0-0-next-13-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-6-0-0-next-13-headline) mark {
|
|
849
864
|
color: inherit;
|
|
850
865
|
}
|
|
851
|
-
.sd-6-0-0-next-
|
|
866
|
+
.sd-6-0-0-next-13-headline--inline {
|
|
852
867
|
display: inline-block;
|
|
853
868
|
}
|
|
854
|
-
.sd-6-0-0-next-
|
|
869
|
+
.sd-6-0-0-next-13-headline--inline sd-icon {
|
|
855
870
|
margin-top: calc(var(--sd-spacing-1) * -1);
|
|
856
871
|
margin-right: var(--sd-spacing-2);
|
|
857
872
|
vertical-align: middle;
|
|
858
873
|
}
|
|
859
|
-
.sd-6-0-0-next-
|
|
874
|
+
.sd-6-0-0-next-13-headline--inline:is(.sd-6-0-0-next-13-headline--size-xl, .sd-6-0-0-next-13-headline--size-lg, .sd-6-0-0-next-13-headline--size-base) sd-icon {
|
|
860
875
|
margin-right: var(--sd-spacing-0\.5);
|
|
861
876
|
}
|
|
862
|
-
.sd-6-0-0-next-
|
|
877
|
+
.sd-6-0-0-next-13-headline--inverted:not(#_), .sd-6-0-0-next-13-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-6-0-0-next-13-headline):not(#_) {
|
|
863
878
|
color: rgba(var(--sd-color-text-white));
|
|
864
879
|
}
|
|
865
|
-
.sd-6-0-0-next-
|
|
880
|
+
.sd-6-0-0-next-13-headline--inverted:not(#_) sd-icon, .sd-6-0-0-next-13-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-6-0-0-next-13-headline):not(#_) sd-icon {
|
|
866
881
|
color: rgba(var(--sd-color-text-white));
|
|
867
882
|
}
|
|
868
|
-
.sd-6-0-0-next-
|
|
883
|
+
.sd-6-0-0-next-13-prose a--reset, .sd-6-0-0-next-13-interactive--reset {
|
|
869
884
|
all: unset;
|
|
870
885
|
outline: revert;
|
|
871
886
|
}
|
|
872
|
-
.sd-6-0-0-next-
|
|
887
|
+
.sd-6-0-0-next-13-prose a, .sd-6-0-0-next-13-interactive{
|
|
873
888
|
cursor: pointer;
|
|
874
|
-
color: rgba(var(--sd-color-text-primary));
|
|
889
|
+
color: rgba(var(--sd-interactive--default-color-text, rgba(var(--sd-color-primary))));
|
|
875
890
|
text-decoration-line: underline;
|
|
876
891
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
877
892
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1)));
|
|
@@ -881,56 +896,56 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
881
896
|
--tw-ease: var(--ease-in-out, cubic-bezier(0.4, 0, 0.2, 1));
|
|
882
897
|
transition-timing-function: var(--ease-in-out, cubic-bezier(0.4, 0, 0.2, 1));
|
|
883
898
|
}
|
|
884
|
-
.sd-6-0-0-next-
|
|
899
|
+
.sd-6-0-0-next-13-prose a:hover:not([disabled]), .sd-6-0-0-next-13-interactive:hover:not([disabled]) {
|
|
885
900
|
color: rgba(var(--sd-color-text-primary-500));
|
|
886
901
|
}
|
|
887
|
-
.sd-6-0-0-next-
|
|
902
|
+
.sd-6-0-0-next-13-prose a:focus-visible, .sd-6-0-0-next-13-interactive:focus-visible {
|
|
888
903
|
outline-style: solid;
|
|
889
904
|
outline-offset: 2px;
|
|
890
905
|
outline-width: 2px;
|
|
891
|
-
outline-color: var(--outline-color-primary);
|
|
906
|
+
outline-color: rgba(var(--outline-color-primary));
|
|
892
907
|
}
|
|
893
|
-
.sd-6-0-0-next-
|
|
908
|
+
.sd-6-0-0-next-13-prose a:active:not([disabled]), .sd-6-0-0-next-13-interactive:active:not([disabled]) {
|
|
894
909
|
color: rgba(var(--sd-interactive--active-color-text, rgba(var(--sd-color-primary-800))));
|
|
895
910
|
}
|
|
896
|
-
.sd-6-0-0-next-
|
|
911
|
+
.sd-6-0-0-next-13-prose a:is(.sd-6-0-0-next-13-interactive), .sd-6-0-0-next-13-interactive:is(.sd-6-0-0-next-13-interactive) {
|
|
897
912
|
text-decoration-line: none;
|
|
898
913
|
}
|
|
899
|
-
.sd-6-0-0-next-
|
|
914
|
+
.sd-6-0-0-next-13-prose a--disabled, .sd-6-0-0-next-13-prose a[disabled], .sd-6-0-0-next-13-prose a[href=''], .sd-6-0-0-next-13-interactive--disabled, .sd-6-0-0-next-13-interactive[disabled], .sd-6-0-0-next-13-interactive[href=''] {
|
|
900
915
|
cursor: not-allowed;
|
|
901
916
|
color: rgba(var(--sd-color-text-neutral-500));
|
|
902
917
|
}
|
|
903
|
-
.sd-6-0-0-next-
|
|
918
|
+
.sd-6-0-0-next-13-prose a--disabled:hover:not([disabled]), .sd-6-0-0-next-13-prose a[disabled]:hover:not([disabled]), .sd-6-0-0-next-13-prose a[href='']:hover:not([disabled]), .sd-6-0-0-next-13-interactive--disabled:hover:not([disabled]), .sd-6-0-0-next-13-interactive[disabled]:hover:not([disabled]), .sd-6-0-0-next-13-interactive[href='']:hover:not([disabled]) {
|
|
904
919
|
color: rgba(var(--sd-color-text-neutral-500));
|
|
905
920
|
}
|
|
906
|
-
.sd-6-0-0-next-
|
|
921
|
+
.sd-6-0-0-next-13-prose a--disabled:active:not([disabled]), .sd-6-0-0-next-13-prose a[disabled]:active:not([disabled]), .sd-6-0-0-next-13-prose a[href='']:active:not([disabled]), .sd-6-0-0-next-13-interactive--disabled:active:not([disabled]), .sd-6-0-0-next-13-interactive[disabled]:active:not([disabled]), .sd-6-0-0-next-13-interactive[href='']:active:not([disabled]) {
|
|
907
922
|
color: rgba(var(--sd-color-text-neutral-500));
|
|
908
923
|
}
|
|
909
|
-
.sd-6-0-0-next-
|
|
924
|
+
.sd-6-0-0-next-13-prose a--disabled.sd-6-0-0-next-13-interactive--inverted, .sd-6-0-0-next-13-prose a[disabled].sd-6-0-0-next-13-interactive--inverted, .sd-6-0-0-next-13-prose a[href=''].sd-6-0-0-next-13-interactive--inverted, .sd-6-0-0-next-13-interactive--disabled.sd-6-0-0-next-13-interactive--inverted, .sd-6-0-0-next-13-interactive[disabled].sd-6-0-0-next-13-interactive--inverted, .sd-6-0-0-next-13-interactive[href=''].sd-6-0-0-next-13-interactive--inverted {
|
|
910
925
|
color: rgba(var(--sd-color-text-neutral-600));
|
|
911
926
|
}
|
|
912
|
-
.sd-6-0-0-next-
|
|
927
|
+
.sd-6-0-0-next-13-prose a--disabled.sd-6-0-0-next-13-interactive--inverted:hover:not([disabled]), .sd-6-0-0-next-13-prose a[disabled].sd-6-0-0-next-13-interactive--inverted:hover:not([disabled]), .sd-6-0-0-next-13-prose a[href=''].sd-6-0-0-next-13-interactive--inverted:hover:not([disabled]), .sd-6-0-0-next-13-interactive--disabled.sd-6-0-0-next-13-interactive--inverted:hover:not([disabled]), .sd-6-0-0-next-13-interactive[disabled].sd-6-0-0-next-13-interactive--inverted:hover:not([disabled]), .sd-6-0-0-next-13-interactive[href=''].sd-6-0-0-next-13-interactive--inverted:hover:not([disabled]) {
|
|
913
928
|
color: rgba(var(--sd-color-text-neutral-600));
|
|
914
929
|
}
|
|
915
|
-
.sd-6-0-0-next-
|
|
930
|
+
.sd-6-0-0-next-13-prose a--disabled.sd-6-0-0-next-13-interactive--inverted:active:not([disabled]), .sd-6-0-0-next-13-prose a[disabled].sd-6-0-0-next-13-interactive--inverted:active:not([disabled]), .sd-6-0-0-next-13-prose a[href=''].sd-6-0-0-next-13-interactive--inverted:active:not([disabled]), .sd-6-0-0-next-13-interactive--disabled.sd-6-0-0-next-13-interactive--inverted:active:not([disabled]), .sd-6-0-0-next-13-interactive[disabled].sd-6-0-0-next-13-interactive--inverted:active:not([disabled]), .sd-6-0-0-next-13-interactive[href=''].sd-6-0-0-next-13-interactive--inverted:active:not([disabled]) {
|
|
916
931
|
color: rgba(var(--sd-color-text-neutral-600));
|
|
917
932
|
}
|
|
918
|
-
.sd-6-0-0-next-
|
|
933
|
+
.sd-6-0-0-next-13-prose--inverted a, .sd-6-0-0-next-13-interactive--inverted {
|
|
919
934
|
color: rgba(var(--sd-color-text-white));
|
|
920
935
|
}
|
|
921
|
-
.sd-6-0-0-next-
|
|
936
|
+
.sd-6-0-0-next-13-prose--inverted a:hover:not([disabled]), .sd-6-0-0-next-13-interactive--inverted:hover:not([disabled]) {
|
|
922
937
|
color: rgba(var(--sd-color-text-primary-200));
|
|
923
938
|
}
|
|
924
|
-
.sd-6-0-0-next-
|
|
939
|
+
.sd-6-0-0-next-13-prose--inverted a:focus-visible, .sd-6-0-0-next-13-interactive--inverted:focus-visible {
|
|
925
940
|
outline-style: solid;
|
|
926
941
|
outline-offset: 2px;
|
|
927
942
|
outline-width: 2px;
|
|
928
|
-
outline-color: var(--outline-color-primary);
|
|
943
|
+
outline-color: rgba(var(--outline-color-primary));
|
|
929
944
|
}
|
|
930
|
-
.sd-6-0-0-next-
|
|
945
|
+
.sd-6-0-0-next-13-prose--inverted a:active:not([disabled]), .sd-6-0-0-next-13-interactive--inverted:active:not([disabled]) {
|
|
931
946
|
color: rgba(var(--sd-color-text-primary-400));
|
|
932
947
|
}
|
|
933
|
-
.sd-6-0-0-next-
|
|
948
|
+
.sd-6-0-0-next-13-prose > .sd-6-0-0-next-13-leadtext, .sd-6-0-0-next-13-leadtext {
|
|
934
949
|
font-size: var(--sd-text-xl);
|
|
935
950
|
line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
|
|
936
951
|
--tw-leading: var(--leading-normal, 1.5);
|
|
@@ -939,7 +954,7 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
939
954
|
font-weight: var(--sd-font-weight-normal);
|
|
940
955
|
color: rgba(var(--sd-color-text-black));
|
|
941
956
|
}
|
|
942
|
-
.sd-6-0-0-next-
|
|
957
|
+
.sd-6-0-0-next-13-prose > .sd-6-0-0-next-13-leadtext--size-lg, .sd-6-0-0-next-13-leadtext--size-lg {
|
|
943
958
|
font-size: var(--sd-text-lg);
|
|
944
959
|
line-height: var(--tw-leading, var(--text-lg--line-height, calc(1.75 / 1.125)));
|
|
945
960
|
--tw-leading: var(--leading-normal, 1.5);
|
|
@@ -948,10 +963,10 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
948
963
|
font-weight: var(--sd-font-weight-normal);
|
|
949
964
|
color: rgba(var(--sd-color-text-black));
|
|
950
965
|
}
|
|
951
|
-
.sd-6-0-0-next-
|
|
966
|
+
.sd-6-0-0-next-13-prose--inverted > .sd-6-0-0-next-13-leadtext, .sd-6-0-0-next-13-leadtext--inverted {
|
|
952
967
|
color: rgba(var(--sd-color-text-white));
|
|
953
968
|
}
|
|
954
|
-
.sd-6-0-0-next-
|
|
969
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon), .sd-6-0-0-next-13-prose > :is(ol, ul) {
|
|
955
970
|
list-style-position: revert;
|
|
956
971
|
list-style-type: revert;
|
|
957
972
|
padding: revert;
|
|
@@ -959,111 +974,111 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
959
974
|
padding-left: var(--sd-spacing-4);
|
|
960
975
|
text-align: left;
|
|
961
976
|
}
|
|
962
|
-
.sd-6-0-0-next-
|
|
977
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon) li:not(:first-child), .sd-6-0-0-next-13-prose > :is(ol, ul) li:not(:first-child) {
|
|
963
978
|
margin-top: var(--sd-spacing-3);
|
|
964
979
|
}
|
|
965
|
-
.sd-6-0-0-next-
|
|
980
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon) ul, .sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon) ol, .sd-6-0-0-next-13-prose > :is(ol, ul) ul, .sd-6-0-0-next-13-prose > :is(ol, ul) ol {
|
|
966
981
|
all: revert;
|
|
967
982
|
padding-top: 0.75em;
|
|
968
983
|
padding-left: 1.4em;
|
|
969
984
|
}
|
|
970
985
|
@supports not (-webkit-hyphens: none) {
|
|
971
|
-
.sd-6-0-0-next-
|
|
986
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon) li, .sd-6-0-0-next-13-prose > :is(ol, ul) li {
|
|
972
987
|
padding-left: 0.3em;
|
|
973
988
|
}
|
|
974
|
-
.sd-6-0-0-next-
|
|
989
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ol):not(.sd-6-0-0-next-13-list--icon), .sd-6-0-0-next-13-prose > :is(ol, ul):is(ol):not(.sd-6-0-0-next-13-list--icon) {
|
|
975
990
|
counter-reset: item;
|
|
976
991
|
}
|
|
977
|
-
.sd-6-0-0-next-
|
|
992
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ol):not(.sd-6-0-0-next-13-list--icon) > li, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ol):not(.sd-6-0-0-next-13-list--icon) > li {
|
|
978
993
|
counter-increment: item;
|
|
979
994
|
}
|
|
980
|
-
.sd-6-0-0-next-
|
|
995
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ol):not(.sd-6-0-0-next-13-list--icon) > li::marker, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ol):not(.sd-6-0-0-next-13-list--icon) > li::marker {
|
|
981
996
|
content: counters(item, '.', decimal) '. ';
|
|
982
997
|
}
|
|
983
|
-
.sd-6-0-0-next-
|
|
998
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ol):not(.sd-6-0-0-next-13-list--icon) > li > ol, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ol):not(.sd-6-0-0-next-13-list--icon) > li > ol {
|
|
984
999
|
padding-left: 1.9em;
|
|
985
1000
|
counter-reset: subitem;
|
|
986
1001
|
}
|
|
987
|
-
.sd-6-0-0-next-
|
|
1002
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ol):not(.sd-6-0-0-next-13-list--icon) > li > ol > li, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ol):not(.sd-6-0-0-next-13-list--icon) > li > ol > li {
|
|
988
1003
|
counter-increment: subitem;
|
|
989
1004
|
}
|
|
990
|
-
.sd-6-0-0-next-
|
|
1005
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ol):not(.sd-6-0-0-next-13-list--icon) > li > ol > li::marker, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ol):not(.sd-6-0-0-next-13-list--icon) > li > ol > li::marker {
|
|
991
1006
|
content: counters(item, '.', decimal) '.' counters(subitem, '.', decimal) '. ';
|
|
992
1007
|
}
|
|
993
|
-
.sd-6-0-0-next-
|
|
1008
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ol):not(.sd-6-0-0-next-13-list--icon) > li > ol > li > ol, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ol):not(.sd-6-0-0-next-13-list--icon) > li > ol > li > ol {
|
|
994
1009
|
padding-left: 2.7em;
|
|
995
1010
|
counter-reset: subsubitem;
|
|
996
1011
|
}
|
|
997
|
-
.sd-6-0-0-next-
|
|
1012
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ol):not(.sd-6-0-0-next-13-list--icon) > li > ol > li > ol > li, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ol):not(.sd-6-0-0-next-13-list--icon) > li > ol > li > ol > li {
|
|
998
1013
|
counter-increment: subsubitem;
|
|
999
1014
|
}
|
|
1000
|
-
.sd-6-0-0-next-
|
|
1015
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ol):not(.sd-6-0-0-next-13-list--icon) > li > ol > li > ol > li::marker, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ol):not(.sd-6-0-0-next-13-list--icon) > li > ol > li > ol > li::marker {
|
|
1001
1016
|
content: counters(item, '.', decimal) '.' counters(subitem, '.', decimal) '.' counters(subsubitem, '.', decimal) '. ';
|
|
1002
1017
|
}
|
|
1003
1018
|
}
|
|
1004
|
-
.sd-6-0-0-next-
|
|
1019
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ul):not(.sd-6-0-0-next-13-list--icon), .sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon) ul, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ul):not(.sd-6-0-0-next-13-list--icon), .sd-6-0-0-next-13-prose > :is(ol, ul) ul {
|
|
1005
1020
|
padding-left: 0.5em;
|
|
1006
1021
|
}
|
|
1007
|
-
.sd-6-0-0-next-
|
|
1022
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ul):not(.sd-6-0-0-next-13-list--icon) > li, .sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon) ul > li, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ul):not(.sd-6-0-0-next-13-list--icon) > li, .sd-6-0-0-next-13-prose > :is(ol, ul) ul > li {
|
|
1008
1023
|
padding-left: 0.75em;
|
|
1009
1024
|
list-style-type: '\2022';
|
|
1010
1025
|
}
|
|
1011
|
-
.sd-6-0-0-next-
|
|
1026
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ul):not(.sd-6-0-0-next-13-list--icon) > li > ul, .sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon) ul > li > ul, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ul):not(.sd-6-0-0-next-13-list--icon) > li > ul, .sd-6-0-0-next-13-prose > :is(ol, ul) ul > li > ul {
|
|
1012
1027
|
padding-left: 0.3em;
|
|
1013
1028
|
}
|
|
1014
|
-
.sd-6-0-0-next-
|
|
1029
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ul):not(.sd-6-0-0-next-13-list--icon) > li > ul > li, .sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon) ul > li > ul > li, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ul):not(.sd-6-0-0-next-13-list--icon) > li > ul > li, .sd-6-0-0-next-13-prose > :is(ol, ul) ul > li > ul > li {
|
|
1015
1030
|
list-style-type: '\002B1D';
|
|
1016
1031
|
}
|
|
1017
|
-
.sd-6-0-0-next-
|
|
1032
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ul):not(.sd-6-0-0-next-13-list--icon) > li > ul > li > ul, .sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon) ul > li > ul > li > ul, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ul):not(.sd-6-0-0-next-13-list--icon) > li > ul > li > ul, .sd-6-0-0-next-13-prose > :is(ol, ul) ul > li > ul > li > ul {
|
|
1018
1033
|
padding-left: 0.4em;
|
|
1019
1034
|
}
|
|
1020
|
-
.sd-6-0-0-next-
|
|
1035
|
+
.sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon):is(ul):not(.sd-6-0-0-next-13-list--icon) > li > ul > li > ul > li, .sd-6-0-0-next-13-list:not(.sd-6-0-0-next-13-list--icon) ul > li > ul > li > ul > li, .sd-6-0-0-next-13-prose > :is(ol, ul):is(ul):not(.sd-6-0-0-next-13-list--icon) > li > ul > li > ul > li, .sd-6-0-0-next-13-prose > :is(ol, ul) ul > li > ul > li > ul > li {
|
|
1021
1036
|
list-style-type: '\2010';
|
|
1022
1037
|
}
|
|
1023
|
-
.sd-6-0-0-next-
|
|
1038
|
+
.sd-6-0-0-next-13-list--icon {
|
|
1024
1039
|
padding-block: var(--sd-spacing-4);
|
|
1025
1040
|
text-align: left;
|
|
1026
1041
|
}
|
|
1027
|
-
.sd-6-0-0-next-
|
|
1042
|
+
.sd-6-0-0-next-13-list--icon li sd-icon:first-of-type, .sd-6-0-0-next-13-list--icon li .sd-6-0-0-next-13-list--icon__icon:first-of-type {
|
|
1028
1043
|
color: rgba(var(--sd-color-text-white));
|
|
1029
1044
|
}
|
|
1030
|
-
.sd-6-0-0-next-
|
|
1045
|
+
.sd-6-0-0-next-13-list--icon{
|
|
1031
1046
|
list-style-type: '';
|
|
1032
1047
|
}
|
|
1033
|
-
.sd-6-0-0-next-
|
|
1048
|
+
.sd-6-0-0-next-13-list--icon > li:first-of-type {
|
|
1034
1049
|
padding-top: calc(var(--sd-spacing-1) * 0);
|
|
1035
1050
|
}
|
|
1036
|
-
.sd-6-0-0-next-
|
|
1051
|
+
.sd-6-0-0-next-13-list--icon li {
|
|
1037
1052
|
position: relative;
|
|
1038
1053
|
padding-top: var(--sd-spacing-3);
|
|
1039
1054
|
padding-left: var(--sd-spacing-10);
|
|
1040
1055
|
--tw-leading: 32px;
|
|
1041
1056
|
line-height: 32px;
|
|
1042
1057
|
}
|
|
1043
|
-
.sd-6-0-0-next-
|
|
1058
|
+
.sd-6-0-0-next-13-list--icon li > sd-icon:first-of-type, .sd-6-0-0-next-13-list--icon li > .sd-6-0-0-next-13-list--icon__icon:first-of-type {
|
|
1044
1059
|
position: absolute;
|
|
1045
1060
|
left: calc(var(--sd-spacing-1) * 0);
|
|
1046
1061
|
font-size: var(--sd-text-3xl);
|
|
1047
1062
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)));
|
|
1048
1063
|
color: rgba(var(--sd-color-text-primary));
|
|
1049
1064
|
}
|
|
1050
|
-
.sd-6-0-0-next-
|
|
1065
|
+
.sd-6-0-0-next-13-list--icon.sd-6-0-0-next-13-list--horizontal {
|
|
1051
1066
|
display: flex;
|
|
1052
1067
|
}
|
|
1053
|
-
.sd-6-0-0-next-
|
|
1068
|
+
.sd-6-0-0-next-13-list--icon.sd-6-0-0-next-13-list--horizontal li {
|
|
1054
1069
|
display: flex;
|
|
1055
1070
|
padding-top: calc(var(--sd-spacing-1) * 0);
|
|
1056
1071
|
}
|
|
1057
|
-
.sd-6-0-0-next-
|
|
1072
|
+
.sd-6-0-0-next-13-list--icon.sd-6-0-0-next-13-list--horizontal li:not(:last-child) {
|
|
1058
1073
|
margin-right: var(--sd-spacing-8);
|
|
1059
1074
|
}
|
|
1060
|
-
.sd-6-0-0-next-
|
|
1075
|
+
.sd-6-0-0-next-13-list--inverted, .sd-6-0-0-next-13-prose--inverted > :is(ol, ul) {
|
|
1061
1076
|
color: rgba(var(--sd-color-text-white));
|
|
1062
1077
|
}
|
|
1063
|
-
.sd-6-0-0-next-
|
|
1078
|
+
.sd-6-0-0-next-13-list--inverted li > sd-icon:first-of-type, .sd-6-0-0-next-13-list--inverted li > .sd-6-0-0-next-13-list--icon__icon:first-of-type, .sd-6-0-0-next-13-prose--inverted > :is(ol, ul) li > sd-icon:first-of-type, .sd-6-0-0-next-13-prose--inverted > :is(ol, ul) li > .sd-6-0-0-next-13-list--icon__icon:first-of-type {
|
|
1064
1079
|
color: rgba(var(--sd-color-text-white));
|
|
1065
1080
|
}
|
|
1066
|
-
.sd-6-0-0-next-
|
|
1081
|
+
.sd-6-0-0-next-13-paragraph, .sd-6-0-0-next-13-prose p {
|
|
1067
1082
|
font-size: var(--sd-text-base);
|
|
1068
1083
|
line-height: var(--tw-leading, var(--text-base--line-height, calc(1.5 / 1)));
|
|
1069
1084
|
--tw-leading: var(--leading-normal, 1.5);
|
|
@@ -1072,7 +1087,7 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
1072
1087
|
font-weight: var(--sd-font-weight-normal);
|
|
1073
1088
|
color: rgba(var(--sd-color-text-black));
|
|
1074
1089
|
}
|
|
1075
|
-
.sd-6-0-0-next-
|
|
1090
|
+
.sd-6-0-0-next-13-paragraph--size-sm, .sd-6-0-0-next-13-prose p--size-sm {
|
|
1076
1091
|
font-size: var(--sd-text-sm);
|
|
1077
1092
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
1078
1093
|
--tw-leading: var(--leading-normal, 1.5);
|
|
@@ -1081,22 +1096,22 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
1081
1096
|
font-weight: var(--sd-font-weight-normal);
|
|
1082
1097
|
color: rgba(var(--sd-color-text-black));
|
|
1083
1098
|
}
|
|
1084
|
-
.sd-6-0-0-next-
|
|
1099
|
+
.sd-6-0-0-next-13-paragraph--inverted, .sd-6-0-0-next-13-prose--inverted p {
|
|
1085
1100
|
color: rgba(var(--sd-color-text-white));
|
|
1086
1101
|
}
|
|
1087
|
-
.sd-6-0-0-next-
|
|
1102
|
+
.sd-6-0-0-next-13-prose figure, figure.sd-6-0-0-next-13-media {
|
|
1088
1103
|
margin: calc(var(--sd-spacing-1) * 0);
|
|
1089
1104
|
}
|
|
1090
|
-
.sd-6-0-0-next-
|
|
1105
|
+
.sd-6-0-0-next-13-prose figure figcaption, figure.sd-6-0-0-next-13-media figcaption {
|
|
1091
1106
|
color: rgba(var(--sd-color-text-neutral-700));
|
|
1092
1107
|
}
|
|
1093
|
-
.sd-6-0-0-next-
|
|
1108
|
+
.sd-6-0-0-next-13-prose figure figcaption:last-child, figure.sd-6-0-0-next-13-media figcaption:last-child {
|
|
1094
1109
|
margin-top: var(--sd-spacing-3);
|
|
1095
1110
|
}
|
|
1096
|
-
.sd-6-0-0-next-
|
|
1111
|
+
.sd-6-0-0-next-13-prose--inverted figure figcaption, figure.sd-6-0-0-next-13-media--inverted figcaption {
|
|
1097
1112
|
color: rgba(var(--sd-color-text-primary-400));
|
|
1098
1113
|
}
|
|
1099
|
-
.sd-6-0-0-next-
|
|
1114
|
+
.sd-6-0-0-next-13-prose td, .sd-6-0-0-next-13-prose th, .sd-6-0-0-next-13-table-cell {
|
|
1100
1115
|
border-inline-style: var(--tw-border-style);
|
|
1101
1116
|
border-inline-width: 0px;
|
|
1102
1117
|
border-block-style: var(--tw-border-style);
|
|
@@ -1111,11 +1126,11 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
1111
1126
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
1112
1127
|
color: rgba(var(--sd-color-text-black));
|
|
1113
1128
|
}
|
|
1114
|
-
.sd-6-0-0-next-
|
|
1129
|
+
.sd-6-0-0-next-13-table-cell--divider {
|
|
1115
1130
|
border-right-style: var(--tw-border-style);
|
|
1116
1131
|
border-right-width: 1px;
|
|
1117
1132
|
}
|
|
1118
|
-
.sd-6-0-0-next-
|
|
1133
|
+
.sd-6-0-0-next-13-table-cell--shadow-top:after, .sd-6-0-0-next-13-table-cell--shadow-bottom:after, .sd-6-0-0-next-13-table-cell--shadow-left:after, .sd-6-0-0-next-13-table-cell--shadow-right:after {
|
|
1119
1134
|
pointer-events: none;
|
|
1120
1135
|
position: absolute;
|
|
1121
1136
|
--tw-gradient-from: color-mix(in oklab, #000 var(--sd-opacity-10), transparent);
|
|
@@ -1130,12 +1145,12 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
1130
1145
|
--tw-content: '';
|
|
1131
1146
|
content: var(--tw-content);
|
|
1132
1147
|
}
|
|
1133
|
-
.sd-6-0-0-next-
|
|
1148
|
+
.sd-6-0-0-next-13-table-cell--shadow-top:after, .sd-6-0-0-next-13-table-cell--shadow-bottom:after {
|
|
1134
1149
|
right: calc(var(--sd-spacing-1) * 0);
|
|
1135
1150
|
left: calc(var(--sd-spacing-1) * 0);
|
|
1136
1151
|
height: calc(var(--sd-spacing-1) * 2.5);
|
|
1137
1152
|
}
|
|
1138
|
-
.sd-6-0-0-next-
|
|
1153
|
+
.sd-6-0-0-next-13-table-cell--shadow-top:before, .sd-6-0-0-next-13-table-cell--shadow-bottom:before {
|
|
1139
1154
|
position: absolute;
|
|
1140
1155
|
left: calc(var(--sd-spacing-1) * 0);
|
|
1141
1156
|
display: block;
|
|
@@ -1147,50 +1162,50 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
1147
1162
|
--tw-content: '';
|
|
1148
1163
|
content: var(--tw-content);
|
|
1149
1164
|
}
|
|
1150
|
-
.sd-6-0-0-next-
|
|
1165
|
+
.sd-6-0-0-next-13-table-cell--shadow-left:after, .sd-6-0-0-next-13-table-cell--shadow-right:after {
|
|
1151
1166
|
top: calc(var(--sd-spacing-1) * 0);
|
|
1152
1167
|
bottom: calc(var(--sd-spacing-1) * 0);
|
|
1153
1168
|
width: calc(var(--sd-spacing-1) * 2.5);
|
|
1154
1169
|
}
|
|
1155
|
-
.sd-6-0-0-next-
|
|
1170
|
+
.sd-6-0-0-next-13-table-cell.sd-6-0-0-next-13-table-cell--shadow-active:after {
|
|
1156
1171
|
opacity: 100%;
|
|
1157
1172
|
}
|
|
1158
|
-
.sd-6-0-0-next-
|
|
1173
|
+
.sd-6-0-0-next-13-table-cell--shadow-top:after {
|
|
1159
1174
|
top: -10px;
|
|
1160
1175
|
--tw-gradient-position: to top in oklab;
|
|
1161
1176
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
1162
1177
|
}
|
|
1163
|
-
.sd-6-0-0-next-
|
|
1178
|
+
.sd-6-0-0-next-13-table-cell--shadow-top:before {
|
|
1164
1179
|
bottom: -1px;
|
|
1165
1180
|
}
|
|
1166
|
-
.sd-6-0-0-next-
|
|
1181
|
+
.sd-6-0-0-next-13-table-cell--shadow-bottom:after {
|
|
1167
1182
|
bottom: -10px;
|
|
1168
1183
|
--tw-gradient-position: to bottom in oklab;
|
|
1169
1184
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
1170
1185
|
}
|
|
1171
|
-
.sd-6-0-0-next-
|
|
1186
|
+
.sd-6-0-0-next-13-table-cell--shadow-bottom:before {
|
|
1172
1187
|
top: -1px;
|
|
1173
1188
|
}
|
|
1174
|
-
.sd-6-0-0-next-
|
|
1189
|
+
.sd-6-0-0-next-13-table-cell--shadow-left:after {
|
|
1175
1190
|
left: -10px;
|
|
1176
1191
|
--tw-gradient-position: to left in oklab;
|
|
1177
1192
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
1178
1193
|
}
|
|
1179
|
-
.sd-6-0-0-next-
|
|
1194
|
+
.sd-6-0-0-next-13-table-cell--shadow-right:after {
|
|
1180
1195
|
right: -10px;
|
|
1181
1196
|
--tw-gradient-position: to right in oklab;
|
|
1182
1197
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
1183
1198
|
}
|
|
1184
|
-
.sd-6-0-0-next-
|
|
1199
|
+
.sd-6-0-0-next-13-table-cell--bg-white {
|
|
1185
1200
|
background-color: rgba(var(--sd-color-background-white));
|
|
1186
1201
|
}
|
|
1187
|
-
.sd-6-0-0-next-
|
|
1202
|
+
.sd-6-0-0-next-13-table-cell--bg-primary-100 {
|
|
1188
1203
|
background-color: rgba(var(--sd-color-background-primary-100));
|
|
1189
1204
|
}
|
|
1190
|
-
.sd-6-0-0-next-
|
|
1205
|
+
.sd-6-0-0-next-13-table-cell--bg-neutral-100 {
|
|
1191
1206
|
background-color: rgba(var(--sd-color-background-neutral-100));
|
|
1192
1207
|
}
|
|
1193
|
-
.sd-6-0-0-next-
|
|
1208
|
+
.sd-6-0-0-next-13-table, .sd-6-0-0-next-13-prose table {
|
|
1194
1209
|
all: unset;
|
|
1195
1210
|
display: table;
|
|
1196
1211
|
border-collapse: collapse;
|
|
@@ -1198,61 +1213,66 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
1198
1213
|
--tw-border-spacing-y: calc(var(--sd-spacing-1) * 0);
|
|
1199
1214
|
border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
|
|
1200
1215
|
}
|
|
1201
|
-
.sd-6-0-0-next-
|
|
1216
|
+
.sd-6-0-0-next-13-table thead tr:first-of-type, .sd-6-0-0-next-13-table tfoot tr:first-of-type, .sd-6-0-0-next-13-prose table thead tr:first-of-type, .sd-6-0-0-next-13-prose table tfoot tr:first-of-type {
|
|
1202
1217
|
position: relative;
|
|
1203
1218
|
}
|
|
1204
|
-
.sd-6-0-0-next-
|
|
1219
|
+
.sd-6-0-0-next-13-prose {
|
|
1205
1220
|
max-width: 80ch;
|
|
1206
1221
|
text-align: left;
|
|
1207
1222
|
}
|
|
1208
|
-
.sd-6-0-0-next-
|
|
1223
|
+
.sd-6-0-0-next-13-prose > *:not(:first-child) {
|
|
1209
1224
|
margin-top: var(--sd-spacing-4);
|
|
1210
1225
|
}
|
|
1211
|
-
.sd-6-0-0-next-
|
|
1226
|
+
.sd-6-0-0-next-13-prose > *:first-child {
|
|
1212
1227
|
margin-top: calc(var(--sd-spacing-1) * 0);
|
|
1213
1228
|
}
|
|
1214
|
-
.sd-6-0-0-next-
|
|
1229
|
+
.sd-6-0-0-next-13-prose > :is(h1, h2, h3, h4, h5):not(#_) + :is(h1, h2, h3, h4, h5) {
|
|
1215
1230
|
margin-top: var(--sd-spacing-2);
|
|
1216
1231
|
}
|
|
1217
|
-
.sd-6-0-0-next-
|
|
1232
|
+
.sd-6-0-0-next-13-prose > *:not(:is(h1, h2, h3, h4, h5)) + :is(h1, h2, h3, h4, h5):not(#_) {
|
|
1218
1233
|
margin-top: var(--sd-spacing-8);
|
|
1219
1234
|
}
|
|
1220
|
-
.sd-6-0-0-next-
|
|
1235
|
+
.sd-6-0-0-next-13-prose > figure + *:not(#_), .sd-6-0-0-next-13-prose > img + *:not(#_) {
|
|
1221
1236
|
margin-top: var(--sd-spacing-6);
|
|
1222
1237
|
}
|
|
1223
|
-
.sd-6-0-0-next-
|
|
1238
|
+
.sd-6-0-0-next-13-prose hr {
|
|
1224
1239
|
height: calc(var(--sd-spacing-1) * 0);
|
|
1225
1240
|
border-top-style: var(--tw-border-style);
|
|
1226
1241
|
border-top-width: 1px;
|
|
1227
1242
|
border-color: rgba(var(--sd-color-border-neutral-500));
|
|
1228
1243
|
}
|
|
1229
|
-
.sd-6-0-0-next-
|
|
1244
|
+
.sd-6-0-0-next-13-prose pre {
|
|
1230
1245
|
overflow: auto;
|
|
1231
1246
|
}
|
|
1232
|
-
.sd-6-0-0-next-
|
|
1247
|
+
.sd-6-0-0-next-13-prose blockquote, .sd-6-0-0-next-13-prose blockquote > * {
|
|
1233
1248
|
font-size: var(--sd-text-xl);
|
|
1234
1249
|
line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
|
|
1235
1250
|
}
|
|
1236
|
-
.sd-6-0-0-next-
|
|
1251
|
+
.sd-6-0-0-next-13-prose blockquote:has(*) *:first-child::before, .sd-6-0-0-next-13-prose blockquote:not(:has(*))::before {
|
|
1237
1252
|
content: open-quote;
|
|
1238
1253
|
display: inline;
|
|
1239
1254
|
}
|
|
1240
|
-
.sd-6-0-0-next-
|
|
1255
|
+
.sd-6-0-0-next-13-prose blockquote:has(*) *:first-child::after, .sd-6-0-0-next-13-prose blockquote:not(:has(*))::after {
|
|
1241
1256
|
content: close-quote;
|
|
1242
1257
|
display: inline;
|
|
1243
1258
|
}
|
|
1244
|
-
.sd-6-0-0-next-
|
|
1259
|
+
.sd-6-0-0-next-13-prose > :is(ul, ol):not(#_) {
|
|
1245
1260
|
padding-block: calc(var(--sd-spacing-1) * 0);
|
|
1246
1261
|
}
|
|
1247
|
-
.sd-6-0-0-next-
|
|
1262
|
+
.sd-6-0-0-next-13-prose--inverted hr {
|
|
1248
1263
|
border-color: rgba(var(--sd-color-border-white));
|
|
1249
1264
|
}
|
|
1250
|
-
.sd-6-0-0-next-
|
|
1265
|
+
.sd-6-0-0-next-13-prose--inverted pre {
|
|
1251
1266
|
color: rgba(var(--sd-color-text-white));
|
|
1252
1267
|
}
|
|
1253
|
-
.sd-6-0-0-next-
|
|
1268
|
+
.sd-6-0-0-next-13-prose--full-width {
|
|
1254
1269
|
max-width: unset;
|
|
1255
1270
|
}
|
|
1271
|
+
@property --tw-border-style {
|
|
1272
|
+
syntax: "*";
|
|
1273
|
+
inherits: false;
|
|
1274
|
+
initial-value: solid;
|
|
1275
|
+
}
|
|
1256
1276
|
@property --tw-blur {
|
|
1257
1277
|
syntax: "*";
|
|
1258
1278
|
inherits: false;
|
|
@@ -1384,11 +1404,6 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
1384
1404
|
inherits: false;
|
|
1385
1405
|
initial-value: 0 0 #0000;
|
|
1386
1406
|
}
|
|
1387
|
-
@property --tw-border-style {
|
|
1388
|
-
syntax: "*";
|
|
1389
|
-
inherits: false;
|
|
1390
|
-
initial-value: solid;
|
|
1391
|
-
}
|
|
1392
1407
|
@property --tw-content {
|
|
1393
1408
|
syntax: "*";
|
|
1394
1409
|
initial-value: "";
|
|
@@ -1472,6 +1487,7 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
1472
1487
|
@layer properties {
|
|
1473
1488
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
1474
1489
|
*, ::before, ::after, ::backdrop {
|
|
1490
|
+
--tw-border-style: solid;
|
|
1475
1491
|
--tw-blur: initial;
|
|
1476
1492
|
--tw-brightness: initial;
|
|
1477
1493
|
--tw-contrast: initial;
|
|
@@ -1502,7 +1518,6 @@ mark.sd-6-0-0-next-12-mark {
|
|
|
1502
1518
|
--tw-ring-offset-width: 0px;
|
|
1503
1519
|
--tw-ring-offset-color: #fff;
|
|
1504
1520
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1505
|
-
--tw-border-style: solid;
|
|
1506
1521
|
--tw-content: "";
|
|
1507
1522
|
--tw-scale-x: 1;
|
|
1508
1523
|
--tw-scale-y: 1;
|