@mjsz-vbr-elements/shared 2.1.0-beta.10
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/dist/css/cards.css +85 -0
- package/dist/css/common.css +319 -0
- package/dist/css/dropdown.css +33 -0
- package/dist/css/forms.css +63 -0
- package/dist/css/game-center.css +256 -0
- package/dist/css/grid.css +36 -0
- package/dist/css/paginator.css +49 -0
- package/dist/css/playoffs.css +110 -0
- package/dist/css/progress.css +56 -0
- package/dist/css/reset.css +32 -0
- package/dist/css/responsive-table.css +10 -0
- package/dist/css/table.css +244 -0
- package/dist/css/typography.css +47 -0
- package/dist/icons/IconArrowDown.js +18 -0
- package/dist/icons/IconArrowUp.js +18 -0
- package/dist/icons/IconBroadcast.js +39 -0
- package/dist/icons/IconHockeyPuck.js +19 -0
- package/dist/icons/IconLeft.js +20 -0
- package/dist/icons/IconMore.js +34 -0
- package/dist/icons/IconRight.js +20 -0
- package/dist/icons/IconSheet.js +28 -0
- package/dist/icons/IconSort.js +24 -0
- package/dist/icons/IconSortAsc.js +24 -0
- package/dist/icons/IconSortDesc.js +24 -0
- package/dist/icons/IconTimer.js +19 -0
- package/dist/icons/IconWarning.js +32 -0
- package/dist/icons/IconWhistle.js +15 -0
- package/dist/icons/IconYoutube.js +21 -0
- package/dist/icons/index.js +3 -0
- package/package.json +44 -0
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
.mjsz-vbr-gamecenter-game-data {
|
|
2
|
+
margin-bottom: 30px;
|
|
3
|
+
text-align: center;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.mjsz-vbr-gamecenter-game-data .is-teams-and-results {
|
|
7
|
+
display: grid;
|
|
8
|
+
grid-template-columns: 1fr;
|
|
9
|
+
justify-items: center;
|
|
10
|
+
align-items: flex-end;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@media all and (min-width: 576px) {
|
|
14
|
+
|
|
15
|
+
.mjsz-vbr-gamecenter-game-data .is-teams-and-results {
|
|
16
|
+
grid-template-columns: repeat(3, 1fr)
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.mjsz-vbr-gamecenter-game-data .is-title {
|
|
21
|
+
color: var(--vbr-widget-gamecenter-title-color);
|
|
22
|
+
font-size: var(--vbr-widget-gamecenter-title-size);
|
|
23
|
+
font-weight: 700;
|
|
24
|
+
text-transform: uppercase;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.mjsz-vbr-gamecenter-game-data .is-gamedate {
|
|
28
|
+
color: var(--vbr-widget-gamecenter-gamedate-color);
|
|
29
|
+
font-size: var(--vbr-widget-gamecenter-gamedate-size);
|
|
30
|
+
text-transform: uppercase;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.mjsz-vbr-gamecenter-game-data .is-local-gamedate {
|
|
34
|
+
color: var(--vbr-widget-gamecenter-local-gamedate-color);
|
|
35
|
+
font-size: var(--vbr-widget-gamecenter-local-gamedate-size);
|
|
36
|
+
text-transform: uppercase;
|
|
37
|
+
margin-bottom: 30px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.mjsz-vbr-gamecenter-game-data .is-game-result {
|
|
41
|
+
color: var(--vbr-widget-gamecenter-result-color);
|
|
42
|
+
font-weight: 700;
|
|
43
|
+
font-size: var(--vbr-widget-gamecenter-result-size);
|
|
44
|
+
line-height: var(--vbr-widget-gamecenter-result-size);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.mjsz-vbr-gamecenter-game-data .is-team-name {
|
|
48
|
+
color: var(--vbr-widget-gamecenter-teamname-color);
|
|
49
|
+
font-weight: 700;
|
|
50
|
+
font-size: var(--vbr-widget-gamecenter-teamname-size);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.mjsz-vbr-gamecenter-game-data .is-game-status {
|
|
54
|
+
color: var(--vbr-widget-gamecenter-gamestatus-color);
|
|
55
|
+
font-size: var(--vbr-widget-gamecenter-gamestatus-size);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.mjsz-vbr-gamecenter-game-data .is-period-results {
|
|
59
|
+
color: var(--vbr-widget-gamecenter-periodresults-color);
|
|
60
|
+
font-size: var(--vbr-widget-gamecenter-periodresults-size);
|
|
61
|
+
font-weight: 500;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.mjsz-vbr-gamecenter-game-data .is-team-logo {
|
|
65
|
+
margin: auto;
|
|
66
|
+
display: block;
|
|
67
|
+
width: 128px;
|
|
68
|
+
height: 128px;
|
|
69
|
+
}
|
|
70
|
+
.mjsz-vbr-gamecenter-game-stats {
|
|
71
|
+
margin-bottom: 20px;
|
|
72
|
+
}
|
|
73
|
+
.mjsz-vbr-gamecenter-game-stats [data-placement] {
|
|
74
|
+
z-index: 1000;
|
|
75
|
+
}
|
|
76
|
+
.mjsz-vbr-gamecenter-game-stats .is-popover-content {
|
|
77
|
+
display: flex;
|
|
78
|
+
flex-direction: column;
|
|
79
|
+
gap: 20px;
|
|
80
|
+
padding: 16px;
|
|
81
|
+
background-color: var(--vbr-widget-primary-color-50);
|
|
82
|
+
}
|
|
83
|
+
.mjsz-vbr-gamecenter-game-stats-container-wrapper {
|
|
84
|
+
--columns: 1fr;
|
|
85
|
+
|
|
86
|
+
display: grid;
|
|
87
|
+
grid-template-columns: var(--columns);
|
|
88
|
+
gap: 20px;
|
|
89
|
+
justify-items: center;
|
|
90
|
+
padding: 20px;
|
|
91
|
+
background-color: var(--vbr-widget-gamecenter-stats-bg-color);
|
|
92
|
+
border: 1px solid var(--vbr-widget-gamecenter-stats-border-color);
|
|
93
|
+
}
|
|
94
|
+
@media all and (min-width: 768px) {
|
|
95
|
+
.mjsz-vbr-gamecenter-game-stats-container-wrapper {
|
|
96
|
+
--columns: repeat(2, 1fr)
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
@media all and (min-width: 992px) {
|
|
100
|
+
.mjsz-vbr-gamecenter-game-stats-container-wrapper {
|
|
101
|
+
--columns: repeat(3, 1fr)
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
.mjsz-vbr-gamecenter-game-stats-container {
|
|
105
|
+
text-align: center;
|
|
106
|
+
}
|
|
107
|
+
.mjsz-vbr-gamecenter-game-stats-container dt {
|
|
108
|
+
font-size: var(--vbr-widget-gamecenter-stats-title-size);
|
|
109
|
+
color: var(--vbr-widget-gamecenter-stats-title-color);
|
|
110
|
+
text-transform: uppercase;
|
|
111
|
+
}
|
|
112
|
+
.mjsz-vbr-gamecenter-game-stats-container dt button {
|
|
113
|
+
width: var(--vbr-widget-gamecenter-stats-title-size);
|
|
114
|
+
}
|
|
115
|
+
.mjsz-vbr-gamecenter-game-stats-container dd {
|
|
116
|
+
font-size: var(--vbr-widget-gamecenter-stats-size);
|
|
117
|
+
color: var(--vbr-widget-gamecenter-stats-color);
|
|
118
|
+
}
|
|
119
|
+
.mjsz-vbr-gamecenter-game-events {
|
|
120
|
+
container-name: rows;
|
|
121
|
+
container-type: inline-size;
|
|
122
|
+
margin-bottom: 20px;
|
|
123
|
+
border: 1px solid var(--vbr-widget-gamecenter-stats-border-color);
|
|
124
|
+
}
|
|
125
|
+
.mjsz-vbr-gamecenter-game-events .is-period-header {
|
|
126
|
+
padding: 10px 20px;
|
|
127
|
+
text-align: center;
|
|
128
|
+
color: var(--vbr-widget-gamecenter-period-header-color);
|
|
129
|
+
background-color: var(--vbr-widget-gamecenter-period-header-bg-color);
|
|
130
|
+
}
|
|
131
|
+
.mjsz-vbr-gamecenter-game-events .is-no-action {
|
|
132
|
+
padding: 10px;
|
|
133
|
+
text-align: center;
|
|
134
|
+
}
|
|
135
|
+
.mjsz-vbr-gamecenter-game-event {
|
|
136
|
+
--cols: 1fr 1fr 1fr 1fr 1fr 1fr 6fr;
|
|
137
|
+
display: grid;
|
|
138
|
+
grid-template-columns: var(--cols);
|
|
139
|
+
align-items: center;
|
|
140
|
+
}
|
|
141
|
+
@container rows (max-width: 500px) {
|
|
142
|
+
.mjsz-vbr-gamecenter-game-event {
|
|
143
|
+
--cols: 1fr 1fr 1fr 1fr 1fr 1fr
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.mjsz-vbr-gamecenter-game-event > *:last-of-type {
|
|
147
|
+
grid-column: 2/7;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
.mjsz-vbr-gamecenter-game-event:nth-child(odd) {
|
|
151
|
+
background-color: var(--vbr-widget-table-stripped-bg-color);
|
|
152
|
+
}
|
|
153
|
+
.mjsz-vbr-gamecenter-game-event > * {
|
|
154
|
+
padding: 10px;
|
|
155
|
+
}
|
|
156
|
+
.mjsz-vbr-gamecenter-game-event .is-team-logo-cell span {
|
|
157
|
+
display: inline-block;
|
|
158
|
+
}
|
|
159
|
+
.mjsz-vbr-gamecenter-game-event .is-team-logo-cell img {
|
|
160
|
+
display: block;
|
|
161
|
+
width: 40px;
|
|
162
|
+
height: 40px;
|
|
163
|
+
}
|
|
164
|
+
.mjsz-vbr-gamecenter-game-event .is-icon-cell svg {
|
|
165
|
+
width: 25px;
|
|
166
|
+
height: 25px;
|
|
167
|
+
}
|
|
168
|
+
.mjsz-vbr-gamecenter-game-event .is-penalty-icon {
|
|
169
|
+
color: var(--vbr-widget-primary-color-300);
|
|
170
|
+
}
|
|
171
|
+
.mjsz-vbr-gamecenter-game-event .is-goal-icon {
|
|
172
|
+
color: var(--vbr-widget-danger-color-a400);
|
|
173
|
+
}
|
|
174
|
+
.mjsz-vbr-gamecenter-game-event .is-timer-icon {
|
|
175
|
+
color: var(--vbr-widget-secondary-color-500);
|
|
176
|
+
}
|
|
177
|
+
.mjsz-vbr-gamecenter-game-event .is-goalie-in-icon {
|
|
178
|
+
color: var(--vbr-widget-secondary-color-500);
|
|
179
|
+
}
|
|
180
|
+
.mjsz-vbr-gamecenter-game-event .is-goalie-out-icon {
|
|
181
|
+
color: var(--vbr-widget-danger-color-a400);
|
|
182
|
+
}
|
|
183
|
+
.mjsz-vbr-gamecenter-game-event .is-time-cell {
|
|
184
|
+
font-weight: 700;
|
|
185
|
+
}
|
|
186
|
+
.mjsz-vbr-gamecenter-game-event .is-penalty-cell {
|
|
187
|
+
font-size: var(--vbr-widget-gamecenter-events-penalty-size);
|
|
188
|
+
text-align: center;
|
|
189
|
+
}
|
|
190
|
+
.mjsz-vbr-gamecenter-game-event .is-score {
|
|
191
|
+
font-size: var(--vbr-widget-gamecenter-events-score-size);
|
|
192
|
+
font-weight: 700;
|
|
193
|
+
text-align: center;
|
|
194
|
+
color: var(--vbr-widget-danger-color-a400);
|
|
195
|
+
}
|
|
196
|
+
.mjsz-vbr-gamecenter-game-event .is-goalie-direction {
|
|
197
|
+
font-size: var(--vbr-widget-gamecenter-events-goalie-direction-size);
|
|
198
|
+
text-align: center;
|
|
199
|
+
color: var(--vbr-widget-primary-color-400);
|
|
200
|
+
}
|
|
201
|
+
.mjsz-vbr-gamecenter-game-event .is-assists-list {
|
|
202
|
+
font-size: var(--vbr-widget-gamecenter-events-assitst-list-size);
|
|
203
|
+
color: var(--vbr-widget-primary-color-400);
|
|
204
|
+
}
|
|
205
|
+
.mjsz-vbr-gamecenter-game-event .is-assists-list span::after {
|
|
206
|
+
content: ' / ';
|
|
207
|
+
}
|
|
208
|
+
.mjsz-vbr-gamecenter-game-event .is-assists-list span:last-child::after {
|
|
209
|
+
content: '';
|
|
210
|
+
}
|
|
211
|
+
.mjsz-vbr-gamecenter-game-event .is-poi-data {
|
|
212
|
+
font-size: var(--vbr-widget-gamecenter-events-poi-list-size);
|
|
213
|
+
color: var(--vbr-widget-primary-color-400);
|
|
214
|
+
}
|
|
215
|
+
.mjsz-vbr-gamecenter-game-event .is-poi-data ul {
|
|
216
|
+
display: inline-flex;
|
|
217
|
+
}
|
|
218
|
+
.mjsz-vbr-gamecenter-game-event .is-poi-data ul li::after {
|
|
219
|
+
content: ',';
|
|
220
|
+
margin-right: 2px;
|
|
221
|
+
}
|
|
222
|
+
.mjsz-vbr-gamecenter-game-event .is-poi-data ul li:last-child::after {
|
|
223
|
+
content: '';
|
|
224
|
+
}
|
|
225
|
+
.mjsz-vbr-gamecenter-game-event .is-player-number {
|
|
226
|
+
font-weight: 400;
|
|
227
|
+
font-style: italic;
|
|
228
|
+
color: var(--vbr-widget-primary-color-500);
|
|
229
|
+
}
|
|
230
|
+
.mjsz-vbr-gamecenter-game-event .is-light-cell {
|
|
231
|
+
color: var(--vbr-widget-primary-color-400);
|
|
232
|
+
}
|
|
233
|
+
.mjsz-vbr-gamecenter-data-table {
|
|
234
|
+
border: 1px solid var(--vbr-widget-gamecenter-team-container-border-color);
|
|
235
|
+
min-width: 0;
|
|
236
|
+
}
|
|
237
|
+
.mjsz-vbr-gamecenter-data-table h2 {
|
|
238
|
+
padding: 8px;
|
|
239
|
+
font-size: var(--vbr-widget-gamecenter-team-container-title-size);
|
|
240
|
+
font-weight: 500;
|
|
241
|
+
color: var(--vbr-widget-gamecenter-team-container-title-color);
|
|
242
|
+
background-color: var(--vbr-widget-gamecenter-team-container-title-bg-color);
|
|
243
|
+
}
|
|
244
|
+
.mjsz-vbr-gamecenter-data-columns {
|
|
245
|
+
--columns: 1fr;
|
|
246
|
+
|
|
247
|
+
display: grid;
|
|
248
|
+
grid-template-columns: var(--columns);
|
|
249
|
+
gap: 20px;
|
|
250
|
+
margin-bottom: 20px;
|
|
251
|
+
}
|
|
252
|
+
@media all and (min-width: 576px) {
|
|
253
|
+
.mjsz-vbr-gamecenter-data-columns {
|
|
254
|
+
--columns: repeat(2, 1fr)
|
|
255
|
+
}
|
|
256
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
.g-row {
|
|
2
|
+
display: flex;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.g-row-wrap {
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-wrap: wrap;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.g-col {
|
|
11
|
+
flex: 1 0 0%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
[class^='g-col-'] {
|
|
15
|
+
flex: 0 0 auto;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.g-col-6 {
|
|
19
|
+
width: 50%;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.g-col-5 {
|
|
23
|
+
width: 41.66666667%;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.g-col-3 {
|
|
27
|
+
width: 25%;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.g-col-auto {
|
|
31
|
+
width: auto;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.g-gap-normal {
|
|
35
|
+
gap: 20px;
|
|
36
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
.mjsz-vbr-paginator {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: row;
|
|
4
|
+
list-style-type: none;
|
|
5
|
+
margin: 10px 0;
|
|
6
|
+
padding: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.mjsz-vbr-paginator button,
|
|
10
|
+
.mjsz-vbr-paginator div {
|
|
11
|
+
display: flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
justify-content: center;
|
|
14
|
+
padding: 6px 12px;
|
|
15
|
+
text-decoration: none;
|
|
16
|
+
cursor: pointer;
|
|
17
|
+
color: var(--vbr-widget-paginator-color);
|
|
18
|
+
border: 1px solid var(--vbr-widget-paginator-border-color);
|
|
19
|
+
background-color: var(--vbr-widget-paginator-bg-color);
|
|
20
|
+
margin-left: -1px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.mjsz-vbr-paginator button .icon, .mjsz-vbr-paginator div .icon {
|
|
24
|
+
width: 16px;
|
|
25
|
+
height: 16px;
|
|
26
|
+
margin: 0 -4px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.mjsz-vbr-paginator button:hover:not(.mjsz-vbr-paginator button.is-disabled,.mjsz-vbr-paginator button.is-active), .mjsz-vbr-paginator div:hover:not(.mjsz-vbr-paginator div.is-disabled,.mjsz-vbr-paginator div.is-active) {
|
|
30
|
+
color: var(--vbr-widget-paginator-hover-color);
|
|
31
|
+
background-color: var(--vbr-widget-paginator-hover-bg-color);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.mjsz-vbr-paginator button:disabled,
|
|
35
|
+
.mjsz-vbr-paginator button.is-disabled,
|
|
36
|
+
.mjsz-vbr-paginator div:disabled,
|
|
37
|
+
.mjsz-vbr-paginator div.is-disabled {
|
|
38
|
+
color: var(--vbr-widget-paginator-disabled-color);
|
|
39
|
+
background-color: var(--vbr-widget-paginator-bg-color);
|
|
40
|
+
pointer-events: none;
|
|
41
|
+
cursor: default;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.mjsz-vbr-paginator button.is-active, .mjsz-vbr-paginator div.is-active {
|
|
45
|
+
color: var(--vbr-widget-paginator-active-color);
|
|
46
|
+
background-color: var(--vbr-widget-paginator-active-bg-color);
|
|
47
|
+
border-color: var(--vbr-widget-paginator-active-bg-color);
|
|
48
|
+
cursor: default;
|
|
49
|
+
}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table-grid {
|
|
2
|
+
display: grid;
|
|
3
|
+
grid-template-columns: 60px 150px minmax(60px, 0.41fr) minmax(160px, 1fr) minmax(40px, 60px) 70px minmax(160px, 1fr) minmax(
|
|
4
|
+
180px,
|
|
5
|
+
0.9fr
|
|
6
|
+
);
|
|
7
|
+
color: var(--vbr-widget-table-color);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table-grid:nth-child(odd) {
|
|
11
|
+
background-color: var(--vbr-widget-table-stripped-bg-color);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table-grid > div {
|
|
15
|
+
padding: 8px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table-grid .is-truncate {
|
|
19
|
+
overflow: visible;
|
|
20
|
+
text-overflow: ellipsis;
|
|
21
|
+
white-space: nowrap;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table-grid .is-text-right {
|
|
25
|
+
text-align: right;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table-grid .is-text-center {
|
|
29
|
+
text-align: center;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table-grid .is-text-bold {
|
|
33
|
+
font-weight: 900;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table-grid .is-text-light {
|
|
37
|
+
color: var(--vbr-widget-table-cell-light-color);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table-grid .is-text-dark {
|
|
41
|
+
color: var(--vbr-widget-table-cell-dark-color);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table-grid .is-text-accent {
|
|
45
|
+
color: var(--vbr-widget-secondary-color-500);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table-grid .label {
|
|
49
|
+
padding: 3px 6px;
|
|
50
|
+
font-size: 11px;
|
|
51
|
+
font-weight: 700;
|
|
52
|
+
color: var(--vbr-widget-table-label-color);
|
|
53
|
+
background-color: var(--vbr-widget-table-label-bg-color);
|
|
54
|
+
border-radius: 2px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table-grid .label:not(:last-of-type) {
|
|
58
|
+
margin-right: 3px;
|
|
59
|
+
}
|
|
60
|
+
/* table-layout: fixed; */
|
|
61
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table table,
|
|
62
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table th,
|
|
63
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table td {
|
|
64
|
+
border-collapse: collapse;
|
|
65
|
+
}
|
|
66
|
+
@media (max-width: 600px) {
|
|
67
|
+
.mjsz-vbr-playoffs .mjsz-vbr-table {
|
|
68
|
+
table-layout: auto
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
.mjsz-vbr-playoffs .mjsz-vbr-section-title {
|
|
72
|
+
padding: 10px;
|
|
73
|
+
text-align: center;
|
|
74
|
+
font-size: 16px;
|
|
75
|
+
font-weight: 700;
|
|
76
|
+
color: var(--vbr-widget-primary-color-100);
|
|
77
|
+
background-color: var(--vbr-widget-primary-color-700);
|
|
78
|
+
}
|
|
79
|
+
.mjsz-vbr-playoffs .mjsz-vbr-section-details {
|
|
80
|
+
display: grid;
|
|
81
|
+
grid-template-columns: 1fr;
|
|
82
|
+
align-items: center;
|
|
83
|
+
justify-items: center;
|
|
84
|
+
gap: 20px;
|
|
85
|
+
padding: 20px;
|
|
86
|
+
background-color: var(--vbr-widget-primary-color-50);
|
|
87
|
+
}
|
|
88
|
+
@media all and (min-width: 576px) {
|
|
89
|
+
.mjsz-vbr-playoffs .mjsz-vbr-section-details {
|
|
90
|
+
grid-template-columns: 1fr fit-content(100px) fit-content(100px) fit-content(100px) 1fr;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
.mjsz-vbr-playoffs .mjsz-vbr-section-details .is-logo-image {
|
|
94
|
+
width: 70px;
|
|
95
|
+
height: 70px;
|
|
96
|
+
}
|
|
97
|
+
.mjsz-vbr-playoffs .mjsz-vbr-section-details .is-result {
|
|
98
|
+
font-size: 4rem;
|
|
99
|
+
font-weight: 700;
|
|
100
|
+
text-align: center;
|
|
101
|
+
color: var(--vbr-widget-primary-color-800);
|
|
102
|
+
}
|
|
103
|
+
.mjsz-vbr-playoffs .mjsz-vbr-section-details .is-team-name {
|
|
104
|
+
font-size: 20px;
|
|
105
|
+
font-weight: 700;
|
|
106
|
+
color: var(--vbr-widget-primary-color-800);
|
|
107
|
+
}
|
|
108
|
+
.mjsz-vbr-playoffs .mjsz-vbr-section-details .is-right {
|
|
109
|
+
text-align: right;
|
|
110
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
.mjsz-vbr-progress {
|
|
2
|
+
display: flex;
|
|
3
|
+
height: var(--vbr-widget-progress-height);
|
|
4
|
+
overflow: hidden;
|
|
5
|
+
font-size: 10px;
|
|
6
|
+
background-color: var(--vbr-widget-progress-bg-color);
|
|
7
|
+
border-radius: var(--vbr-widget-progress-border-radius);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.mjsz-vbr-progress-bar {
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
justify-content: center;
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
width: 100%;
|
|
16
|
+
color: var(--vbr-widget-primary-color-0);
|
|
17
|
+
text-align: center;
|
|
18
|
+
white-space: nowrap;
|
|
19
|
+
transform-origin: left;
|
|
20
|
+
background-color: var(--vbr-widget-progress-bar-color);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.mjsz-vbr-progress-bar-stripped {
|
|
24
|
+
--color: var(--vbr-widget-progress-bar-stripe-color);
|
|
25
|
+
--angle: var(--vbr-widget-progress-bar-stripe-angle);
|
|
26
|
+
|
|
27
|
+
background-image: linear-gradient(
|
|
28
|
+
var(--angle),
|
|
29
|
+
var(--color) 25%,
|
|
30
|
+
transparent 25%,
|
|
31
|
+
transparent 50%,
|
|
32
|
+
var(--color) 50%,
|
|
33
|
+
var(--color) 75%,
|
|
34
|
+
transparent 75%,
|
|
35
|
+
transparent
|
|
36
|
+
);
|
|
37
|
+
|
|
38
|
+
background-size: var(--vbr-widget-progress-height) var(--vbr-widget-progress-height);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.mjsz-vbr-progress-bar-animated {
|
|
42
|
+
animation: 1s linear infinite progress-bar-stripes;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@media (prefers-reduced-motion: reduce) {
|
|
46
|
+
|
|
47
|
+
.mjsz-vbr-progress-bar-animated {
|
|
48
|
+
animation: none
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@keyframes progress-bar-stripes {
|
|
53
|
+
0% {
|
|
54
|
+
background-position-x: var(--vbr-widget-progress-height);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
h1,
|
|
2
|
+
h2,
|
|
3
|
+
h3,
|
|
4
|
+
ul,
|
|
5
|
+
li,
|
|
6
|
+
dl,
|
|
7
|
+
dt,
|
|
8
|
+
dd {
|
|
9
|
+
margin: 0;
|
|
10
|
+
padding: 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
button {
|
|
14
|
+
font-family: inherit;
|
|
15
|
+
font-size: 100%;
|
|
16
|
+
font-weight: inherit;
|
|
17
|
+
line-height: inherit;
|
|
18
|
+
color: inherit;
|
|
19
|
+
margin: 0;
|
|
20
|
+
padding: 0;
|
|
21
|
+
|
|
22
|
+
border-width: 0;
|
|
23
|
+
-webkit-appearance: button;
|
|
24
|
+
background-color: transparent;
|
|
25
|
+
background-image: none;
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
ol,
|
|
30
|
+
ul {
|
|
31
|
+
list-style: none;
|
|
32
|
+
}
|