beercss 2.1.3 → 2.2.2
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/README.md +20 -8
- package/dist/cdn/beer.min.css +1 -1
- package/dist/cdn/beer.min.js +1 -1
- package/package.json +2 -2
- package/src/cdn/beer.css +18 -17
- package/src/cdn/beer.ts +8 -3
- package/src/cdn/elements/badges.css +5 -15
- package/src/cdn/elements/buttons.css +18 -87
- package/src/cdn/elements/cards.css +5 -32
- package/src/cdn/elements/chips.css +9 -31
- package/src/cdn/elements/containers.css +20 -22
- package/src/cdn/elements/dropdowns.css +18 -41
- package/src/cdn/elements/expansions.css +0 -15
- package/src/cdn/elements/fields.css +41 -56
- package/src/cdn/elements/grids.css +170 -0
- package/src/cdn/elements/icons.css +18 -18
- package/src/cdn/elements/layouts.css +31 -23
- package/src/cdn/elements/loaders.css +21 -28
- package/src/cdn/elements/media.css +76 -109
- package/src/cdn/elements/modals.css +30 -54
- package/src/cdn/elements/navigations.css +74 -72
- package/src/cdn/elements/overlays.css +0 -1
- package/src/cdn/elements/progress.css +4 -3
- package/src/cdn/elements/selections.css +46 -59
- package/src/cdn/elements/tables.css +2 -19
- package/src/cdn/elements/tabs.css +8 -10
- package/src/cdn/elements/toasts.css +4 -9
- package/src/cdn/elements/tooltips.css +0 -42
- package/src/cdn/helpers/alignments.css +12 -28
- package/src/cdn/helpers/dividers.css +8 -22
- package/src/cdn/helpers/elevates.css +16 -0
- package/src/cdn/helpers/forms.css +33 -62
- package/src/cdn/helpers/margins.css +4 -0
- package/src/cdn/helpers/paddings.css +5 -1
- package/src/cdn/helpers/positions.css +2 -2
- package/src/cdn/helpers/reset.css +4 -3
- package/src/cdn/helpers/responsive.css +3 -18
- package/src/cdn/helpers/scrolls.css +1 -1
- package/src/cdn/helpers/shadows.css +4 -25
- package/src/cdn/helpers/sizes.css +4 -6
- package/src/cdn/helpers/spaces.css +8 -7
- package/src/cdn/helpers/theme.css +7 -0
- package/src/cdn/helpers/typography.css +13 -9
- package/src/cdn/helpers/waves.css +5 -3
- package/src/cdn/settings/dark.css +4 -3
- package/src/cdn/settings/light.css +4 -3
- package/src/cdn/settings/urls.css +1 -1
- package/src/cdn/elements/rows.css +0 -251
|
@@ -1,33 +1,8 @@
|
|
|
1
|
-
img,
|
|
2
|
-
video {
|
|
3
|
-
border-radius: inherit;
|
|
4
|
-
margin: 0 auto;
|
|
5
|
-
max-width: none !important;
|
|
6
|
-
max-height: none !important;
|
|
7
|
-
min-width: auto !important;
|
|
8
|
-
min-height: auto !important;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
img.right,
|
|
12
|
-
video.right,
|
|
13
|
-
i.right {
|
|
14
|
-
position: absolute;
|
|
15
|
-
right: 0;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
img.left,
|
|
19
|
-
video.left,
|
|
20
|
-
i.left {
|
|
21
|
-
position: absolute;
|
|
22
|
-
left: 0;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
1
|
img.small,
|
|
26
2
|
img.medium,
|
|
27
3
|
img.large,
|
|
28
4
|
img.tiny,
|
|
29
5
|
img.extra,
|
|
30
|
-
img.border,
|
|
31
6
|
img.round,
|
|
32
7
|
img.circle,
|
|
33
8
|
img.responsive,
|
|
@@ -36,129 +11,120 @@ video.medium,
|
|
|
36
11
|
video.large,
|
|
37
12
|
video.tiny,
|
|
38
13
|
video.extra,
|
|
39
|
-
video.border,
|
|
40
14
|
video.round,
|
|
41
15
|
video.circle,
|
|
42
16
|
video.responsive {
|
|
43
17
|
object-fit: cover;
|
|
44
18
|
object-position: center;
|
|
45
19
|
transition: var(--speed3) transform, var(--speed3) border-radius, var(--speed3) padding;
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
img.border,
|
|
49
|
-
video.border {
|
|
50
|
-
border: 1rem solid var(--outline);
|
|
20
|
+
height: 48rem;
|
|
21
|
+
width: 48rem;
|
|
51
22
|
}
|
|
52
23
|
|
|
53
24
|
img.round,
|
|
54
25
|
video.round {
|
|
55
|
-
border-radius: 8rem
|
|
56
|
-
height: 48rem !important;
|
|
57
|
-
width: 48rem !important;
|
|
26
|
+
border-radius: 8rem;
|
|
58
27
|
}
|
|
59
28
|
|
|
60
29
|
img.circle,
|
|
61
30
|
video.circle {
|
|
62
|
-
border-radius: 50
|
|
63
|
-
height: 48rem !important;
|
|
64
|
-
width: 48rem !important;
|
|
31
|
+
border-radius: 50%;
|
|
65
32
|
}
|
|
66
33
|
|
|
67
34
|
img.tiny,
|
|
68
35
|
video.tiny {
|
|
69
|
-
height: 32rem
|
|
70
|
-
width: 32rem
|
|
36
|
+
height: 32rem;
|
|
37
|
+
width: 32rem;
|
|
71
38
|
}
|
|
72
39
|
|
|
73
40
|
img.small,
|
|
74
41
|
video.small {
|
|
75
|
-
height: 40rem
|
|
76
|
-
width: 40rem
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
img.medium,
|
|
80
|
-
video.medium {
|
|
81
|
-
height: 48rem !important;
|
|
82
|
-
width: 48rem !important;
|
|
42
|
+
height: 40rem;
|
|
43
|
+
width: 40rem;
|
|
83
44
|
}
|
|
84
45
|
|
|
85
46
|
img.large,
|
|
86
47
|
video.large {
|
|
87
|
-
height: 56rem
|
|
88
|
-
width: 56rem
|
|
48
|
+
height: 56rem;
|
|
49
|
+
width: 56rem;
|
|
89
50
|
}
|
|
90
51
|
|
|
91
52
|
img.extra,
|
|
92
53
|
video.extra {
|
|
93
|
-
height: 64rem
|
|
94
|
-
width: 64rem
|
|
54
|
+
height: 64rem;
|
|
55
|
+
width: 64rem;
|
|
95
56
|
}
|
|
96
57
|
|
|
97
58
|
img.responsive,
|
|
98
59
|
video.responsive {
|
|
99
|
-
width: 100
|
|
100
|
-
height: 100
|
|
60
|
+
width: 100%;
|
|
61
|
+
height: 100%;
|
|
62
|
+
margin: 0 auto;
|
|
101
63
|
}
|
|
102
64
|
|
|
103
65
|
button > img.responsive,
|
|
104
66
|
.button > img.responsive,
|
|
105
67
|
.chip > img.responsive {
|
|
106
|
-
width: 40rem
|
|
107
|
-
|
|
108
|
-
|
|
68
|
+
width: 40rem;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
button:not(.transparent) > img.responsive,
|
|
72
|
+
.button:not(.transparent) > img.responsive,
|
|
73
|
+
.chip:not(.transparent) > img.responsive {
|
|
74
|
+
border: 4rem solid transparent;
|
|
109
75
|
}
|
|
110
76
|
|
|
111
77
|
button.small > img.responsive,
|
|
112
78
|
.button.small > img.responsive,
|
|
113
79
|
.chip.small > img.responsive {
|
|
114
|
-
width: 32rem
|
|
80
|
+
width: 32rem;
|
|
115
81
|
}
|
|
116
82
|
|
|
117
83
|
button.large > img.responsive,
|
|
118
84
|
.button.large > img.responsive,
|
|
119
85
|
.chip.large > img.responsive {
|
|
120
|
-
width: 48rem
|
|
86
|
+
width: 48rem;
|
|
121
87
|
}
|
|
122
88
|
|
|
123
89
|
button.extra > img.responsive,
|
|
124
90
|
.button.extra > img.responsive,
|
|
125
91
|
.chip.extra > img.responsive {
|
|
126
|
-
width: 56rem
|
|
92
|
+
width: 56rem;
|
|
127
93
|
}
|
|
128
94
|
|
|
129
95
|
img.responsive.tiny,
|
|
130
96
|
video.responsive.tiny {
|
|
131
|
-
width: 100
|
|
132
|
-
height: 64rem
|
|
97
|
+
width: 100%;
|
|
98
|
+
height: 64rem;
|
|
133
99
|
}
|
|
134
100
|
|
|
135
101
|
img.responsive.small,
|
|
136
102
|
video.responsive.small {
|
|
137
|
-
width: 100
|
|
138
|
-
height: 128rem
|
|
103
|
+
width: 100%;
|
|
104
|
+
height: 128rem;
|
|
139
105
|
}
|
|
140
106
|
|
|
141
107
|
img.responsive.medium,
|
|
142
108
|
video.responsive.medium {
|
|
143
|
-
width: 100
|
|
144
|
-
height: 192rem
|
|
109
|
+
width: 100%;
|
|
110
|
+
height: 192rem;
|
|
145
111
|
}
|
|
146
112
|
|
|
147
113
|
img.responsive.large,
|
|
148
114
|
video.responsive.large {
|
|
149
|
-
width: 100
|
|
150
|
-
height: 256rem
|
|
115
|
+
width: 100%;
|
|
116
|
+
height: 256rem;
|
|
151
117
|
}
|
|
152
118
|
|
|
153
119
|
img.responsive.extra,
|
|
154
120
|
video.responsive.extra {
|
|
155
|
-
width: 100
|
|
156
|
-
height: 320rem
|
|
121
|
+
width: 100%;
|
|
122
|
+
height: 320rem;
|
|
157
123
|
}
|
|
158
124
|
|
|
159
125
|
img.responsive.round,
|
|
160
126
|
video.responsive.round {
|
|
161
|
-
border-radius:
|
|
127
|
+
border-radius: 32rem;
|
|
162
128
|
}
|
|
163
129
|
|
|
164
130
|
img.empty-state,
|
|
@@ -171,60 +137,61 @@ button > img:not(.responsive, .tiny, .small, .medium, .large, .extra),
|
|
|
171
137
|
.button > img:not(.responsive, .tiny, .small, .medium, .large, .extra),
|
|
172
138
|
.chip > img:not(.responsive, .tiny, .small, .medium, .large, .extra),
|
|
173
139
|
.field > img:not(.responsive, .tiny, .small, .medium, .large, .extra),
|
|
174
|
-
.tabs
|
|
140
|
+
.tabs img:not(.responsive, .tiny, .small, .medium, .large, .extra),
|
|
175
141
|
td img:not(.responsive, .tiny, .small, .medium, .large, .extra) {
|
|
176
|
-
min-width: 24rem
|
|
177
|
-
max-width: 24rem
|
|
178
|
-
min-height: 24rem
|
|
179
|
-
max-height: 24rem
|
|
142
|
+
min-width: 24rem;
|
|
143
|
+
max-width: 24rem;
|
|
144
|
+
min-height: 24rem;
|
|
145
|
+
max-height: 24rem;
|
|
180
146
|
}
|
|
181
147
|
|
|
182
|
-
.button.
|
|
183
|
-
button.
|
|
184
|
-
|
|
185
|
-
button.circle > img,
|
|
186
|
-
.
|
|
187
|
-
|
|
188
|
-
margin: 0
|
|
189
|
-
padding: 0!important;
|
|
148
|
+
.button:not(.circle, .square) > i,
|
|
149
|
+
.button:not(.circle, .square) > img,
|
|
150
|
+
button:not(.circle, .square) > i,
|
|
151
|
+
button:not(.circle, .square) > img,
|
|
152
|
+
.chip:not(.circle, .square) > i,
|
|
153
|
+
.chip:not(.circle, .square) > img {
|
|
154
|
+
margin: 0 0 0 -8rem;
|
|
190
155
|
}
|
|
191
156
|
|
|
192
|
-
.button >
|
|
193
|
-
button > img
|
|
194
|
-
.
|
|
195
|
-
|
|
157
|
+
.button:not(.circle, .square) > span + i,
|
|
158
|
+
.button:not(.circle, .square) > span + img,
|
|
159
|
+
button:not(.circle, .square) > span + i,
|
|
160
|
+
button:not(.circle, .square) > span + img,
|
|
161
|
+
.chip:not(.circle, .square) > span + i,
|
|
162
|
+
.chip:not(.circle, .square) > span + img {
|
|
163
|
+
margin: 0 -8rem 0 0;
|
|
196
164
|
}
|
|
197
165
|
|
|
198
|
-
.button > img.responsive
|
|
199
|
-
button > img.responsive
|
|
200
|
-
|
|
201
|
-
margin-right: -16rem;
|
|
166
|
+
.button:not(.circle, .square) > img.responsive,
|
|
167
|
+
button:not(.circle, .square) > img.responsive {
|
|
168
|
+
margin: 0 0 0 -24rem;
|
|
202
169
|
}
|
|
203
170
|
|
|
204
|
-
.button.
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
button.extend > img:first-child {
|
|
208
|
-
position: absolute;
|
|
209
|
-
left: 16rem;
|
|
171
|
+
.button:not(.circle, .square) > span + img.responsive,
|
|
172
|
+
button:not(.circle, .square) > span + img.responsive {
|
|
173
|
+
margin: 0 -24rem 0 0;
|
|
210
174
|
}
|
|
211
175
|
|
|
212
|
-
.
|
|
213
|
-
|
|
214
|
-
button.extend > i:last-child,
|
|
215
|
-
button.extend > img:last-child {
|
|
216
|
-
position: absolute;
|
|
217
|
-
right: 16rem;
|
|
176
|
+
.chip:not(.circle, .square) > img.responsive {
|
|
177
|
+
margin: 0 0 0 -16rem;
|
|
218
178
|
}
|
|
219
179
|
|
|
220
|
-
.
|
|
221
|
-
|
|
180
|
+
.chip:not(.circle, .square) > span + img.responsive {
|
|
181
|
+
margin: 0 -16rem 0 0;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.extend > i,
|
|
185
|
+
.extend > img {
|
|
222
186
|
position: absolute;
|
|
187
|
+
left: 16rem;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.extend > img.responsive {
|
|
223
191
|
left: 0;
|
|
192
|
+
width: 56rem;
|
|
224
193
|
}
|
|
225
194
|
|
|
226
|
-
.
|
|
227
|
-
|
|
228
|
-
position: absolute;
|
|
229
|
-
right: 0;
|
|
195
|
+
.extend.border > img.responsive {
|
|
196
|
+
width: 54rem;
|
|
230
197
|
}
|
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
opacity: 0;
|
|
3
3
|
visibility: hidden;
|
|
4
4
|
position: fixed;
|
|
5
|
-
box-shadow: var(--
|
|
6
|
-
color: var(--on-surface
|
|
7
|
-
background-color: var(--surface
|
|
5
|
+
box-shadow: var(--elevate2);
|
|
6
|
+
color: var(--on-surface);
|
|
7
|
+
background-color: var(--surface);
|
|
8
8
|
padding: 16rem;
|
|
9
|
-
box-sizing: border-box;
|
|
10
9
|
z-index: 100;
|
|
11
10
|
left: 50%;
|
|
12
11
|
top: 10%;
|
|
@@ -15,34 +14,12 @@
|
|
|
15
14
|
max-height: 80%;
|
|
16
15
|
overflow-x: hidden;
|
|
17
16
|
overflow-y: auto;
|
|
18
|
-
will-change: opacity, transform;
|
|
19
17
|
transition: var(--speed3) all, 0s background-color;
|
|
20
|
-
transform: translate(-50%, -
|
|
18
|
+
transform: translate(-50%, -64rem);
|
|
21
19
|
}
|
|
22
20
|
|
|
23
|
-
.modal.
|
|
24
|
-
border:
|
|
25
|
-
box-shadow: none;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.modal.round {
|
|
29
|
-
border-radius: 24rem;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.modal.bottom.round {
|
|
33
|
-
border-radius: 24rem 24rem 0 0;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.modal.top.round {
|
|
37
|
-
border-radius: 0 0 24rem 24rem;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.modal.left.round {
|
|
41
|
-
border-radius: 0 24rem 24rem 0;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.modal.right.round {
|
|
45
|
-
border-radius: 24rem 0 0 24rem;
|
|
21
|
+
.modal:not(.left, .right, .top, .bottom) {
|
|
22
|
+
border-radius: 12rem;
|
|
46
23
|
}
|
|
47
24
|
|
|
48
25
|
.modal.small {
|
|
@@ -66,19 +43,11 @@
|
|
|
66
43
|
transform: translate(-50%, 0);
|
|
67
44
|
}
|
|
68
45
|
|
|
69
|
-
.modal.active.left
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
.modal.active.
|
|
74
|
-
transform: translate(0, 0);
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.modal.active.top {
|
|
78
|
-
transform: translate(0, 0);
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.modal.active.bottom {
|
|
46
|
+
.modal.active.left,
|
|
47
|
+
.modal.active.right,
|
|
48
|
+
.modal.active.top,
|
|
49
|
+
.modal.active.bottom,
|
|
50
|
+
.modal.active.max {
|
|
82
51
|
transform: translate(0, 0);
|
|
83
52
|
}
|
|
84
53
|
|
|
@@ -97,7 +66,6 @@
|
|
|
97
66
|
|
|
98
67
|
.modal.left {
|
|
99
68
|
opacity: 1;
|
|
100
|
-
float: none;
|
|
101
69
|
top: 0;
|
|
102
70
|
left: 0;
|
|
103
71
|
right: auto;
|
|
@@ -110,7 +78,6 @@
|
|
|
110
78
|
|
|
111
79
|
.modal.right {
|
|
112
80
|
opacity: 1;
|
|
113
|
-
float: none;
|
|
114
81
|
top: 0;
|
|
115
82
|
left: auto;
|
|
116
83
|
right: 0;
|
|
@@ -134,6 +101,19 @@
|
|
|
134
101
|
transform: translateY(100%);
|
|
135
102
|
}
|
|
136
103
|
|
|
104
|
+
.modal.max {
|
|
105
|
+
top: 0;
|
|
106
|
+
left: 0;
|
|
107
|
+
right: auto;
|
|
108
|
+
bottom: auto;
|
|
109
|
+
width: 100%;
|
|
110
|
+
height: 100%;
|
|
111
|
+
max-width: 100%;
|
|
112
|
+
max-height: 100%;
|
|
113
|
+
transform: translateY(64rem);
|
|
114
|
+
border-radius: 0;
|
|
115
|
+
}
|
|
116
|
+
|
|
137
117
|
.modal.left.small,
|
|
138
118
|
.modal.right.small {
|
|
139
119
|
width: 320rem;
|
|
@@ -168,9 +148,9 @@ nav > .modal,
|
|
|
168
148
|
nav.left > .modal {
|
|
169
149
|
z-index: 0;
|
|
170
150
|
text-align: left;
|
|
171
|
-
padding: 16rem 16rem 16rem 80rem;
|
|
172
151
|
overflow-y: auto;
|
|
173
152
|
background-color: inherit;
|
|
153
|
+
padding: 16rem 16rem 16rem 80rem;
|
|
174
154
|
}
|
|
175
155
|
|
|
176
156
|
nav.right > .modal {
|
|
@@ -185,15 +165,11 @@ nav.bottom > .modal {
|
|
|
185
165
|
padding: 16rem 48rem 80rem 48rem;
|
|
186
166
|
}
|
|
187
167
|
|
|
188
|
-
.modal > a
|
|
189
|
-
.modal > a
|
|
190
|
-
background-color: var(--
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
.modal > a.row {
|
|
194
|
-
margin: 0 -8rem;
|
|
168
|
+
.modal > a.row:hover,
|
|
169
|
+
.modal > a.row.active {
|
|
170
|
+
background-color: var(--secondary-container);
|
|
195
171
|
}
|
|
196
172
|
|
|
197
|
-
.modal >
|
|
198
|
-
padding: 12rem
|
|
173
|
+
.modal > .row {
|
|
174
|
+
padding: 12rem 8rem;
|
|
199
175
|
}
|
|
@@ -1,37 +1,75 @@
|
|
|
1
|
-
nav
|
|
1
|
+
nav,
|
|
2
|
+
.row {
|
|
2
3
|
display: flex;
|
|
3
4
|
align-items: center;
|
|
5
|
+
justify-content: flex-start;
|
|
4
6
|
white-space: nowrap;
|
|
5
|
-
|
|
7
|
+
border-radius: 0;
|
|
8
|
+
gap: 16rem;
|
|
6
9
|
}
|
|
7
10
|
|
|
8
|
-
*:not(.
|
|
9
|
-
|
|
11
|
+
*:not(.divider, .small-divider, .medium-divider, .large-divider) + nav:not(.left, .right, .top, .bottom),
|
|
12
|
+
*:not(.divider, .small-divider, .medium-divider, .large-divider) + .row:not(a) {
|
|
13
|
+
margin-top: 16rem;
|
|
10
14
|
}
|
|
11
15
|
|
|
12
|
-
nav
|
|
13
|
-
|
|
16
|
+
nav *,
|
|
17
|
+
.row * {
|
|
18
|
+
margin-top: 0;
|
|
19
|
+
margin-bottom: 0;
|
|
20
|
+
flex: none;
|
|
14
21
|
}
|
|
15
22
|
|
|
16
|
-
nav
|
|
17
|
-
|
|
23
|
+
nav > *,
|
|
24
|
+
.row > * {
|
|
25
|
+
margin: 0 !important;
|
|
18
26
|
white-space: normal;
|
|
19
27
|
}
|
|
20
28
|
|
|
21
|
-
|
|
22
|
-
|
|
29
|
+
nav.no-space,
|
|
30
|
+
.row.no-space {
|
|
31
|
+
gap: 0rem;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
nav.no-space > .border + .border,
|
|
35
|
+
.row.no-space > .border + .border {
|
|
36
|
+
border-left: 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
nav.medium-space,
|
|
40
|
+
.row.medium-space {
|
|
41
|
+
gap: 24rem;
|
|
23
42
|
}
|
|
24
43
|
|
|
25
|
-
nav.
|
|
26
|
-
|
|
44
|
+
nav.large-space,
|
|
45
|
+
.row.large-space {
|
|
46
|
+
gap: 32rem;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
nav > .max,
|
|
50
|
+
.row > .max {
|
|
51
|
+
flex: auto;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
nav.wrap,
|
|
55
|
+
.row.wrap {
|
|
56
|
+
display: flex;
|
|
57
|
+
flex-wrap: wrap;
|
|
27
58
|
}
|
|
28
59
|
|
|
29
|
-
|
|
30
|
-
|
|
60
|
+
header > nav,
|
|
61
|
+
header > .row {
|
|
62
|
+
min-height: 64rem;
|
|
31
63
|
}
|
|
32
64
|
|
|
33
|
-
|
|
34
|
-
|
|
65
|
+
footer > nav,
|
|
66
|
+
footer > .row {
|
|
67
|
+
min-height: 80rem;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
nav > .border.no-margin + .border.no-margin,
|
|
71
|
+
.row > .border.no-margin + .border.no-margin {
|
|
72
|
+
border-left: 0;
|
|
35
73
|
}
|
|
36
74
|
|
|
37
75
|
nav.left,
|
|
@@ -44,11 +82,9 @@ nav.bottom {
|
|
|
44
82
|
flex-direction: column;
|
|
45
83
|
border: 0;
|
|
46
84
|
position: fixed;
|
|
47
|
-
|
|
48
|
-
color: var(--
|
|
49
|
-
background-color: var(--surface-variant);
|
|
85
|
+
color: var(--on-surface);
|
|
86
|
+
background-color: var(--surface);
|
|
50
87
|
transform: none;
|
|
51
|
-
box-sizing: border-box;
|
|
52
88
|
z-index: 100;
|
|
53
89
|
left: 0;
|
|
54
90
|
top: 0;
|
|
@@ -57,7 +93,7 @@ nav.bottom {
|
|
|
57
93
|
height: auto;
|
|
58
94
|
width: auto;
|
|
59
95
|
text-align: center;
|
|
60
|
-
|
|
96
|
+
padding: 8rem;
|
|
61
97
|
}
|
|
62
98
|
|
|
63
99
|
nav.left,
|
|
@@ -70,35 +106,6 @@ nav.bottom {
|
|
|
70
106
|
height: 80rem;
|
|
71
107
|
}
|
|
72
108
|
|
|
73
|
-
nav.border {
|
|
74
|
-
box-shadow: none;
|
|
75
|
-
border: 1rem solid var(--outline);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
nav.left.border {
|
|
79
|
-
border-top: none;
|
|
80
|
-
border-bottom: none;
|
|
81
|
-
border-left: none;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
nav.right.border {
|
|
85
|
-
border-top: none;
|
|
86
|
-
border-bottom: none;
|
|
87
|
-
border-right: none;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
nav.top.border {
|
|
91
|
-
border-top: none;
|
|
92
|
-
border-right: none;
|
|
93
|
-
border-left: none;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
nav.bottom.border {
|
|
97
|
-
border-bottom: none;
|
|
98
|
-
border-right: none;
|
|
99
|
-
border-left: none;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
109
|
nav.top {
|
|
103
110
|
bottom: auto;
|
|
104
111
|
justify-content: center;
|
|
@@ -130,7 +137,6 @@ nav.bottom > a:not(button, .button, .chip, img, video) {
|
|
|
130
137
|
min-width: 56rem;
|
|
131
138
|
min-height: 56rem;
|
|
132
139
|
text-align: center;
|
|
133
|
-
margin: 8rem;
|
|
134
140
|
display: grid;
|
|
135
141
|
z-index: 101;
|
|
136
142
|
}
|
|
@@ -158,6 +164,7 @@ nav.bottom:before {
|
|
|
158
164
|
bottom: 0;
|
|
159
165
|
background-color: inherit;
|
|
160
166
|
z-index: 101;
|
|
167
|
+
border-radius: inherit;
|
|
161
168
|
}
|
|
162
169
|
|
|
163
170
|
nav.left > :not(.modal, .overlay),
|
|
@@ -167,18 +174,6 @@ nav.bottom > :not(.modal, .overlay) {
|
|
|
167
174
|
z-index: 101;
|
|
168
175
|
}
|
|
169
176
|
|
|
170
|
-
nav.no-space > a:not(button, .button, .chip) {
|
|
171
|
-
margin: 0;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
nav.medium-space > a:not(button, .button, .chip) {
|
|
175
|
-
margin: 16rem;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
nav.large-space > a:not(button, .button, .chip) {
|
|
179
|
-
margin: 24rem;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
177
|
nav.left > a:not(button, .button, .chip) > i,
|
|
183
178
|
nav.right > a:not(button, .button, .chip) > i,
|
|
184
179
|
nav.top > a:not(button, .button, .chip) > i,
|
|
@@ -186,6 +181,7 @@ nav.bottom > a:not(button, .button, .chip) > i {
|
|
|
186
181
|
padding: 4rem;
|
|
187
182
|
border-radius: 32rem;
|
|
188
183
|
transition: var(--speed1) padding linear;
|
|
184
|
+
margin: 0 auto;
|
|
189
185
|
}
|
|
190
186
|
|
|
191
187
|
nav.left > a:not(button, .button, .chip):hover > i,
|
|
@@ -200,16 +196,10 @@ nav.top > a:not(button, .button, .chip).active > i,
|
|
|
200
196
|
nav.bottom > a:not(button, .button, .chip):focus > i,
|
|
201
197
|
nav.bottom > a:not(button, .button, .chip):hover > i,
|
|
202
198
|
nav.bottom > a:not(button, .button, .chip).active > i {
|
|
203
|
-
background-color: var(--
|
|
204
|
-
color: var(--on-
|
|
199
|
+
background-color: var(--secondary-container);
|
|
200
|
+
color: var(--on-secondary-container);
|
|
205
201
|
padding: 4rem 16rem;
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
nav.left > .modal,
|
|
209
|
-
nav.right > .modal,
|
|
210
|
-
nav.top > .modal,
|
|
211
|
-
nav.bottom > .modal {
|
|
212
|
-
margin: 0;
|
|
202
|
+
font-variation-settings: 'FILL' 1;
|
|
213
203
|
}
|
|
214
204
|
|
|
215
205
|
nav.left > .modal {
|
|
@@ -243,6 +233,18 @@ nav.middle-align {
|
|
|
243
233
|
justify-content: center;
|
|
244
234
|
}
|
|
245
235
|
|
|
236
|
+
nav:not(.left, .right) > .space {
|
|
237
|
+
width: 8rem;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
nav:not(.left, .right) > .medium-space {
|
|
241
|
+
width: 16rem;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
nav:not(.left, .right) > .large-space {
|
|
245
|
+
width: 24rem;
|
|
246
|
+
}
|
|
247
|
+
|
|
246
248
|
@media only screen and (max-width: 600px) {
|
|
247
249
|
nav.top,
|
|
248
250
|
nav.bottom {
|
|
@@ -5,9 +5,6 @@
|
|
|
5
5
|
bottom: 0;
|
|
6
6
|
left: 0;
|
|
7
7
|
right: 0;
|
|
8
|
-
border-radius: inherit;
|
|
9
|
-
margin: 0 !important;
|
|
10
|
-
padding: 0 !important;
|
|
11
8
|
transition: var(--speed4) clip-path;
|
|
12
9
|
clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
|
|
13
10
|
}
|
|
@@ -26,4 +23,8 @@
|
|
|
26
23
|
|
|
27
24
|
.progress.bottom {
|
|
28
25
|
clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.progress + * {
|
|
29
|
+
margin-top: 0;
|
|
29
30
|
}
|