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
|
@@ -4,137 +4,73 @@ button {
|
|
|
4
4
|
display: inline-flex;
|
|
5
5
|
align-items: center;
|
|
6
6
|
justify-content: center;
|
|
7
|
-
box-shadow: var(--shadow1);
|
|
8
|
-
min-height: 40rem;
|
|
9
7
|
height: 40rem;
|
|
8
|
+
min-width: 40rem;
|
|
10
9
|
font-size: 14rem;
|
|
11
10
|
font-weight: 500;
|
|
12
11
|
color: var(--on-primary);
|
|
13
|
-
padding: 0
|
|
12
|
+
padding: 0 24rem;
|
|
14
13
|
background-color: var(--primary);
|
|
15
14
|
margin: 0 8rem;
|
|
16
15
|
border-radius: 8rem;
|
|
17
16
|
transition: var(--speed3) transform, var(--speed3) border-radius, var(--speed3) padding;
|
|
18
17
|
user-select: none;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
.button > :not(.dropdown, .progress, .badge, .tooltip) + :not(.dropdown, .progress, .badge, .tooltip),
|
|
22
|
-
button > :not(.dropdown, .progress, .badge, .tooltip) + :not(.dropdown, .progress, .badge, .tooltip) {
|
|
23
|
-
margin-left: 4rem;
|
|
18
|
+
gap: 8rem;
|
|
24
19
|
}
|
|
25
20
|
|
|
26
21
|
.button.none,
|
|
27
22
|
button.none {
|
|
28
|
-
box-shadow: none;
|
|
29
23
|
width: auto;
|
|
30
|
-
min-width: auto;
|
|
31
24
|
height: auto;
|
|
32
|
-
min-height: auto;
|
|
33
25
|
color: var(--primary);
|
|
34
26
|
padding: 0;
|
|
35
27
|
background-color: transparent;
|
|
36
|
-
|
|
28
|
+
min-width: auto;
|
|
29
|
+
min-height: 24rem;
|
|
37
30
|
}
|
|
38
31
|
|
|
39
32
|
.button.small,
|
|
40
33
|
button.small {
|
|
41
|
-
min-height: 32rem !important;
|
|
42
34
|
height: 32rem;
|
|
35
|
+
min-width: 32rem;
|
|
43
36
|
font-size: 14rem;
|
|
44
37
|
}
|
|
45
38
|
|
|
46
|
-
.button.medium,
|
|
47
|
-
button.medium {
|
|
48
|
-
min-height: 40rem !important;
|
|
49
|
-
height: 40rem;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
39
|
.button.large,
|
|
53
40
|
button.large {
|
|
54
|
-
min-height: 48rem !important;
|
|
55
41
|
height: 48rem;
|
|
42
|
+
min-width: 48rem;
|
|
56
43
|
}
|
|
57
44
|
|
|
58
45
|
.button.extra,
|
|
59
|
-
button.extra
|
|
60
|
-
|
|
46
|
+
button.extra,
|
|
47
|
+
.button.extend,
|
|
48
|
+
button.extend {
|
|
61
49
|
height: 56rem;
|
|
50
|
+
min-width: 56rem;
|
|
62
51
|
font-size: 16rem;
|
|
63
52
|
}
|
|
64
53
|
|
|
65
54
|
.button.border,
|
|
66
55
|
button.border {
|
|
67
56
|
border: 1rem solid var(--primary);
|
|
68
|
-
background-color: transparent;
|
|
69
57
|
color: var(--primary);
|
|
70
|
-
box-shadow: none;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.button.round,
|
|
74
|
-
button.round {
|
|
75
|
-
transform: none;
|
|
76
|
-
border-radius: 32rem;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.button.top-round,
|
|
80
|
-
button.top-round {
|
|
81
|
-
border-radius: 32rem 32rem 4rem 4rem !important;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.button.bottom-round,
|
|
85
|
-
button.bottom-round {
|
|
86
|
-
border-radius: 4rem 4rem 32rem 32rem !important;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.button.left-round,
|
|
90
|
-
button.left-round {
|
|
91
|
-
border-radius: 32rem 4rem 4rem 32rem !important;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.button.right-round,
|
|
95
|
-
button.right-round {
|
|
96
|
-
border-radius: 4rem 32rem 32rem 4rem !important;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.button.top-round.left-round,
|
|
100
|
-
button.top-round.left-round {
|
|
101
|
-
border-radius: 32rem 32rem 4rem 32rem !important;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.button.top-round.right-round,
|
|
105
|
-
button.top-round.right-round {
|
|
106
|
-
border-radius: 32rem 32rem 32rem 4rem !important;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
.button.bottom-round.left-round,
|
|
110
|
-
button.bottom-round.left-round {
|
|
111
|
-
border-radius: 32rem 4rem 32rem 32rem !important;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.button.bottom-round.right-round,
|
|
115
|
-
button.bottom-round.right-round {
|
|
116
|
-
border-radius: 4rem 32rem 32rem 32rem !important;
|
|
117
58
|
}
|
|
118
59
|
|
|
119
60
|
.button.circle,
|
|
120
61
|
button.circle {
|
|
121
|
-
transform: none;
|
|
122
|
-
padding: 0;
|
|
123
62
|
border-radius: 40rem;
|
|
124
63
|
padding: 0;
|
|
125
64
|
}
|
|
126
65
|
|
|
127
66
|
.button.square,
|
|
128
67
|
button.square {
|
|
129
|
-
|
|
130
|
-
border-radius: 4rem;
|
|
68
|
+
border-radius: 0;
|
|
131
69
|
padding: 0;
|
|
132
70
|
}
|
|
133
71
|
|
|
134
72
|
.button.extend,
|
|
135
73
|
button.extend {
|
|
136
|
-
min-height: 56rem !important;
|
|
137
|
-
min-width: 56rem !important;
|
|
138
74
|
padding: 0;
|
|
139
75
|
}
|
|
140
76
|
|
|
@@ -148,8 +84,6 @@ button.extend:hover,
|
|
|
148
84
|
.button.extend.active,
|
|
149
85
|
button.extend.active {
|
|
150
86
|
width: auto;
|
|
151
|
-
max-width: none;
|
|
152
|
-
min-width: auto;
|
|
153
87
|
padding: 0 16rem;
|
|
154
88
|
}
|
|
155
89
|
|
|
@@ -169,15 +103,6 @@ button.extend.active > img + span {
|
|
|
169
103
|
margin-left: 48rem;
|
|
170
104
|
}
|
|
171
105
|
|
|
172
|
-
.button.square:not(.flat, .border),
|
|
173
|
-
.button.circle:not(.flat, .border),
|
|
174
|
-
.button.diamond:not(.flat, .border),
|
|
175
|
-
button.square:not(.flat, .border),
|
|
176
|
-
button.circle:not(.flat, .border),
|
|
177
|
-
button.diamond:not(.flat, .border) {
|
|
178
|
-
box-shadow: var(--shadow2);
|
|
179
|
-
}
|
|
180
|
-
|
|
181
106
|
.button[disabled],
|
|
182
107
|
button:disabled {
|
|
183
108
|
opacity: .5;
|
|
@@ -193,4 +118,10 @@ button:disabled::before,
|
|
|
193
118
|
.button[disabled]::after,
|
|
194
119
|
button:disabled::after {
|
|
195
120
|
display: none;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.button.fill,
|
|
124
|
+
button.fill {
|
|
125
|
+
background-color: var(--secondary-container) !important;
|
|
126
|
+
color: var(--on-secondary-container) !important;
|
|
196
127
|
}
|
|
@@ -1,52 +1,25 @@
|
|
|
1
|
-
.card,
|
|
2
1
|
article {
|
|
3
|
-
box-shadow: var(--
|
|
4
|
-
background-color: var(--surface
|
|
5
|
-
color: var(--on-surface
|
|
2
|
+
box-shadow: var(--elevate1);
|
|
3
|
+
background-color: var(--surface);
|
|
4
|
+
color: var(--on-surface);
|
|
6
5
|
padding: 16rem;
|
|
7
|
-
border-radius:
|
|
6
|
+
border-radius: 12rem;
|
|
8
7
|
display: block;
|
|
9
8
|
transition: var(--speed3) transform, var(--speed3) border-radius, var(--speed3) padding;
|
|
10
9
|
}
|
|
11
10
|
|
|
12
|
-
|
|
13
|
-
article + article {
|
|
11
|
+
* + article {
|
|
14
12
|
margin-top: 16rem;
|
|
15
13
|
}
|
|
16
14
|
|
|
17
|
-
.row.medium-space > .col > .card + .card,
|
|
18
|
-
.row.medium-space > .col > article + article {
|
|
19
|
-
margin-top: 24rem;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.row.large-space > .col > .card + .card,
|
|
23
|
-
.row.large-space > .col > article + article {
|
|
24
|
-
margin-top: 32rem;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.card.small,
|
|
28
15
|
article.small {
|
|
29
16
|
height: 192rem;
|
|
30
17
|
}
|
|
31
18
|
|
|
32
|
-
.card.medium,
|
|
33
19
|
article.medium {
|
|
34
20
|
height: 320rem;
|
|
35
21
|
}
|
|
36
22
|
|
|
37
|
-
.card.large,
|
|
38
23
|
article.large {
|
|
39
24
|
height: 512rem;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.card.border,
|
|
43
|
-
article.border {
|
|
44
|
-
border: 1rem solid var(--outline);
|
|
45
|
-
box-shadow: none;
|
|
46
|
-
background-color: transparent;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.card.round,
|
|
50
|
-
article.round {
|
|
51
|
-
border-radius: 24rem;
|
|
52
25
|
}
|
|
@@ -3,9 +3,8 @@
|
|
|
3
3
|
display: inline-flex;
|
|
4
4
|
align-items: center;
|
|
5
5
|
justify-content: center;
|
|
6
|
-
box-shadow: none;
|
|
7
|
-
min-height: 40rem;
|
|
8
6
|
height: 40rem;
|
|
7
|
+
min-width: 40rem;
|
|
9
8
|
font-size: 14rem;
|
|
10
9
|
font-weight: 500;
|
|
11
10
|
color: var(--on-secondary);
|
|
@@ -16,57 +15,36 @@
|
|
|
16
15
|
border-radius: 8rem;
|
|
17
16
|
transition: var(--speed3) transform, var(--speed3) border-radius, var(--speed3) padding;
|
|
18
17
|
user-select: none;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
.chip > :not(.dropdown, .progress, .badge, .tooltip) + :not(.dropdown, .progress, .badge, .tooltip) {
|
|
22
|
-
margin-left: 4rem;
|
|
18
|
+
gap: 8rem;
|
|
23
19
|
}
|
|
24
20
|
|
|
25
21
|
.chip.small {
|
|
26
|
-
min-height: 32rem !important;
|
|
27
22
|
height: 32rem;
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
.chip.medium {
|
|
31
|
-
min-height: 40rem !important;
|
|
32
|
-
height: 40rem;
|
|
23
|
+
min-width: 32rem;
|
|
33
24
|
}
|
|
34
25
|
|
|
35
26
|
.chip.large {
|
|
36
|
-
min-height: 48rem !important;
|
|
37
27
|
height: 48rem;
|
|
28
|
+
min-width: 48rem;
|
|
38
29
|
}
|
|
39
30
|
|
|
40
31
|
.chip.border {
|
|
41
32
|
border: 1rem solid var(--secondary);
|
|
42
|
-
background-color: transparent;
|
|
43
33
|
color: var(--secondary);
|
|
44
34
|
}
|
|
45
35
|
|
|
46
|
-
.chip.active::before {
|
|
47
|
-
content: '';
|
|
48
|
-
position: absolute;
|
|
49
|
-
top: 0;
|
|
50
|
-
left: 0;
|
|
51
|
-
width: 100%;
|
|
52
|
-
height: 100%;
|
|
53
|
-
border-radius: inherit;
|
|
54
|
-
background-color: var(--active);
|
|
55
|
-
}
|
|
56
|
-
|
|
57
36
|
.chip.circle {
|
|
58
|
-
transform: none;
|
|
59
|
-
padding: 0;
|
|
60
37
|
border-radius: 40rem;
|
|
61
38
|
padding: 0;
|
|
62
39
|
}
|
|
63
40
|
|
|
64
41
|
.chip.square {
|
|
65
|
-
|
|
66
|
-
border-radius: 4rem;
|
|
42
|
+
border-radius: 0;
|
|
67
43
|
padding: 0;
|
|
68
44
|
}
|
|
69
45
|
|
|
70
|
-
.chip.
|
|
71
|
-
|
|
46
|
+
.chip.fill {
|
|
47
|
+
background-color: var(--secondary-container) !important;
|
|
48
|
+
color: var(--on-secondary-container) !important;
|
|
49
|
+
border: none;
|
|
72
50
|
}
|
|
@@ -1,74 +1,72 @@
|
|
|
1
|
-
main.responsive
|
|
2
|
-
main.responsive.min {
|
|
1
|
+
main.responsive {
|
|
3
2
|
margin: 0 auto;
|
|
4
|
-
max-width:
|
|
3
|
+
max-width: 1200rem;
|
|
5
4
|
padding: 8rem;
|
|
6
5
|
overflow-x: hidden;
|
|
7
6
|
min-height: 100vh;
|
|
8
|
-
box-sizing: border-box;
|
|
9
7
|
}
|
|
10
8
|
|
|
11
9
|
main.responsive.max {
|
|
12
10
|
max-width: 100%;
|
|
13
11
|
}
|
|
14
12
|
|
|
15
|
-
nav.
|
|
16
|
-
padding-
|
|
13
|
+
nav.bottom:not(.s, .m, .l) ~ .responsive:not(header) {
|
|
14
|
+
padding-bottom: 96rem;
|
|
17
15
|
}
|
|
18
16
|
|
|
19
|
-
nav.
|
|
20
|
-
padding-
|
|
17
|
+
nav.top:not(.s, .m, .l) ~ .responsive:not(footer) {
|
|
18
|
+
padding-top: 96rem;
|
|
21
19
|
}
|
|
22
20
|
|
|
23
|
-
nav.left:not(.s, .m, .l) ~
|
|
21
|
+
nav.left:not(.s, .m, .l) ~ .responsive {
|
|
24
22
|
padding-left: 96rem;
|
|
25
23
|
}
|
|
26
24
|
|
|
27
|
-
nav.right:not(.s, .m, .l) ~
|
|
25
|
+
nav.right:not(.s, .m, .l) ~ .responsive {
|
|
28
26
|
padding-right: 96rem;
|
|
29
27
|
}
|
|
30
28
|
|
|
31
29
|
@media only screen and (max-width: 600px) {
|
|
32
|
-
nav.s.bottom ~
|
|
30
|
+
nav.s.bottom ~ .responsive:not(header) {
|
|
33
31
|
padding-bottom: 96rem;
|
|
34
32
|
}
|
|
35
|
-
nav.s.top ~
|
|
33
|
+
nav.s.top ~ .responsive:not(footer) {
|
|
36
34
|
padding-top: 96rem;
|
|
37
35
|
}
|
|
38
|
-
nav.s.left ~
|
|
36
|
+
nav.s.left ~ .responsive {
|
|
39
37
|
padding-left: 96rem;
|
|
40
38
|
}
|
|
41
|
-
nav.s.right ~
|
|
39
|
+
nav.s.right ~ .responsive {
|
|
42
40
|
padding-right: 96rem;
|
|
43
41
|
}
|
|
44
42
|
}
|
|
45
43
|
|
|
46
44
|
@media only screen and (min-width: 601px) and (max-width: 992px) {
|
|
47
|
-
nav.m.bottom ~
|
|
45
|
+
nav.m.bottom ~ .responsive:not(header) {
|
|
48
46
|
padding-bottom: 96rem;
|
|
49
47
|
}
|
|
50
|
-
nav.m.top ~
|
|
48
|
+
nav.m.top ~ .responsive:not(footer) {
|
|
51
49
|
padding-top: 96rem;
|
|
52
50
|
}
|
|
53
|
-
nav.m.left ~
|
|
51
|
+
nav.m.left ~ .responsive {
|
|
54
52
|
padding-left: 96rem;
|
|
55
53
|
}
|
|
56
|
-
nav.m.right ~
|
|
54
|
+
nav.m.right ~ .responsive {
|
|
57
55
|
padding-right: 96rem;
|
|
58
56
|
}
|
|
59
57
|
}
|
|
60
58
|
|
|
61
59
|
@media only screen and (min-width: 993px) {
|
|
62
|
-
nav.l.bottom ~
|
|
60
|
+
nav.l.bottom ~ .responsive:not(header) {
|
|
63
61
|
padding-bottom: 96rem;
|
|
64
62
|
}
|
|
65
|
-
nav.l.top ~
|
|
63
|
+
nav.l.top ~ .responsive:not(footer) {
|
|
66
64
|
padding-top: 96rem;
|
|
67
65
|
}
|
|
68
|
-
nav.l.left ~
|
|
66
|
+
nav.l.left ~ .responsive {
|
|
69
67
|
padding-left: 96rem;
|
|
70
68
|
}
|
|
71
|
-
nav.l.right ~
|
|
69
|
+
nav.l.right ~ .responsive {
|
|
72
70
|
padding-right: 96rem;
|
|
73
71
|
}
|
|
74
72
|
}
|
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
opacity: 0;
|
|
3
3
|
visibility: hidden;
|
|
4
4
|
position: absolute;
|
|
5
|
-
box-shadow: var(--
|
|
5
|
+
box-shadow: var(--elevate2);
|
|
6
6
|
background-color: var(--surface);
|
|
7
|
-
box-sizing: border-box;
|
|
8
7
|
z-index: 11;
|
|
9
8
|
top: auto;
|
|
10
9
|
bottom: 0;
|
|
11
10
|
left: 0;
|
|
12
11
|
right: auto;
|
|
13
12
|
width: 100%;
|
|
14
|
-
max-height:
|
|
13
|
+
max-height: 50vh;
|
|
14
|
+
max-width: none;
|
|
15
15
|
transform: translateY(100%);
|
|
16
16
|
overflow-x: hidden;
|
|
17
17
|
overflow-y: auto;
|
|
@@ -21,10 +21,14 @@
|
|
|
21
21
|
color: var(--on-surface);
|
|
22
22
|
line-height: normal;
|
|
23
23
|
text-align: left;
|
|
24
|
+
border-radius: 4rem;
|
|
25
|
+
transform: scale(.8) translateY(120%);
|
|
26
|
+
transition: var(--speed2) all, 0s background-color;
|
|
24
27
|
}
|
|
25
28
|
|
|
26
29
|
.dropdown.no-wrap {
|
|
27
30
|
width: auto;
|
|
31
|
+
white-space: nowrap !important;
|
|
28
32
|
}
|
|
29
33
|
|
|
30
34
|
.dropdown.active,
|
|
@@ -34,22 +38,7 @@ button:not([data-ui]):focus-within > .dropdown,
|
|
|
34
38
|
.field > :not([data-ui]):focus-within ~ .dropdown {
|
|
35
39
|
opacity: 1;
|
|
36
40
|
visibility: visible;
|
|
37
|
-
|
|
38
|
-
animation: var(--speed1) dropdown-to-bottom;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.dropdown.border {
|
|
42
|
-
border: 1rem solid var(--outline);
|
|
43
|
-
box-shadow: none;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.dropdown.round {
|
|
47
|
-
border-radius: 24rem;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.dropdown.right {
|
|
51
|
-
left: 0;
|
|
52
|
-
right: auto;
|
|
41
|
+
transform: scale(1) translateY(100%);
|
|
53
42
|
}
|
|
54
43
|
|
|
55
44
|
.dropdown.left {
|
|
@@ -57,33 +46,21 @@ button:not([data-ui]):focus-within > .dropdown,
|
|
|
57
46
|
right: 0;
|
|
58
47
|
}
|
|
59
48
|
|
|
49
|
+
.dropdown * {
|
|
50
|
+
white-space: inherit !important;
|
|
51
|
+
}
|
|
52
|
+
|
|
60
53
|
.dropdown > a {
|
|
54
|
+
padding: 12rem 16rem;
|
|
55
|
+
border-radius: 0;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.dropdown > a:not(.row) {
|
|
61
59
|
display: block;
|
|
62
|
-
padding: 8rem 16rem;
|
|
63
60
|
}
|
|
64
61
|
|
|
65
62
|
.dropdown > a:hover,
|
|
66
63
|
.dropdown > a:focus,
|
|
67
64
|
.dropdown > a.active {
|
|
68
65
|
background-color: var(--active);
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.dropdown.no-wrap > a {
|
|
72
|
-
white-space: nowrap;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.dropdown > a.row.no-wrap,
|
|
76
|
-
.dropdown > a.row.no-wrap + a.row.no-wrap {
|
|
77
|
-
margin: 0 -8rem;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
@keyframes dropdown-to-bottom {
|
|
81
|
-
from {
|
|
82
|
-
opacity: 0;
|
|
83
|
-
transform: translateY(75%);
|
|
84
|
-
}
|
|
85
|
-
to {
|
|
86
|
-
opacity: 1;
|
|
87
|
-
transform: translateY(100%);
|
|
88
|
-
}
|
|
89
|
-
}
|
|
66
|
+
}
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
details[open] > :not(summary) {
|
|
2
|
-
animation: details-to-open var(--speed3) ease;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
1
|
summary.none {
|
|
6
2
|
list-style-type: none;
|
|
7
3
|
}
|
|
@@ -12,15 +8,4 @@ summary {
|
|
|
12
8
|
|
|
13
9
|
summary:focus {
|
|
14
10
|
outline: none;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@keyframes details-to-open {
|
|
18
|
-
0% {
|
|
19
|
-
opacity: 0;
|
|
20
|
-
transform: translateY(-8rem);
|
|
21
|
-
}
|
|
22
|
-
100% {
|
|
23
|
-
opacity: 1;
|
|
24
|
-
transform: translateY(0);
|
|
25
|
-
}
|
|
26
11
|
}
|