srcdev-nuxt-components 6.1.2 → 6.1.4
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/app/components/carousel-basic/CarouselBasic.vue +86 -62
- package/app/components/display-details/DisplayDetailsCore.vue +26 -207
- package/app/components/expanding-panel/ExpandingPanel.vue +5 -10
- package/app/components/marquee-scroller/MarqueeScroller.vue +122 -0
- package/app/components/masonry-grid-ordered/MasonryGridOrdered.vue +44 -41
- package/app/components/responsive-header/NavigationItems.vue +98 -48
- package/app/components/responsive-header/ResponsiveHeader.vue +1 -1
- package/nuxt.config.ts +1 -1
- package/package.json +3 -3
- package/app/assets/styles/extends-layer/srcdev-components/components/_display-prompt-core.css +0 -72
- package/app/assets/styles/extends-layer/srcdev-components/components/index.css +0 -1
- package/app/assets/styles/extends-layer/srcdev-components/index.css +0 -2
- package/app/assets/styles/extends-layer/srcdev-components/setup/index.css +0 -1
- package/app/assets/styles/extends-layer/srcdev-components/setup/themes/_error.css +0 -15
- package/app/assets/styles/extends-layer/srcdev-components/setup/themes/_info.css +0 -15
- package/app/assets/styles/extends-layer/srcdev-components/setup/themes/_secondary.css +0 -15
- package/app/assets/styles/extends-layer/srcdev-components/setup/themes/_success.css +0 -15
- package/app/assets/styles/extends-layer/srcdev-components/setup/themes/_warning.css +0 -15
- package/app/assets/styles/extends-layer/srcdev-components/setup/themes/index.css +0 -5
- package/app/assets/styles/main.css +0 -2
- package/app/assets/styles/setup/_head.css +0 -36
- package/app/assets/styles/setup/a11y/_utils.css +0 -20
- package/app/assets/styles/setup/a11y/_variables.css +0 -8
- package/app/assets/styles/setup/a11y/index.css +0 -2
- package/app/assets/styles/setup/index.css +0 -5
- package/app/assets/styles/setup/typography/index.css +0 -2
- package/app/assets/styles/setup/typography/utility-classes/_generic-font-classes.css +0 -217
- package/app/assets/styles/setup/typography/utility-classes/_generic-font-variation-settings.css +0 -29
- package/app/assets/styles/setup/typography/utility-classes/_generic-font-weights.css +0 -39
- package/app/assets/styles/setup/typography/utility-classes/index.css +0 -3
- package/app/assets/styles/setup/typography/vars/_colors.css +0 -14
- package/app/assets/styles/setup/typography/vars/_reponsive-font-sizes.css +0 -12
- package/app/assets/styles/setup/typography/vars/index.css +0 -2
- package/app/assets/styles/setup/utility-classes/_fluid-spacing.css +0 -13
- package/app/assets/styles/setup/utility-classes/_margin.css +0 -334
- package/app/assets/styles/setup/utility-classes/_padding.css +0 -308
- package/app/assets/styles/setup/utility-classes/animations/_auto-rotate.css +0 -13
- package/app/assets/styles/setup/utility-classes/animations/_entry-exit-blur.css +0 -16
- package/app/assets/styles/setup/utility-classes/animations/_entry-slide-in.css +0 -15
- package/app/assets/styles/setup/utility-classes/animations/_entry-zoom-reveal.css +0 -15
- package/app/assets/styles/setup/utility-classes/animations/index.css +0 -4
- package/app/assets/styles/setup/utility-classes/index.css +0 -4
- package/app/assets/styles/setup/variables/colors/_blue.css +0 -15
- package/app/assets/styles/setup/variables/colors/_gray.css +0 -16
- package/app/assets/styles/setup/variables/colors/_green.css +0 -15
- package/app/assets/styles/setup/variables/colors/_orange.css +0 -15
- package/app/assets/styles/setup/variables/colors/_red.css +0 -15
- package/app/assets/styles/setup/variables/colors/_yellow.css +0 -15
- package/app/assets/styles/setup/variables/colors/index.css +0 -6
- package/app/assets/styles/setup/variables/index.css +0 -1
|
@@ -1,217 +0,0 @@
|
|
|
1
|
-
.heading-1 {
|
|
2
|
-
font-size: var(--step-8);
|
|
3
|
-
font-weight: bold;
|
|
4
|
-
line-height: 1.3;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.heading-2 {
|
|
8
|
-
font-size: var(--step-7);
|
|
9
|
-
/* font-weight: bold; */
|
|
10
|
-
font-variation-settings: 'wght' 500;
|
|
11
|
-
line-height: 1.3;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.heading-3 {
|
|
15
|
-
font-size: var(--step-6);
|
|
16
|
-
font-weight: bold;
|
|
17
|
-
line-height: 1.3;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.heading-4 {
|
|
21
|
-
font-size: var(--step-5);
|
|
22
|
-
font-weight: bold;
|
|
23
|
-
line-height: 1.3;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.heading-5 {
|
|
27
|
-
font-size: var(--step-4);
|
|
28
|
-
font-weight: bold;
|
|
29
|
-
line-height: 1.3;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.heading-6 {
|
|
33
|
-
font-size: var(--step-3);
|
|
34
|
-
font-weight: bold;
|
|
35
|
-
line-height: 1.3;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
/* Body text */
|
|
39
|
-
|
|
40
|
-
.body-large {
|
|
41
|
-
font-size: var(--step-6);
|
|
42
|
-
font-weight: normal;
|
|
43
|
-
line-height: 1.5;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.body-medium {
|
|
47
|
-
font-size: var(--step-5);
|
|
48
|
-
font-weight: normal;
|
|
49
|
-
line-height: 1.5;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.body-normal {
|
|
53
|
-
font-size: var(--step-4);
|
|
54
|
-
font-weight: normal;
|
|
55
|
-
line-height: 1.5;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.body-small {
|
|
59
|
-
font-size: var(--step--0);
|
|
60
|
-
font-weight: normal;
|
|
61
|
-
line-height: 1.5;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.body-xsmall {
|
|
65
|
-
font-size: var(--step-2);
|
|
66
|
-
font-weight: normal;
|
|
67
|
-
line-height: 1.5;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.body-large-semibold {
|
|
71
|
-
font-size: var(--step-6);
|
|
72
|
-
font-weight: 500;
|
|
73
|
-
line-height: 1.5;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.body-medium-semibold {
|
|
77
|
-
font-size: var(--step-5);
|
|
78
|
-
font-weight: 500;
|
|
79
|
-
line-height: 1.5;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.body-normal-semibold {
|
|
83
|
-
font-size: var(--step-4);
|
|
84
|
-
font-weight: 500;
|
|
85
|
-
line-height: 1.5;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.body-small-semibold {
|
|
89
|
-
font-size: var(--step-3);
|
|
90
|
-
font-weight: 500;
|
|
91
|
-
line-height: 1.5;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.body-xsmall-semibold {
|
|
95
|
-
font-size: var(--step-2);
|
|
96
|
-
font-weight: 500;
|
|
97
|
-
line-height: 1.5;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.body-large-bold {
|
|
101
|
-
font-size: var(--step-6);
|
|
102
|
-
font-weight: bold;
|
|
103
|
-
line-height: 1.5;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.body-medium-bold {
|
|
107
|
-
font-size: var(--step-5);
|
|
108
|
-
font-weight: bold;
|
|
109
|
-
line-height: 1.5;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.body-normal-bold {
|
|
113
|
-
font-size: var(--step-4);
|
|
114
|
-
font-weight: bold;
|
|
115
|
-
line-height: 1.5;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.body-small-bold {
|
|
119
|
-
font-size: var(--step-3);
|
|
120
|
-
font-weight: bold;
|
|
121
|
-
line-height: 1.5;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.body-xsmall-bold {
|
|
125
|
-
font-size: var(--step-2);
|
|
126
|
-
font-weight: bold;
|
|
127
|
-
line-height: 1.5;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
/* Links */
|
|
131
|
-
|
|
132
|
-
.link-large {
|
|
133
|
-
color: var(--theme-link-default);
|
|
134
|
-
font-size: var(--step-6);
|
|
135
|
-
font-weight: 600;
|
|
136
|
-
line-height: 1.5;
|
|
137
|
-
text-decoration: underline;
|
|
138
|
-
|
|
139
|
-
&:visited {
|
|
140
|
-
color: var(--theme-link-default);
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.link-medium {
|
|
145
|
-
color: var(--theme-link-default);
|
|
146
|
-
font-size: var(--step-5);
|
|
147
|
-
font-weight: 600;
|
|
148
|
-
line-height: 1.5;
|
|
149
|
-
text-decoration: underline;
|
|
150
|
-
|
|
151
|
-
&:visited {
|
|
152
|
-
color: var(--theme-link-default);
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.link-normal {
|
|
157
|
-
color: var(--theme-link-default);
|
|
158
|
-
font-size: var(--step-4);
|
|
159
|
-
font-weight: 600;
|
|
160
|
-
line-height: 1.5;
|
|
161
|
-
text-decoration: underline;
|
|
162
|
-
|
|
163
|
-
&:visited,
|
|
164
|
-
&:active {
|
|
165
|
-
color: var(--theme-link-default);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.link-small {
|
|
170
|
-
color: var(--theme-link-default);
|
|
171
|
-
font-size: var(--step-3);
|
|
172
|
-
font-weight: 600;
|
|
173
|
-
line-height: 1.5;
|
|
174
|
-
text-decoration: underline;
|
|
175
|
-
|
|
176
|
-
&:visited {
|
|
177
|
-
color: var(--theme-link-default);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.link-xsmall {
|
|
182
|
-
color: var(--theme-link-default);
|
|
183
|
-
font-size: var(--step-2);
|
|
184
|
-
font-weight: 600;
|
|
185
|
-
line-height: 1.5;
|
|
186
|
-
text-decoration: underline;
|
|
187
|
-
|
|
188
|
-
&:visited {
|
|
189
|
-
color: var(--theme-link-default);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
.italic {
|
|
194
|
-
font-style: italic;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
.wght-300 {
|
|
198
|
-
font-variation-settings: 'wght' 300;
|
|
199
|
-
}
|
|
200
|
-
.wght-400 {
|
|
201
|
-
font-variation-settings: 'wght' 400;
|
|
202
|
-
}
|
|
203
|
-
.wght-500 {
|
|
204
|
-
font-variation-settings: 'wght' 500;
|
|
205
|
-
}
|
|
206
|
-
.wght-600 {
|
|
207
|
-
font-variation-settings: 'wght' 600;
|
|
208
|
-
}
|
|
209
|
-
.wght-700 {
|
|
210
|
-
font-variation-settings: 'wght' 700;
|
|
211
|
-
}
|
|
212
|
-
.wght-800 {
|
|
213
|
-
font-variation-settings: 'wght' 800;
|
|
214
|
-
}
|
|
215
|
-
.wght-900 {
|
|
216
|
-
font-variation-settings: 'wght' 900;
|
|
217
|
-
}
|
package/app/assets/styles/setup/typography/utility-classes/_generic-font-variation-settings.css
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/* Using the font-variation-settings property. */
|
|
2
|
-
|
|
3
|
-
.fvs-wght-100 {
|
|
4
|
-
font-variation-settings: 'wght' 100;
|
|
5
|
-
}
|
|
6
|
-
.fvs-wght-200 {
|
|
7
|
-
font-variation-settings: 'wght' 200;
|
|
8
|
-
}
|
|
9
|
-
.fvs-wght-300 {
|
|
10
|
-
font-variation-settings: 'wght' 300;
|
|
11
|
-
}
|
|
12
|
-
.fvs-wght-400 {
|
|
13
|
-
font-variation-settings: 'wght' 400;
|
|
14
|
-
}
|
|
15
|
-
.fvs-wght-500 {
|
|
16
|
-
font-variation-settings: 'wght' 500;
|
|
17
|
-
}
|
|
18
|
-
.fvs-wght-600 {
|
|
19
|
-
font-variation-settings: 'wght' 600;
|
|
20
|
-
}
|
|
21
|
-
.fvs-wght-700 {
|
|
22
|
-
font-variation-settings: 'wght' 700;
|
|
23
|
-
}
|
|
24
|
-
.fvs-wght-800 {
|
|
25
|
-
font-variation-settings: 'wght' 800;
|
|
26
|
-
}
|
|
27
|
-
.fvs-wght-900 {
|
|
28
|
-
font-variation-settings: 'wght' 900;
|
|
29
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
/* By numeric step */
|
|
2
|
-
.wght-100 {
|
|
3
|
-
font-weight: 100;
|
|
4
|
-
}
|
|
5
|
-
.wght-200 {
|
|
6
|
-
font-weight: 200;
|
|
7
|
-
}
|
|
8
|
-
.wght-300 {
|
|
9
|
-
font-weight: 300;
|
|
10
|
-
}
|
|
11
|
-
.wght-400 {
|
|
12
|
-
font-weight: 400;
|
|
13
|
-
}
|
|
14
|
-
.wght-500 {
|
|
15
|
-
font-weight: 500;
|
|
16
|
-
}
|
|
17
|
-
.wght-600 {
|
|
18
|
-
font-weight: 600;
|
|
19
|
-
}
|
|
20
|
-
.wght-700 {
|
|
21
|
-
font-weight: 700;
|
|
22
|
-
}
|
|
23
|
-
.wght-800 {
|
|
24
|
-
font-weight: 800;
|
|
25
|
-
}
|
|
26
|
-
.wght-900 {
|
|
27
|
-
font-weight: 900;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/* By named weight */
|
|
31
|
-
.light {
|
|
32
|
-
font-weight: light;
|
|
33
|
-
}
|
|
34
|
-
.normal {
|
|
35
|
-
font-weight: normal;
|
|
36
|
-
}
|
|
37
|
-
.bold {
|
|
38
|
-
font-weight: bold;
|
|
39
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--theme-link-default: light-dark(var(--blue-12), var(--blue-4));
|
|
3
|
-
|
|
4
|
-
--page-bg: light-dark(var(--gray-0), var(--gray-9));
|
|
5
|
-
|
|
6
|
-
--surface-subtle: light-dark(var(--gray-1), var(--gray-8));
|
|
7
|
-
|
|
8
|
-
--grayscale-text-title: light-dark(var(--gray-12), var(--gray-2));
|
|
9
|
-
--grayscale-text-body: light-dark(var(--gray-12), var(--gray-3));
|
|
10
|
-
--grayscale-text-subtitle: light-dark(var(--gray-12), var(--gray-2));
|
|
11
|
-
--grayscale-text-caption: light-dark(var(--gray-12), var(--gray-2));
|
|
12
|
-
--grayscale-text-negative: light-dark(var(--gray-12), var(--gray-2));
|
|
13
|
-
--grayscale-text-disabled: light-dark(var(--gray-12), var(--gray-2));
|
|
14
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--step-10: clamp(4.0311rem, 3.36rem + 3.3555vw, 5.9605rem); /* 10 */
|
|
3
|
-
--step-9: clamp(3.3592rem, 2.8691rem + 2.4507vw, 4.7684rem); /* 9 */
|
|
4
|
-
--step-8: clamp(2.7994rem, 2.4462rem + 1.7658vw, 3.8147rem); /* 8 */
|
|
5
|
-
--step-7: clamp(2.3328rem, 2.0827rem + 1.2504vw, 3.0518rem); /* 7 */
|
|
6
|
-
--step-6: clamp(1.944rem, 1.771rem + 0.8651vw, 2.4414rem); /* 6 */
|
|
7
|
-
--step-5: clamp(1.62rem, 1.5041rem + 0.5793vw, 1.9531rem); /* 5 */
|
|
8
|
-
--step-4: clamp(1.35rem, 1.2761rem + 0.3696vw, 1.5625rem); /* 4 */
|
|
9
|
-
--step-3: clamp(1.125rem, 1.0815rem + 0.2174vw, 1.25rem); /* 3 */
|
|
10
|
-
--step-2: clamp(0.9375rem, 0.9158rem + 0.1087vw, 1rem); /* 2 */
|
|
11
|
-
--step-1: clamp(0.7813rem, 0.7747rem + 0.0326vw, 0.8rem); /* 1 */
|
|
12
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/* @link https://utopia.fyi/clamp/calculator?a=360,1240,1—2|2—4|4—8|6—12|8—16|10—20|12—24|16—32|20—40 */
|
|
2
|
-
|
|
3
|
-
:root {
|
|
4
|
-
--fluid-1-2: clamp(0.0625rem, 0.0369rem + 0.1136vw, 0.125rem);
|
|
5
|
-
--fluid-2-4: clamp(0.125rem, 0.0739rem + 0.2273vw, 0.25rem);
|
|
6
|
-
--fluid-4-8: clamp(0.25rem, 0.1477rem + 0.4545vw, 0.5rem);
|
|
7
|
-
--fluid-6-12: clamp(0.375rem, 0.2216rem + 0.6818vw, 0.75rem);
|
|
8
|
-
--fluid-8-16: clamp(0.5rem, 0.2955rem + 0.9091vw, 1rem);
|
|
9
|
-
--fluid-10-20: clamp(0.625rem, 0.3693rem + 1.1364vw, 1.25rem);
|
|
10
|
-
--fluid-12-24: clamp(0.75rem, 0.4432rem + 1.3636vw, 1.5rem);
|
|
11
|
-
--fluid-16-32: clamp(1rem, 0.5909rem + 1.8182vw, 2rem);
|
|
12
|
-
--fluid-20-40: clamp(1.25rem, 0.7386rem + 2.2727vw, 2.5rem);
|
|
13
|
-
}
|
|
@@ -1,334 +0,0 @@
|
|
|
1
|
-
/* Margin */
|
|
2
|
-
.mi-auto {
|
|
3
|
-
margin-inline: auto;
|
|
4
|
-
}
|
|
5
|
-
.mis-auto {
|
|
6
|
-
margin-inline-start: auto;
|
|
7
|
-
}
|
|
8
|
-
.mie-auto {
|
|
9
|
-
margin-inline-end: auto;
|
|
10
|
-
}
|
|
11
|
-
.mb-auto {
|
|
12
|
-
margin-block: auto;
|
|
13
|
-
}
|
|
14
|
-
.mbs-auto {
|
|
15
|
-
margin-block-start: auto;
|
|
16
|
-
}
|
|
17
|
-
.mbe-auto {
|
|
18
|
-
margin-block-end: auto;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.mb-0 {
|
|
22
|
-
margin-block: 0;
|
|
23
|
-
}
|
|
24
|
-
.mi-0 {
|
|
25
|
-
margin-inline: 0;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.m-0 {
|
|
29
|
-
margin: 0;
|
|
30
|
-
}
|
|
31
|
-
.mbs-0 {
|
|
32
|
-
margin-block-start: 0;
|
|
33
|
-
}
|
|
34
|
-
.mbe-0 {
|
|
35
|
-
margin-block-end: 0;
|
|
36
|
-
}
|
|
37
|
-
.mis-0 {
|
|
38
|
-
margin-inline-start: 0;
|
|
39
|
-
}
|
|
40
|
-
.mie-0 {
|
|
41
|
-
margin-inline-end: 0;
|
|
42
|
-
}
|
|
43
|
-
.mi-0 {
|
|
44
|
-
margin-inline: 0;
|
|
45
|
-
}
|
|
46
|
-
.mb-0 {
|
|
47
|
-
margin-block: 0;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.m-1 {
|
|
51
|
-
margin: 0.1rem;
|
|
52
|
-
}
|
|
53
|
-
.mbs-1 {
|
|
54
|
-
margin-block-start: 0.1rem;
|
|
55
|
-
}
|
|
56
|
-
.mbe-1 {
|
|
57
|
-
margin-block-end: 0.1rem;
|
|
58
|
-
}
|
|
59
|
-
.mis-1 {
|
|
60
|
-
margin-inline-start: 0.1rem;
|
|
61
|
-
}
|
|
62
|
-
.mie-1 {
|
|
63
|
-
margin-inline-end: 0.1rem;
|
|
64
|
-
}
|
|
65
|
-
.mi-1 {
|
|
66
|
-
margin-inline: 0.1rem;
|
|
67
|
-
}
|
|
68
|
-
.mb-1 {
|
|
69
|
-
margin-block: 0.1rem;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.m-2 {
|
|
73
|
-
margin: 0.2rem;
|
|
74
|
-
}
|
|
75
|
-
.mbs-2 {
|
|
76
|
-
margin-block-start: 0.2rem;
|
|
77
|
-
}
|
|
78
|
-
.mbe-2 {
|
|
79
|
-
margin-block-end: 0.2rem;
|
|
80
|
-
}
|
|
81
|
-
.mis-2 {
|
|
82
|
-
margin-inline-start: 0.2rem;
|
|
83
|
-
}
|
|
84
|
-
.mie-2 {
|
|
85
|
-
margin-inline-end: 0.2rem;
|
|
86
|
-
}
|
|
87
|
-
.mi-2 {
|
|
88
|
-
margin-inline: 0.2rem;
|
|
89
|
-
}
|
|
90
|
-
.mb-2 {
|
|
91
|
-
margin-block: 0.2rem;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.m-4 {
|
|
95
|
-
margin: 0.4rem;
|
|
96
|
-
}
|
|
97
|
-
.mbs-4 {
|
|
98
|
-
margin-block-start: 0.4rem;
|
|
99
|
-
}
|
|
100
|
-
.mbe-4 {
|
|
101
|
-
margin-block-end: 0.4rem;
|
|
102
|
-
}
|
|
103
|
-
.mis-4 {
|
|
104
|
-
margin-inline-start: 0.4rem;
|
|
105
|
-
}
|
|
106
|
-
.mie-4 {
|
|
107
|
-
margin-inline-end: 0.4rem;
|
|
108
|
-
}
|
|
109
|
-
.mi-4 {
|
|
110
|
-
margin-inline: 0.4rem;
|
|
111
|
-
}
|
|
112
|
-
.mb-4 {
|
|
113
|
-
margin-block: 0.4rem;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.m-6 {
|
|
117
|
-
margin: 0.6rem;
|
|
118
|
-
}
|
|
119
|
-
.mbs-6 {
|
|
120
|
-
margin-block-start: 0.6rem;
|
|
121
|
-
}
|
|
122
|
-
.mbe-6 {
|
|
123
|
-
margin-block-end: 0.6rem;
|
|
124
|
-
}
|
|
125
|
-
.mis-6 {
|
|
126
|
-
margin-inline-start: 0.6rem;
|
|
127
|
-
}
|
|
128
|
-
.mie-6 {
|
|
129
|
-
margin-inline-end: 0.6rem;
|
|
130
|
-
}
|
|
131
|
-
.mi-6 {
|
|
132
|
-
margin-inline: 0.6rem;
|
|
133
|
-
}
|
|
134
|
-
.mb-6 {
|
|
135
|
-
margin-block: 0.6rem;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.m-8 {
|
|
139
|
-
margin: 0.8rem;
|
|
140
|
-
}
|
|
141
|
-
.mbs-8 {
|
|
142
|
-
margin-block-start: 0.8rem;
|
|
143
|
-
}
|
|
144
|
-
.mbe-8 {
|
|
145
|
-
margin-block-end: 0.8rem;
|
|
146
|
-
}
|
|
147
|
-
.mis-8 {
|
|
148
|
-
margin-inline-start: 0.8rem;
|
|
149
|
-
}
|
|
150
|
-
.mie-8 {
|
|
151
|
-
margin-inline-end: 0.8rem;
|
|
152
|
-
}
|
|
153
|
-
.mi-8 {
|
|
154
|
-
margin-inline: 0.8rem;
|
|
155
|
-
}
|
|
156
|
-
.mb-8 {
|
|
157
|
-
margin-block: 0.8rem;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.m-10 {
|
|
161
|
-
margin: 1rem;
|
|
162
|
-
}
|
|
163
|
-
.mbs-10 {
|
|
164
|
-
margin-block-start: 1rem;
|
|
165
|
-
}
|
|
166
|
-
.mbe-10 {
|
|
167
|
-
margin-block-end: 1rem;
|
|
168
|
-
}
|
|
169
|
-
.mis-10 {
|
|
170
|
-
margin-inline-start: 1rem;
|
|
171
|
-
}
|
|
172
|
-
.mie-10 {
|
|
173
|
-
margin-inline-end: 1rem;
|
|
174
|
-
}
|
|
175
|
-
.mi-10 {
|
|
176
|
-
margin-inline: 1rem;
|
|
177
|
-
}
|
|
178
|
-
.mb-10 {
|
|
179
|
-
margin-block: 1rem;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.m-12 {
|
|
183
|
-
margin: 1.2rem;
|
|
184
|
-
}
|
|
185
|
-
.mbs-12 {
|
|
186
|
-
margin-block-start: 1.2rem;
|
|
187
|
-
}
|
|
188
|
-
.mbe-12 {
|
|
189
|
-
margin-block-end: 1.2rem;
|
|
190
|
-
}
|
|
191
|
-
.mis-12 {
|
|
192
|
-
margin-inline-start: 1.2rem;
|
|
193
|
-
}
|
|
194
|
-
.mie-12 {
|
|
195
|
-
margin-inline-end: 1.2rem;
|
|
196
|
-
}
|
|
197
|
-
.mi-12 {
|
|
198
|
-
margin-inline: 1.2rem;
|
|
199
|
-
}
|
|
200
|
-
.mb-12 {
|
|
201
|
-
margin-block: 1.2rem;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.m-18 {
|
|
205
|
-
margin: 1.8rem;
|
|
206
|
-
}
|
|
207
|
-
.mbs-18 {
|
|
208
|
-
margin-block-start: 1.8rem;
|
|
209
|
-
}
|
|
210
|
-
.mbe-18 {
|
|
211
|
-
margin-block-end: 1.8rem;
|
|
212
|
-
}
|
|
213
|
-
.mis-18 {
|
|
214
|
-
margin-inline-start: 1.8rem;
|
|
215
|
-
}
|
|
216
|
-
.mie-18 {
|
|
217
|
-
margin-inline-end: 1.8rem;
|
|
218
|
-
}
|
|
219
|
-
.mi-18 {
|
|
220
|
-
margin-inline: 1.8rem;
|
|
221
|
-
}
|
|
222
|
-
.mb-18 {
|
|
223
|
-
margin-block: 1.8rem;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
.m-20 {
|
|
227
|
-
margin: 2rem;
|
|
228
|
-
}
|
|
229
|
-
.mbs-20 {
|
|
230
|
-
margin-block-start: 2rem;
|
|
231
|
-
}
|
|
232
|
-
.mbe-20 {
|
|
233
|
-
margin-block-end: 2rem;
|
|
234
|
-
}
|
|
235
|
-
.mis-20 {
|
|
236
|
-
margin-inline-start: 2rem;
|
|
237
|
-
}
|
|
238
|
-
.mie-20 {
|
|
239
|
-
margin-inline-end: 2rem;
|
|
240
|
-
}
|
|
241
|
-
.mi-20 {
|
|
242
|
-
margin-inline: 2rem;
|
|
243
|
-
}
|
|
244
|
-
.mb-20 {
|
|
245
|
-
margin-block: 2rem;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.m-24 {
|
|
249
|
-
margin: 2.4rem;
|
|
250
|
-
}
|
|
251
|
-
.mbs-24 {
|
|
252
|
-
margin-block-start: 2.4rem;
|
|
253
|
-
}
|
|
254
|
-
.mbe-24 {
|
|
255
|
-
margin-block-end: 2.4rem;
|
|
256
|
-
}
|
|
257
|
-
.mis-24 {
|
|
258
|
-
margin-inline-start: 2.4rem;
|
|
259
|
-
}
|
|
260
|
-
.mie-24 {
|
|
261
|
-
margin-inline-end: 2.4rem;
|
|
262
|
-
}
|
|
263
|
-
.mi-24 {
|
|
264
|
-
margin-inline: 2.4rem;
|
|
265
|
-
}
|
|
266
|
-
.mb-24 {
|
|
267
|
-
margin-block: 2.4rem;
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
.m-32 {
|
|
271
|
-
margin: 3.2rem;
|
|
272
|
-
}
|
|
273
|
-
.mbs-32 {
|
|
274
|
-
margin-block-start: 3.2rem;
|
|
275
|
-
}
|
|
276
|
-
.mbe-32 {
|
|
277
|
-
margin-block-end: 3.2rem;
|
|
278
|
-
}
|
|
279
|
-
.mis-32 {
|
|
280
|
-
margin-inline-start: 3.2rem;
|
|
281
|
-
}
|
|
282
|
-
.mie-32 {
|
|
283
|
-
margin-inline-end: 3.2rem;
|
|
284
|
-
}
|
|
285
|
-
.mi-32 {
|
|
286
|
-
margin-inline: 3.2rem;
|
|
287
|
-
}
|
|
288
|
-
.mb-32 {
|
|
289
|
-
margin-block: 3.2rem;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
.m-40 {
|
|
293
|
-
margin: 4rem;
|
|
294
|
-
}
|
|
295
|
-
.mbs-40 {
|
|
296
|
-
margin-block-start: 4rem;
|
|
297
|
-
}
|
|
298
|
-
.mbe-40 {
|
|
299
|
-
margin-block-end: 4rem;
|
|
300
|
-
}
|
|
301
|
-
.mis-40 {
|
|
302
|
-
margin-inline-start: 4rem;
|
|
303
|
-
}
|
|
304
|
-
.mie-40 {
|
|
305
|
-
margin-inline-end: 4rem;
|
|
306
|
-
}
|
|
307
|
-
.mi-40 {
|
|
308
|
-
margin-inline: 4rem;
|
|
309
|
-
}
|
|
310
|
-
.mb-40 {
|
|
311
|
-
margin-block: 4rem;
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
.m-60 {
|
|
315
|
-
margin: 6rem;
|
|
316
|
-
}
|
|
317
|
-
.mbs-60 {
|
|
318
|
-
margin-block-start: 6rem;
|
|
319
|
-
}
|
|
320
|
-
.mbe-60 {
|
|
321
|
-
margin-block-end: 6rem;
|
|
322
|
-
}
|
|
323
|
-
.mis-60 {
|
|
324
|
-
margin-inline-start: 6rem;
|
|
325
|
-
}
|
|
326
|
-
.mie-60 {
|
|
327
|
-
margin-inline-end: 6rem;
|
|
328
|
-
}
|
|
329
|
-
.mi-60 {
|
|
330
|
-
margin-inline: 6rem;
|
|
331
|
-
}
|
|
332
|
-
.mb-60 {
|
|
333
|
-
margin-block: 6rem;
|
|
334
|
-
}
|