beercss 2.3.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +45 -35
- package/dist/cdn/beer.min.css +1 -1
- package/dist/cdn/beer.min.js +1 -1
- package/dist/cdn/material-symbols-outlined.woff2 +0 -0
- package/dist/cdn/roboto-flex-cyrillic-ext.woff2 +0 -0
- package/dist/cdn/roboto-flex-cyrillic.woff2 +0 -0
- package/dist/cdn/roboto-flex-greek.woff2 +0 -0
- package/dist/cdn/roboto-flex-latin-ext.woff2 +0 -0
- package/dist/cdn/roboto-flex-latin.woff2 +0 -0
- package/dist/cdn/roboto-flex-vietnamese.woff2 +0 -0
- package/index.js +10 -2
- package/package.json +17 -2
- package/src/cdn/beer.css +2 -2
- package/src/cdn/beer.ts +164 -166
- package/src/cdn/elements/badges.css +7 -7
- package/src/cdn/elements/buttons.css +24 -24
- package/src/cdn/elements/cards.css +7 -7
- package/src/cdn/elements/chips.css +14 -14
- package/src/cdn/elements/containers.css +30 -21
- package/src/cdn/elements/dropdowns.css +5 -5
- package/src/cdn/elements/expansions.css +9 -5
- package/src/cdn/elements/fields.css +70 -70
- package/src/cdn/elements/grids.css +31 -30
- package/src/cdn/elements/icons.css +18 -18
- package/src/cdn/elements/layouts.css +17 -17
- package/src/cdn/elements/loaders.css +45 -35
- package/src/cdn/elements/media.css +37 -37
- package/src/cdn/elements/modals.css +17 -17
- package/src/cdn/elements/navigations.css +31 -31
- package/src/cdn/elements/overlays.css +1 -1
- package/src/cdn/elements/pages.css +10 -6
- package/src/cdn/elements/progress.css +2 -2
- package/src/cdn/elements/selections.css +31 -30
- package/src/cdn/elements/tables.css +14 -14
- package/src/cdn/elements/tabs.css +22 -12
- package/src/cdn/elements/toasts.css +12 -10
- package/src/cdn/elements/tooltips.css +10 -10
- package/src/cdn/helpers/alignments.css +1 -1
- package/src/cdn/helpers/colors.css +215 -215
- package/src/cdn/helpers/directions.css +4 -6
- package/src/cdn/helpers/dividers.css +5 -5
- package/src/cdn/helpers/elevates.css +1 -1
- package/src/cdn/helpers/forms.css +21 -21
- package/src/cdn/helpers/margins.css +5 -5
- package/src/cdn/helpers/opacities.css +1 -1
- package/src/cdn/helpers/paddings.css +5 -5
- package/src/cdn/helpers/positions.css +1 -1
- package/src/cdn/helpers/reset.css +2 -2
- package/src/cdn/helpers/responsive.css +2 -1
- package/src/cdn/helpers/scrolls.css +1 -2
- package/src/cdn/helpers/shadows.css +1 -1
- package/src/cdn/helpers/sizes.css +7 -7
- package/src/cdn/helpers/spaces.css +5 -5
- package/src/cdn/helpers/theme.css +38 -38
- package/src/cdn/helpers/typography.css +63 -14
- package/src/cdn/helpers/waves.css +10 -10
- package/src/cdn/material-symbols-outlined.woff2 +0 -0
- package/src/cdn/roboto-flex-cyrillic-ext.woff2 +0 -0
- package/src/cdn/roboto-flex-cyrillic.woff2 +0 -0
- package/src/cdn/roboto-flex-greek.woff2 +0 -0
- package/src/cdn/roboto-flex-latin-ext.woff2 +0 -0
- package/src/cdn/roboto-flex-latin.woff2 +0 -0
- package/src/cdn/roboto-flex-vietnamese.woff2 +0 -0
- package/src/cdn/settings/dark.css +13 -14
- package/src/cdn/settings/fonts.css +206 -0
- package/src/cdn/settings/light.css +17 -18
- package/src/cdn/settings/urls.css +0 -1
|
@@ -13,37 +13,37 @@
|
|
|
13
13
|
|
|
14
14
|
.absolute.left.right.small,
|
|
15
15
|
.fixed.left.right.small {
|
|
16
|
-
height:
|
|
16
|
+
height: 20rem;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.absolute.left.right.medium,
|
|
20
20
|
.fixed.left.right.medium {
|
|
21
|
-
height:
|
|
21
|
+
height: 28rem;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.absolute.left.right.large,
|
|
25
25
|
.fixed.left.right.large {
|
|
26
|
-
height:
|
|
26
|
+
height: 44rem;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
.absolute.top.bottom.small,
|
|
30
30
|
.fixed.top.bottom.small {
|
|
31
|
-
width:
|
|
31
|
+
width: 20rem;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
.absolute.top.bottom.medium,
|
|
35
35
|
.fixed.top.bottom.medium {
|
|
36
|
-
width:
|
|
36
|
+
width: 28rem;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
.absolute.top.bottom.large,
|
|
40
40
|
.fixed.top.bottom.large {
|
|
41
|
-
width:
|
|
41
|
+
width: 44rem;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
header,
|
|
45
45
|
footer {
|
|
46
|
-
padding: 0
|
|
46
|
+
padding: 0 1rem;
|
|
47
47
|
background-color: var(--surface);
|
|
48
48
|
}
|
|
49
49
|
|
|
@@ -60,14 +60,14 @@ footer.fixed {
|
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
header.fixed::before,
|
|
63
|
-
footer.fixed
|
|
64
|
-
content:
|
|
63
|
+
footer.fixed::before {
|
|
64
|
+
content: "";
|
|
65
65
|
position: absolute;
|
|
66
66
|
top: 0;
|
|
67
67
|
left: 0;
|
|
68
68
|
right: 0;
|
|
69
69
|
bottom: 0;
|
|
70
|
-
margin: 0 -
|
|
70
|
+
margin: 0 -0.5rem;
|
|
71
71
|
max-width: 100%;
|
|
72
72
|
background-color: inherit;
|
|
73
73
|
}
|
|
@@ -89,14 +89,14 @@ article > footer {
|
|
|
89
89
|
article > header.fixed,
|
|
90
90
|
.padding > header.fixed,
|
|
91
91
|
.medium-padding > header.fixed {
|
|
92
|
-
transform: translateY(-
|
|
92
|
+
transform: translateY(-1rem);
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
.modal > footer.fixed,
|
|
96
96
|
article > footer.fixed,
|
|
97
97
|
.padding > footer.fixed,
|
|
98
98
|
.medium-padding > footer.fixed {
|
|
99
|
-
transform: translateY(
|
|
99
|
+
transform: translateY(1rem);
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
.no-padding > header.fixed,
|
|
@@ -105,17 +105,17 @@ article > footer.fixed,
|
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
.small-padding > header.fixed {
|
|
108
|
-
transform: translateY(-
|
|
108
|
+
transform: translateY(-0.5rem);
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
.small-padding > footer.fixed {
|
|
112
|
-
transform: translateY(
|
|
112
|
+
transform: translateY(0.5rem);
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
.large-padding > header.fixed {
|
|
116
|
-
transform: translateY(-
|
|
116
|
+
transform: translateY(-1.5rem);
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
.large-padding > footer.fixed {
|
|
120
|
-
transform: translateY(
|
|
121
|
-
}
|
|
120
|
+
transform: translateY(1.5rem);
|
|
121
|
+
}
|
|
@@ -1,57 +1,58 @@
|
|
|
1
1
|
.loader {
|
|
2
|
-
--loader-
|
|
2
|
+
--loader-translate-y: 0;
|
|
3
|
+
|
|
3
4
|
display: inline-block;
|
|
4
|
-
width:
|
|
5
|
-
height:
|
|
5
|
+
width: 2.5rem;
|
|
6
|
+
height: 2.5rem;
|
|
6
7
|
border-radius: 50%;
|
|
7
|
-
border:
|
|
8
|
+
border: 0.25rem solid var(--primary);
|
|
8
9
|
clip-path: polygon(50% 50%, 0% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
|
|
9
10
|
animation: 1.6s to-loader linear infinite;
|
|
10
11
|
background: none !important;
|
|
11
12
|
}
|
|
12
13
|
|
|
13
14
|
.loader.small {
|
|
14
|
-
width:
|
|
15
|
-
height:
|
|
16
|
-
border-width:
|
|
15
|
+
width: 1.5rem;
|
|
16
|
+
height: 1.5rem;
|
|
17
|
+
border-width: 0.1875rem;
|
|
17
18
|
}
|
|
18
19
|
|
|
19
20
|
.loader.large {
|
|
20
|
-
width:
|
|
21
|
-
height:
|
|
22
|
-
border-width:
|
|
21
|
+
width: 3.5rem;
|
|
22
|
+
height: 3.5rem;
|
|
23
|
+
border-width: 0.3125rem;
|
|
23
24
|
}
|
|
24
25
|
|
|
25
26
|
.loader.red {
|
|
26
|
-
border-color: #
|
|
27
|
+
border-color: #F44336;
|
|
27
28
|
}
|
|
28
29
|
|
|
29
30
|
.loader.pink {
|
|
30
|
-
border-color: #
|
|
31
|
+
border-color: #E91E63;
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
.loader.purple {
|
|
34
|
-
border-color: #
|
|
35
|
+
border-color: #9C27B0;
|
|
35
36
|
}
|
|
36
37
|
|
|
37
38
|
.loader.deep-purple {
|
|
38
|
-
border-color: #
|
|
39
|
+
border-color: #673AB7;
|
|
39
40
|
}
|
|
40
41
|
|
|
41
42
|
.loader.indigo {
|
|
42
|
-
border-color: #
|
|
43
|
+
border-color: #3F51B5;
|
|
43
44
|
}
|
|
44
45
|
|
|
45
46
|
.loader.blue {
|
|
46
|
-
border-color: #
|
|
47
|
+
border-color: #2196F3;
|
|
47
48
|
}
|
|
48
49
|
|
|
49
50
|
.loader.light-blue {
|
|
50
|
-
border-color: #
|
|
51
|
+
border-color: #03A9F4;
|
|
51
52
|
}
|
|
52
53
|
|
|
53
54
|
.loader.cyan {
|
|
54
|
-
border-color: #
|
|
55
|
+
border-color: #00BCD4;
|
|
55
56
|
}
|
|
56
57
|
|
|
57
58
|
.loader.teal {
|
|
@@ -59,31 +60,31 @@
|
|
|
59
60
|
}
|
|
60
61
|
|
|
61
62
|
.loader.green {
|
|
62
|
-
border-color: #
|
|
63
|
+
border-color: #4CAF50;
|
|
63
64
|
}
|
|
64
65
|
|
|
65
66
|
.loader.light-green {
|
|
66
|
-
border-color: #
|
|
67
|
+
border-color: #8BC34A;
|
|
67
68
|
}
|
|
68
69
|
|
|
69
70
|
.loader.lime {
|
|
70
|
-
border-color: #
|
|
71
|
+
border-color: #CDDC39;
|
|
71
72
|
}
|
|
72
73
|
|
|
73
74
|
.loader.yellow {
|
|
74
|
-
border-color: #
|
|
75
|
+
border-color: #FFEB3B;
|
|
75
76
|
}
|
|
76
77
|
|
|
77
78
|
.loader.amber {
|
|
78
|
-
border-color: #
|
|
79
|
+
border-color: #FFC107;
|
|
79
80
|
}
|
|
80
81
|
|
|
81
82
|
.loader.orange {
|
|
82
|
-
border-color: #
|
|
83
|
+
border-color: #FF9800;
|
|
83
84
|
}
|
|
84
85
|
|
|
85
86
|
.loader.deep-orange {
|
|
86
|
-
border-color: #
|
|
87
|
+
border-color: #FF5722;
|
|
87
88
|
}
|
|
88
89
|
|
|
89
90
|
.loader.brown {
|
|
@@ -91,56 +92,65 @@
|
|
|
91
92
|
}
|
|
92
93
|
|
|
93
94
|
.loader.blue-grey {
|
|
94
|
-
border-color: #
|
|
95
|
+
border-color: #607D8B;
|
|
95
96
|
}
|
|
96
97
|
|
|
97
98
|
.loader.grey {
|
|
98
|
-
border-color: #
|
|
99
|
+
border-color: #9E9E9E;
|
|
99
100
|
}
|
|
100
101
|
|
|
101
102
|
.loader.black {
|
|
102
|
-
border-color: #
|
|
103
|
+
border-color: #000;
|
|
103
104
|
}
|
|
104
105
|
|
|
105
106
|
.loader.white {
|
|
106
|
-
border-color: #
|
|
107
|
+
border-color: #FFF;
|
|
107
108
|
}
|
|
108
109
|
|
|
109
110
|
.field > .loader {
|
|
110
|
-
--loader-
|
|
111
|
+
--loader-translate-y: -50%;
|
|
111
112
|
}
|
|
112
113
|
|
|
113
114
|
@keyframes to-loader {
|
|
114
115
|
0% {
|
|
115
|
-
transform: translateY(var(--loader-
|
|
116
|
+
transform: translateY(var(--loader-translate-y)) rotate(0deg);
|
|
116
117
|
clip-path: polygon(50% 50%, 0% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
|
|
117
118
|
}
|
|
119
|
+
|
|
118
120
|
20% {
|
|
119
121
|
clip-path: polygon(50% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
|
|
120
122
|
}
|
|
123
|
+
|
|
121
124
|
30% {
|
|
122
125
|
clip-path: polygon(50% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 50% 100%, 50% 100%);
|
|
123
126
|
}
|
|
127
|
+
|
|
124
128
|
40% {
|
|
125
|
-
clip-path: polygon(50% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
|
|
129
|
+
clip-path: polygon(50% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
|
|
126
130
|
}
|
|
131
|
+
|
|
127
132
|
50% {
|
|
128
133
|
clip-path: polygon(50% 50%, 50% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
|
|
129
134
|
}
|
|
135
|
+
|
|
130
136
|
60% {
|
|
131
137
|
clip-path: polygon(50% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
|
|
132
138
|
}
|
|
139
|
+
|
|
133
140
|
70% {
|
|
134
141
|
clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%, 0% 50%);
|
|
135
142
|
}
|
|
143
|
+
|
|
136
144
|
80% {
|
|
137
145
|
clip-path: polygon(50% 50%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 50%);
|
|
138
146
|
}
|
|
139
|
-
|
|
140
|
-
|
|
147
|
+
|
|
148
|
+
90% {
|
|
149
|
+
transform: translateY(var(--loader-translate-y)) rotate(360deg);
|
|
141
150
|
clip-path: polygon(50% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
|
|
142
151
|
}
|
|
152
|
+
|
|
143
153
|
100% {
|
|
144
154
|
clip-path: polygon(50% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
|
|
145
155
|
}
|
|
146
|
-
}
|
|
156
|
+
}
|
|
@@ -17,13 +17,13 @@ video.responsive {
|
|
|
17
17
|
object-fit: cover;
|
|
18
18
|
object-position: center;
|
|
19
19
|
transition: var(--speed3) transform, var(--speed3) border-radius, var(--speed3) padding;
|
|
20
|
-
height:
|
|
21
|
-
width:
|
|
20
|
+
height: 3rem;
|
|
21
|
+
width: 3rem;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
img.round,
|
|
25
25
|
video.round {
|
|
26
|
-
border-radius:
|
|
26
|
+
border-radius: 0.5rem;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
img.circle,
|
|
@@ -33,26 +33,26 @@ video.circle {
|
|
|
33
33
|
|
|
34
34
|
img.tiny,
|
|
35
35
|
video.tiny {
|
|
36
|
-
height:
|
|
37
|
-
width:
|
|
36
|
+
height: 2rem;
|
|
37
|
+
width: 2rem;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
img.small,
|
|
41
41
|
video.small {
|
|
42
|
-
height:
|
|
43
|
-
width:
|
|
42
|
+
height: 2.5rem;
|
|
43
|
+
width: 2.5rem;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
img.large,
|
|
47
47
|
video.large {
|
|
48
|
-
height:
|
|
49
|
-
width:
|
|
48
|
+
height: 3.5rem;
|
|
49
|
+
width: 3.5rem;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
img.extra,
|
|
53
53
|
video.extra {
|
|
54
|
-
height:
|
|
55
|
-
width:
|
|
54
|
+
height: 4rem;
|
|
55
|
+
width: 4rem;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
img.responsive,
|
|
@@ -65,72 +65,72 @@ video.responsive {
|
|
|
65
65
|
button > img.responsive,
|
|
66
66
|
.button > img.responsive,
|
|
67
67
|
.chip > img.responsive {
|
|
68
|
-
width:
|
|
68
|
+
width: 2.5rem;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
button:not(.transparent) > img.responsive,
|
|
72
72
|
.button:not(.transparent) > img.responsive,
|
|
73
73
|
.chip:not(.transparent) > img.responsive {
|
|
74
|
-
border:
|
|
74
|
+
border: 0.25rem solid transparent;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
button.small > img.responsive,
|
|
78
78
|
.button.small > img.responsive,
|
|
79
79
|
.chip.small > img.responsive {
|
|
80
|
-
width:
|
|
80
|
+
width: 2rem;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
button.large > img.responsive,
|
|
84
84
|
.button.large > img.responsive,
|
|
85
85
|
.chip.large > img.responsive {
|
|
86
|
-
width:
|
|
86
|
+
width: 3rem;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
button.extra > img.responsive,
|
|
90
90
|
.button.extra > img.responsive,
|
|
91
91
|
.chip.extra > img.responsive {
|
|
92
|
-
width:
|
|
92
|
+
width: 3.5rem;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
img.responsive.tiny,
|
|
96
96
|
video.responsive.tiny {
|
|
97
97
|
width: 100%;
|
|
98
|
-
height:
|
|
98
|
+
height: 4rem;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
img.responsive.small,
|
|
102
102
|
video.responsive.small {
|
|
103
103
|
width: 100%;
|
|
104
|
-
height:
|
|
104
|
+
height: 8rem;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
img.responsive.medium,
|
|
108
108
|
video.responsive.medium {
|
|
109
109
|
width: 100%;
|
|
110
|
-
height:
|
|
110
|
+
height: 12rem;
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
img.responsive.large,
|
|
114
114
|
video.responsive.large {
|
|
115
115
|
width: 100%;
|
|
116
|
-
height:
|
|
116
|
+
height: 16rem;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
img.responsive.extra,
|
|
120
120
|
video.responsive.extra {
|
|
121
121
|
width: 100%;
|
|
122
|
-
height:
|
|
122
|
+
height: 20rem;
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
img.responsive.round,
|
|
126
126
|
video.responsive.round {
|
|
127
|
-
border-radius:
|
|
127
|
+
border-radius: 2rem;
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
img.empty-state,
|
|
131
131
|
video.empty-state {
|
|
132
132
|
max-width: 100%;
|
|
133
|
-
width:
|
|
133
|
+
width: 24rem;
|
|
134
134
|
}
|
|
135
135
|
|
|
136
136
|
button > img:not(.responsive, .tiny, .small, .medium, .large, .extra),
|
|
@@ -139,10 +139,10 @@ button > img:not(.responsive, .tiny, .small, .medium, .large, .extra),
|
|
|
139
139
|
.field > img:not(.responsive, .tiny, .small, .medium, .large, .extra),
|
|
140
140
|
.tabs img:not(.responsive, .tiny, .small, .medium, .large, .extra),
|
|
141
141
|
td img:not(.responsive, .tiny, .small, .medium, .large, .extra) {
|
|
142
|
-
min-width:
|
|
143
|
-
max-width:
|
|
144
|
-
min-height:
|
|
145
|
-
max-height:
|
|
142
|
+
min-width: 1.5rem;
|
|
143
|
+
max-width: 1.5rem;
|
|
144
|
+
min-height: 1.5rem;
|
|
145
|
+
max-height: 1.5rem;
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
.button > i,
|
|
@@ -154,25 +154,25 @@ button > img.responsive,
|
|
|
154
154
|
.chip > i,
|
|
155
155
|
.chip > img,
|
|
156
156
|
.chip > img.responsive {
|
|
157
|
-
margin: 0 -
|
|
157
|
+
margin: 0 -0.5rem;
|
|
158
158
|
}
|
|
159
159
|
|
|
160
|
-
.button > img.responsive,
|
|
160
|
+
.button > img.responsive,
|
|
161
161
|
button > img.responsive {
|
|
162
|
-
margin-left: -
|
|
162
|
+
margin-left: -1.5rem;
|
|
163
163
|
}
|
|
164
164
|
|
|
165
165
|
.button > span + img.responsive,
|
|
166
166
|
button > span + img.responsive {
|
|
167
|
-
margin-right: -
|
|
167
|
+
margin-right: -1.5rem;
|
|
168
168
|
}
|
|
169
169
|
|
|
170
170
|
.chip > img.responsive {
|
|
171
|
-
margin-left: -
|
|
171
|
+
margin-left: -1rem;
|
|
172
172
|
}
|
|
173
173
|
|
|
174
174
|
.chip > span + img.responsive {
|
|
175
|
-
margin-right: -
|
|
175
|
+
margin-right: -1rem;
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
.circle > img.responsive,
|
|
@@ -184,14 +184,14 @@ button > span + img.responsive {
|
|
|
184
184
|
.extend > img {
|
|
185
185
|
margin: 0;
|
|
186
186
|
position: absolute;
|
|
187
|
-
left:
|
|
187
|
+
left: 1rem;
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
.extend > img.responsive {
|
|
191
191
|
left: 0;
|
|
192
|
-
width:
|
|
192
|
+
width: 3.5rem;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
.extend.border > img.responsive {
|
|
196
|
-
width:
|
|
197
|
-
}
|
|
196
|
+
width: 3.375rem;
|
|
197
|
+
}
|
|
@@ -5,21 +5,21 @@
|
|
|
5
5
|
box-shadow: var(--elevate2);
|
|
6
6
|
color: var(--on-surface);
|
|
7
7
|
background-color: var(--surface);
|
|
8
|
-
padding:
|
|
8
|
+
padding: 1rem;
|
|
9
9
|
z-index: 100;
|
|
10
10
|
left: 50%;
|
|
11
11
|
top: 10%;
|
|
12
|
-
min-width:
|
|
12
|
+
min-width: 20rem;
|
|
13
13
|
max-width: 100%;
|
|
14
14
|
max-height: 80%;
|
|
15
15
|
overflow-x: hidden;
|
|
16
16
|
overflow-y: auto;
|
|
17
17
|
transition: var(--speed3) all, 0s background-color;
|
|
18
|
-
transform: translate(-50%, -
|
|
18
|
+
transform: translate(-50%, -4rem);
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
.modal:not(.left, .right, .top, .bottom) {
|
|
22
|
-
border-radius:
|
|
22
|
+
border-radius: 0.75rem;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
.modal.small {
|
|
@@ -110,38 +110,38 @@
|
|
|
110
110
|
height: 100%;
|
|
111
111
|
max-width: 100%;
|
|
112
112
|
max-height: 100%;
|
|
113
|
-
transform: translateY(
|
|
113
|
+
transform: translateY(4rem);
|
|
114
114
|
border-radius: 0;
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
.modal.left.small,
|
|
118
118
|
.modal.right.small {
|
|
119
|
-
width:
|
|
119
|
+
width: 20rem;
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
.modal.left.medium,
|
|
123
123
|
.modal.right.medium {
|
|
124
|
-
width:
|
|
124
|
+
width: 32rem;
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
.modal.left.large,
|
|
128
128
|
.modal.right.large {
|
|
129
|
-
width:
|
|
129
|
+
width: 44rem;
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
.modal.top.small,
|
|
133
133
|
.modal.bottom.small {
|
|
134
|
-
height:
|
|
134
|
+
height: 16rem;
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
.modal.top.medium,
|
|
138
138
|
.modal.bottom.medium {
|
|
139
|
-
height:
|
|
139
|
+
height: 24rem;
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
.modal.top.large,
|
|
143
143
|
.modal.bottom.large {
|
|
144
|
-
height:
|
|
144
|
+
height: 32rem;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
nav > .modal,
|
|
@@ -150,19 +150,19 @@ nav.left > .modal {
|
|
|
150
150
|
text-align: left;
|
|
151
151
|
overflow-y: auto;
|
|
152
152
|
background-color: inherit;
|
|
153
|
-
padding:
|
|
153
|
+
padding: 1rem 1rem 1rem 5rem;
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
nav.right > .modal {
|
|
157
|
-
padding:
|
|
157
|
+
padding: 1rem 5rem 1rem 1rem;
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
nav.top > .modal {
|
|
161
|
-
padding:
|
|
161
|
+
padding: 5rem 3rem 1rem;
|
|
162
162
|
}
|
|
163
163
|
|
|
164
164
|
nav.bottom > .modal {
|
|
165
|
-
padding:
|
|
165
|
+
padding: 1rem 3rem 5rem;
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
.modal > a.row:hover,
|
|
@@ -171,5 +171,5 @@ nav.bottom > .modal {
|
|
|
171
171
|
}
|
|
172
172
|
|
|
173
173
|
.modal > .row {
|
|
174
|
-
padding:
|
|
175
|
-
}
|
|
174
|
+
padding: 0.75rem 0.5rem;
|
|
175
|
+
}
|