@golstats/gsc-lineups-reports 1.0.3 → 1.0.5
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/gsc-lineups-reports.css +1 -1
- package/dist/gsc-lineups-reports.es.js +1282 -1237
- package/dist/gsc-lineups-reports.umd.js +7 -7
- package/package.json +1 -1
- package/src/components/Lineup2D/LineupField.vue +251 -97
- package/src/components/gsc-header-historico-lineup.vue +962 -883
- package/src/components/gsc-header-postmatch-lineup.vue +896 -847
- package/src/components/gsc-header-recientes-lineup.vue +1923 -1459
- package/src/components/gsc-lineups.vue +50 -23
- package/dist/atajada.svg +0 -57
- package/dist/backarrow.svg +0 -3
- package/dist/cancha-3d.png +0 -0
- package/dist/contorno-escudo.svg +0 -3
- package/dist/escudo1.png +0 -0
- package/dist/escudo2.png +0 -0
- package/dist/favicon.ico +0 -0
- package/dist/field-green-posesion.png +0 -0
- package/dist/fin-del-partido.svg +0 -44
- package/dist/fuera-de-lugar.svg +0 -58
- package/dist/gol.svg +0 -49
- package/dist/group-427321178.svg +0 -8
- package/dist/group-427321179.svg +0 -5
- package/dist/group-427321501.svg +0 -5
- package/dist/icn-arrow-expand.svg +0 -3
- package/dist/icn-cambio.svg +0 -27
- package/dist/icn-expand-arrow.svg +0 -3
- package/dist/icn-expand-arrow1.svg +0 -3
- package/dist/icn-falta.svg +0 -43
- package/dist/icn-filter.svg +0 -12
- package/dist/icn-filter1.svg +0 -12
- package/dist/icn-filter2.svg +0 -12
- package/dist/icn-golstats.png +0 -0
- package/dist/icn-play.svg +0 -10
- package/dist/icn-tarjeta-amarilla.svg +0 -4
- package/dist/icn-tarjeta-roja.svg +0 -4
- package/dist/icn-tiro-a-porteria.svg +0 -36
- package/dist/icn-tiros-de-esquina.svg +0 -55
- package/dist/images/events/cambio.svg +0 -27
- package/dist/images/events/falta.svg +0 -43
- package/dist/images/events/generic.svg +0 -1
- package/dist/images/events/tiro-de-esquina.svg +0 -55
- package/dist/inicia-el-partido.svg +0 -46
- package/dist/jugada-peligrosa.svg +0 -91
- package/dist/line-white.png +0 -0
- package/dist/line.png +0 -0
- package/dist/next-arrow.svg +0 -3
- package/dist/nextarrow.svg +0 -3
- package/dist/penal-fallado.svg +0 -195
- package/dist/penal-marcado.svg +0 -190
- package/dist/play-icn.svg +0 -3
- package/dist/shape.svg +0 -3
- package/dist/styles.css +0 -1191
- package/dist/tiempo-agregado.svg +0 -75
- package/dist/tiro-a-porteria.svg +0 -81
- package/dist/var.png +0 -0
- package/dist/var.svg +0 -31
|
@@ -1,323 +1,404 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
2
|
+
<div :class="$style.gscheaderlineup">
|
|
3
|
+
<div :class="$style.headerSeccionAlineaciones">
|
|
4
|
+
<div :class="headerSeccionAlineaciones1Class" id="header-desktop">
|
|
5
|
+
<!-- alineaciones switch -->
|
|
6
|
+
|
|
7
|
+
<div :class="$style.groupsLeagueParent">
|
|
8
|
+
<div :class="$style.groupsLeague">
|
|
9
|
+
<span>Las alineaciones de este partido </span>
|
|
10
|
+
<span :class="$style.anNoEstn">aún no están disponibles</span>
|
|
11
|
+
<span>. Por lo pronto puedes ver alineaciones: </span>
|
|
12
|
+
</div>
|
|
13
|
+
<div :class="$style.switchStatesBig" id="switch-lineup">
|
|
14
|
+
<GscSwitchComponent
|
|
15
|
+
v-if="(gameInfo.game_status == 0 || gameInfo.game_status == 4) && gameRecientes > 0"
|
|
16
|
+
:buttons="['Historicos', 'Recientes', 'Probables']"
|
|
17
|
+
:selectedOption="optionSelected"
|
|
18
|
+
:type="1"
|
|
19
|
+
:arrow="false"
|
|
20
|
+
borderRadius="32px"
|
|
21
|
+
height="28px"
|
|
22
|
+
fontSize="11px;"
|
|
23
|
+
fontFamily="Poppins-Regular"
|
|
24
|
+
border-width="1px"
|
|
25
|
+
border-width-container="0px"
|
|
26
|
+
backgroundOptionDisable="#162533"
|
|
27
|
+
width="600px"
|
|
28
|
+
backgroundOptionActive="transparent"
|
|
29
|
+
@input="clickOnSelectOption"
|
|
30
|
+
/>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
<!-- alineaciones switch -->
|
|
34
|
+
<div :class="$style.matchContainer" id="match-container">
|
|
35
|
+
<div :class="$style.homeTeamContainer">
|
|
36
|
+
<div :class="$style.teamContainer">
|
|
37
|
+
<div :class="$style.imgHomeTeamWrapper">
|
|
38
|
+
<img
|
|
39
|
+
:class="$style.imgHomeTeamIcon"
|
|
40
|
+
alt=""
|
|
41
|
+
v-if="gameHistoric.length > 0"
|
|
42
|
+
:src="
|
|
43
|
+
'https://golstatsimages.blob.core.windows.net/teams-80/' +
|
|
44
|
+
gameHistoric[selectedOption].objgame.home_team +
|
|
45
|
+
'.png'
|
|
46
|
+
"
|
|
47
|
+
/>
|
|
48
|
+
</div>
|
|
31
49
|
</div>
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
<div :class="$style.homeTeamContainer">
|
|
35
|
-
<div :class="$style.teamContainer">
|
|
36
|
-
<div :class="$style.imgHomeTeamWrapper">
|
|
37
|
-
<img
|
|
38
|
-
:class="$style.imgHomeTeamIcon"
|
|
39
|
-
alt=""
|
|
40
|
-
v-if="gameHistoric.length > 0"
|
|
41
|
-
:src="'https://golstatsimages.blob.core.windows.net/teams-80/'+gameHistoric[selectedOption].objgame.home_team+'.png'"
|
|
42
|
-
/>
|
|
43
|
-
</div>
|
|
44
|
-
</div>
|
|
45
|
-
<div :class="$style.name" v-if="gameHistoric.length > 0">{{ gameHistoric[selectedOption].objgame.home_team_abbreviation }}</div>
|
|
46
|
-
</div>
|
|
47
|
-
<div :class="$style.scoreContainerWrapper">
|
|
48
|
-
<div :class="$style.scoreContainer">
|
|
49
|
-
<div :class="$style.div" v-if="gameHistoric.length > 0">{{ gameHistoric[selectedOption].objgame.score[0] }}</div>
|
|
50
|
-
<div :class="$style.div"> - </div>
|
|
51
|
-
<div :class="$style.div" v-if="gameHistoric.length > 0">{{ gameHistoric[selectedOption].objgame.score[1] }}</div>
|
|
52
|
-
</div>
|
|
53
|
-
</div>
|
|
54
|
-
<div :class="$style.awayTeamContainer">
|
|
55
|
-
<div :class="$style.name" v-if="gameHistoric.length > 0">{{ gameHistoric[selectedOption].objgame.away_team_abbreviation }}</div>
|
|
56
|
-
<div :class="$style.teamContainer1">
|
|
57
|
-
<div :class="$style.imgHomeTeamWrapper">
|
|
58
|
-
<img
|
|
59
|
-
:class="$style.imgHomeTeamIcon"
|
|
60
|
-
alt=""
|
|
61
|
-
v-if="gameHistoric.length > 0"
|
|
62
|
-
:src="'https://golstatsimages.blob.core.windows.net/teams-80/'+gameHistoric[selectedOption].objgame.away_team+'.png'"
|
|
63
|
-
/>
|
|
64
|
-
</div>
|
|
65
|
-
</div>
|
|
66
|
-
</div>
|
|
50
|
+
<div :class="$style.name" v-if="gameHistoric.length > 0">
|
|
51
|
+
{{ gameHistoric[selectedOption].objgame.home_team_abbreviation }}
|
|
67
52
|
</div>
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
53
|
+
</div>
|
|
54
|
+
<div :class="$style.scoreContainerWrapper">
|
|
55
|
+
<div :class="$style.scoreContainer">
|
|
56
|
+
<div :class="$style.div" v-if="gameHistoric.length > 0">
|
|
57
|
+
{{ gameHistoric[selectedOption].objgame.score[0] }}
|
|
58
|
+
</div>
|
|
59
|
+
<div :class="$style.div"> - </div>
|
|
60
|
+
<div :class="$style.div" v-if="gameHistoric.length > 0">
|
|
61
|
+
{{ gameHistoric[selectedOption].objgame.score[1] }}
|
|
62
|
+
</div>
|
|
76
63
|
</div>
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
<img :class="$style.sortIcon" alt="" src="/icn-filter.svg" />
|
|
82
|
-
<div :class="$style.filtros">Filtros</div>
|
|
83
|
-
</div>
|
|
84
|
-
<img :class="$style.shapeIcon" alt="" src="/icn-expand-arrow.svg" />
|
|
85
|
-
</button>
|
|
86
|
-
<button :class="$style.btnFilter1" id="btn-filters">
|
|
87
|
-
<div :class="$style.sortParent">
|
|
88
|
-
<div :class="$style.filtros">Jornada</div>
|
|
89
|
-
<div :class="$style.filtros">2</div>
|
|
90
|
-
</div>
|
|
91
|
-
<img :class="$style.shapeIcon" alt="" src="/icn-expand-arrow.svg" />
|
|
92
|
-
</button>
|
|
93
|
-
</div>
|
|
94
|
-
<div :class="$style.match">
|
|
95
|
-
<div :class="$style.homeTeam">
|
|
96
|
-
<img :class="$style.backArrowIcon" alt="" src="/backarrow.svg" />
|
|
97
|
-
<div :class="$style.teamContainer2">
|
|
98
|
-
<div :class="$style.manchesterUnited" v-if="gameHistoric.length > 0">{{ gameHistoric[selectedOption].objgame.home_team_abbreviation }}</div>
|
|
99
|
-
<img
|
|
100
|
-
:class="$style.imgHomeTeamIcon"
|
|
101
|
-
alt=""
|
|
102
|
-
v-if="gameHistoric.length > 0"
|
|
103
|
-
:src="'https://golstatsimages.blob.core.windows.net/teams-80/'+gameHistoric[selectedOption].objgame.home_team+'.png'"
|
|
104
|
-
/>
|
|
105
|
-
</div>
|
|
106
|
-
</div>
|
|
107
|
-
<div :class="$style.scoreContainer1">
|
|
108
|
-
<div :class="$style.finalScore">
|
|
109
|
-
<div :class="$style.div4" v-if="gameHistoric.length > 0">{{ gameHistoric[selectedOption].objgame.score[0] }}</div>
|
|
110
|
-
<div :class="$style.div4">-</div>
|
|
111
|
-
<div :class="$style.div4" v-if="gameHistoric.length > 0">{{ gameHistoric[selectedOption].objgame.score[1] }}</div>
|
|
112
|
-
</div>
|
|
113
|
-
<div :class="$style.manchesterUnited1">
|
|
114
|
-
<template v-if="teamActive == 'home'">
|
|
115
|
-
<template v-if="Object.home_match_result == 1">
|
|
116
|
-
Ganado
|
|
117
|
-
</template>
|
|
118
|
-
<template v-if="Object.home_match_result == 2">
|
|
119
|
-
Perdido
|
|
120
|
-
</template>
|
|
121
|
-
<template v-if="Object.home_match_result == 3">
|
|
122
|
-
Empatado
|
|
123
|
-
</template>
|
|
124
|
-
</template>
|
|
125
|
-
<template v-else>
|
|
126
|
-
<template v-if="Object.visiting_match_result == 1">
|
|
127
|
-
Ganado
|
|
128
|
-
</template>
|
|
129
|
-
<template v-if="Object.visiting_match_result == 2">
|
|
130
|
-
Perdido
|
|
131
|
-
</template>
|
|
132
|
-
<template v-if="Object.visiting_match_result == 3">
|
|
133
|
-
Empatado
|
|
134
|
-
</template>
|
|
135
|
-
</template>
|
|
136
|
-
</div>
|
|
137
|
-
</div>
|
|
138
|
-
<div :class="$style.homeTeam">
|
|
139
|
-
<div :class="$style.teamContainer2">
|
|
140
|
-
<img
|
|
141
|
-
:class="$style.imgHomeTeamIcon"
|
|
142
|
-
alt=""
|
|
143
|
-
v-if="gameHistoric.length > 0"
|
|
144
|
-
:src="'https://golstatsimages.blob.core.windows.net/teams-80/'+gameHistoric[selectedOption].objgame.away_team+'.png'"
|
|
145
|
-
/>
|
|
146
|
-
<div :class="$style.manchesterUnited" v-if="gameHistoric.length > 0">{{ gameHistoric[selectedOption].objgame.away_team_abbreviation }}</div>
|
|
147
|
-
</div>
|
|
148
|
-
<img :class="$style.backArrowIcon" alt="" src="/nextarrow.svg" />
|
|
149
|
-
</div>
|
|
150
|
-
</div>
|
|
151
|
-
<div :class="$style.btnDetails">
|
|
152
|
-
<div :class="$style.manchesterUnited2">Ver detalles</div>
|
|
153
|
-
</div>
|
|
64
|
+
</div>
|
|
65
|
+
<div :class="$style.awayTeamContainer">
|
|
66
|
+
<div :class="$style.name" v-if="gameHistoric.length > 0">
|
|
67
|
+
{{ gameHistoric[selectedOption].objgame.away_team_abbreviation }}
|
|
154
68
|
</div>
|
|
69
|
+
<div :class="$style.teamContainer1">
|
|
70
|
+
<div :class="$style.imgHomeTeamWrapper">
|
|
71
|
+
<img
|
|
72
|
+
:class="$style.imgHomeTeamIcon"
|
|
73
|
+
alt=""
|
|
74
|
+
v-if="gameHistoric.length > 0"
|
|
75
|
+
:src="
|
|
76
|
+
'https://golstatsimages.blob.core.windows.net/teams-80/' +
|
|
77
|
+
gameHistoric[selectedOption].objgame.away_team +
|
|
78
|
+
'.png'
|
|
79
|
+
"
|
|
80
|
+
/>
|
|
81
|
+
</div>
|
|
155
82
|
</div>
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
</
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
83
|
+
</div>
|
|
84
|
+
</div>
|
|
85
|
+
<div :class="$style.sliderMatches">
|
|
86
|
+
<GSCCarousel
|
|
87
|
+
:current-item-index="selectedOption"
|
|
88
|
+
v-if="gameHistoric.length > 0"
|
|
89
|
+
@input="changeCarouselItem"
|
|
90
|
+
:items="gameHistoric"
|
|
91
|
+
isMainSlidePriority
|
|
92
|
+
areSlidesArrowsVisible
|
|
93
|
+
:areNavigationArrowsVisible="false"
|
|
94
|
+
slideLeftArrowBackgroundImage="none"
|
|
95
|
+
slideRightArrowBackgroundImage="none"
|
|
96
|
+
>
|
|
97
|
+
<template #default="{ item }">
|
|
98
|
+
<div :class="$style.selectoritem">
|
|
99
|
+
{{ item.description }}
|
|
100
|
+
</div>
|
|
101
|
+
</template>
|
|
102
|
+
</GSCCarousel>
|
|
103
|
+
</div>
|
|
104
|
+
<div :class="$style.matchContainer1">
|
|
105
|
+
<div :class="$style.btnFilterParent">
|
|
106
|
+
<button :class="$style.btnFilter" id="btn-filters">
|
|
107
|
+
<div :class="$style.sortParent">
|
|
108
|
+
<img
|
|
109
|
+
:class="$style.sortIcon"
|
|
110
|
+
alt=""
|
|
111
|
+
src="https://golstatsimages.blob.core.windows.net/todoelfut/lineups/icn-filter.svg"
|
|
112
|
+
/>
|
|
113
|
+
<div :class="$style.filtros">Filtros</div>
|
|
114
|
+
</div>
|
|
115
|
+
<img
|
|
116
|
+
:class="$style.shapeIcon"
|
|
117
|
+
alt=""
|
|
118
|
+
src="https://golstatsimages.blob.core.windows.net/todoelfut/lineups/icn-expand-arrow.svg"
|
|
119
|
+
/>
|
|
120
|
+
</button>
|
|
121
|
+
<button :class="$style.btnFilter1" id="btn-filters">
|
|
122
|
+
<div :class="$style.sortParent">
|
|
123
|
+
<div :class="$style.filtros">Jornada</div>
|
|
124
|
+
<div :class="$style.filtros">2</div>
|
|
125
|
+
</div>
|
|
126
|
+
<img
|
|
127
|
+
:class="$style.shapeIcon"
|
|
128
|
+
alt=""
|
|
129
|
+
src="https://golstatsimages.blob.core.windows.net/todoelfut/lineups/icn-expand-arrow.svg"
|
|
130
|
+
/>
|
|
131
|
+
</button>
|
|
132
|
+
</div>
|
|
133
|
+
<div :class="$style.match">
|
|
134
|
+
<div :class="$style.homeTeam">
|
|
135
|
+
<img
|
|
136
|
+
:class="$style.backArrowIcon"
|
|
137
|
+
alt=""
|
|
138
|
+
src="https://golstatsimages.blob.core.windows.net/todoelfut/lineups/backarrow.svg"
|
|
139
|
+
/>
|
|
140
|
+
<div :class="$style.teamContainer2">
|
|
141
|
+
<div :class="$style.manchesterUnited" v-if="gameHistoric.length > 0">
|
|
142
|
+
{{ gameHistoric[selectedOption].objgame.home_team_abbreviation }}
|
|
191
143
|
</div>
|
|
192
|
-
<
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
144
|
+
<img
|
|
145
|
+
:class="$style.imgHomeTeamIcon"
|
|
146
|
+
alt=""
|
|
147
|
+
v-if="gameHistoric.length > 0"
|
|
148
|
+
:src="
|
|
149
|
+
'https://golstatsimages.blob.core.windows.net/teams-80/' +
|
|
150
|
+
gameHistoric[selectedOption].objgame.home_team +
|
|
151
|
+
'.png'
|
|
152
|
+
"
|
|
153
|
+
/>
|
|
154
|
+
</div>
|
|
155
|
+
</div>
|
|
156
|
+
<div :class="$style.scoreContainer1">
|
|
157
|
+
<div :class="$style.finalScore">
|
|
158
|
+
<div :class="$style.div4" v-if="gameHistoric.length > 0">
|
|
159
|
+
{{ gameHistoric[selectedOption].objgame.score[0] }}
|
|
196
160
|
</div>
|
|
197
|
-
<div :class="$style.
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
<div :class="$style.imgHomeTeamWrapper">
|
|
201
|
-
<img
|
|
202
|
-
:class="$style.imgHomeTeamIcon"
|
|
203
|
-
alt=""
|
|
204
|
-
v-if="gameHistoric.length > 0"
|
|
205
|
-
:src="'https://golstatsimages.blob.core.windows.net/teams-80/'+gameHistoric[selectedOption].objgame.away_team+'.png'"
|
|
206
|
-
/>
|
|
207
|
-
</div>
|
|
208
|
-
</div>
|
|
161
|
+
<div :class="$style.div4">-</div>
|
|
162
|
+
<div :class="$style.div4" v-if="gameHistoric.length > 0">
|
|
163
|
+
{{ gameHistoric[selectedOption].objgame.score[1] }}
|
|
209
164
|
</div>
|
|
165
|
+
</div>
|
|
166
|
+
<div :class="$style.manchesterUnited1">
|
|
167
|
+
<template v-if="teamActive == 'home'">
|
|
168
|
+
<template v-if="Object.home_match_result == 1"> Ganado </template>
|
|
169
|
+
<template v-if="Object.home_match_result == 2"> Perdido </template>
|
|
170
|
+
<template v-if="Object.home_match_result == 3"> Empatado </template>
|
|
171
|
+
</template>
|
|
172
|
+
<template v-else>
|
|
173
|
+
<template v-if="Object.visiting_match_result == 1"> Ganado </template>
|
|
174
|
+
<template v-if="Object.visiting_match_result == 2"> Perdido </template>
|
|
175
|
+
<template v-if="Object.visiting_match_result == 3"> Empatado </template>
|
|
176
|
+
</template>
|
|
177
|
+
</div>
|
|
178
|
+
</div>
|
|
179
|
+
<div :class="$style.homeTeam">
|
|
180
|
+
<div :class="$style.teamContainer2">
|
|
181
|
+
<img
|
|
182
|
+
:class="$style.imgHomeTeamIcon"
|
|
183
|
+
alt=""
|
|
184
|
+
v-if="gameHistoric.length > 0"
|
|
185
|
+
:src="
|
|
186
|
+
'https://golstatsimages.blob.core.windows.net/teams-80/' +
|
|
187
|
+
gameHistoric[selectedOption].objgame.away_team +
|
|
188
|
+
'.png'
|
|
189
|
+
"
|
|
190
|
+
/>
|
|
191
|
+
<div :class="$style.manchesterUnited" v-if="gameHistoric.length > 0">
|
|
192
|
+
{{ gameHistoric[selectedOption].objgame.away_team_abbreviation }}
|
|
210
193
|
</div>
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
194
|
+
</div>
|
|
195
|
+
<img
|
|
196
|
+
:class="$style.backArrowIcon"
|
|
197
|
+
alt=""
|
|
198
|
+
src="https://golstatsimages.blob.core.windows.net/todoelfut/lineups/nextarrow.svg"
|
|
199
|
+
/>
|
|
200
|
+
</div>
|
|
201
|
+
</div>
|
|
202
|
+
<div :class="$style.btnDetails">
|
|
203
|
+
<div :class="$style.manchesterUnited2">Ver detalles</div>
|
|
204
|
+
</div>
|
|
205
|
+
</div>
|
|
206
|
+
</div>
|
|
207
|
+
<div :class="headerSeccionAlineaciones2Class" id="header-mobile">
|
|
208
|
+
<div :class="$style.switchStatesBig1" id="switch-lineup">
|
|
209
|
+
<GscSwitchComponent
|
|
210
|
+
v-if="(gameInfo.game_status == 0 || gameInfo.game_status == 4) && gameRecientes > 0"
|
|
211
|
+
:buttons="['Historicos', 'Recientes', 'Probables']"
|
|
212
|
+
:selectedOption="optionSelected"
|
|
213
|
+
:type="1"
|
|
214
|
+
:arrow="false"
|
|
215
|
+
borderRadius="32px"
|
|
216
|
+
height="28px"
|
|
217
|
+
fontSize="11px;"
|
|
218
|
+
fontFamily="Poppins-Regular"
|
|
219
|
+
border-width="1px"
|
|
220
|
+
border-width-container="0.5px"
|
|
221
|
+
backgroundOptionDisable="#162533"
|
|
222
|
+
width="600px"
|
|
223
|
+
backgroundOptionActive="transparent"
|
|
224
|
+
@input="clickOnSelectOption"
|
|
225
|
+
/>
|
|
226
|
+
</div>
|
|
227
|
+
<div :class="$style.containerData">
|
|
228
|
+
<div :class="$style.manchesterUnited13">Alineación utilizada en:</div>
|
|
229
|
+
|
|
230
|
+
<div :class="$style.matchContainer2" id="match-container">
|
|
231
|
+
<div :class="$style.homeTeamContainer1">
|
|
232
|
+
<div :class="$style.teamContainer">
|
|
233
|
+
<div :class="$style.imgHomeTeamWrapper">
|
|
234
|
+
<img
|
|
235
|
+
:class="$style.imgHomeTeamIcon"
|
|
236
|
+
alt=""
|
|
237
|
+
v-if="gameHistoric.length > 0"
|
|
238
|
+
:src="
|
|
239
|
+
'https://golstatsimages.blob.core.windows.net/teams-80/' +
|
|
240
|
+
gameHistoric[selectedOption].objgame.home_team +
|
|
241
|
+
'.png'
|
|
242
|
+
"
|
|
243
|
+
/>
|
|
219
244
|
</div>
|
|
245
|
+
</div>
|
|
246
|
+
<div :class="$style.name" v-if="gameHistoric.length > 0">
|
|
247
|
+
{{ gameHistoric[selectedOption].objgame.home_team_abbreviation }}
|
|
248
|
+
</div>
|
|
249
|
+
</div>
|
|
250
|
+
<div :class="$style.scoreContainer2">
|
|
251
|
+
<div :class="$style.div" v-if="gameHistoric.length > 0">
|
|
252
|
+
{{ gameHistoric[selectedOption].objgame.score[0] }}
|
|
253
|
+
</div>
|
|
254
|
+
<div :class="$style.div">-</div>
|
|
255
|
+
<div :class="$style.div" v-if="gameHistoric.length > 0">
|
|
256
|
+
{{ gameHistoric[selectedOption].objgame.score[1] }}
|
|
257
|
+
</div>
|
|
220
258
|
</div>
|
|
259
|
+
<div :class="$style.homeTeamContainer1">
|
|
260
|
+
<div :class="$style.name" v-if="gameHistoric.length > 0">
|
|
261
|
+
{{ gameHistoric[selectedOption].objgame.away_team_abbreviation }}
|
|
262
|
+
</div>
|
|
263
|
+
<div :class="$style.teamContainer1">
|
|
264
|
+
<div :class="$style.imgHomeTeamWrapper">
|
|
265
|
+
<img
|
|
266
|
+
:class="$style.imgHomeTeamIcon"
|
|
267
|
+
alt=""
|
|
268
|
+
v-if="gameHistoric.length > 0"
|
|
269
|
+
:src="
|
|
270
|
+
'https://golstatsimages.blob.core.windows.net/teams-80/' +
|
|
271
|
+
gameHistoric[selectedOption].objgame.away_team +
|
|
272
|
+
'.png'
|
|
273
|
+
"
|
|
274
|
+
/>
|
|
275
|
+
</div>
|
|
276
|
+
</div>
|
|
221
277
|
</div>
|
|
278
|
+
</div>
|
|
279
|
+
<div :class="$style.sliderMatches1">
|
|
280
|
+
<GSCCarousel
|
|
281
|
+
:current-item-index="selectedOption"
|
|
282
|
+
v-if="gameHistoric.length > 0"
|
|
283
|
+
@input="changeCarouselItem"
|
|
284
|
+
:items="gameHistoric"
|
|
285
|
+
isMainSlidePriority
|
|
286
|
+
areSlidesArrowsVisible
|
|
287
|
+
:areNavigationArrowsVisible="false"
|
|
288
|
+
slideLeftArrowBackgroundImage="none"
|
|
289
|
+
slideRightArrowBackgroundImage="none"
|
|
290
|
+
>
|
|
291
|
+
<template #default="{ item }">
|
|
292
|
+
<div :class="$style.selectoritem2">
|
|
293
|
+
{{ item.description }}
|
|
294
|
+
</div>
|
|
295
|
+
</template>
|
|
296
|
+
</GSCCarousel>
|
|
297
|
+
</div>
|
|
222
298
|
</div>
|
|
299
|
+
</div>
|
|
223
300
|
</div>
|
|
301
|
+
</div>
|
|
224
302
|
</template>
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
<script>
|
|
228
|
-
import '@@/@golstats/gsc-carousel/dist/style.css'
|
|
229
|
-
import { GSCCarousel } from '@golstats/gsc-carousel'
|
|
230
|
-
import { GscSwitchComponent } from '@golstats/gsc-switch-component'
|
|
231
|
-
import '@@/@golstats/gsc-switch-component/dist/style.css'
|
|
232
|
-
export default {
|
|
233
|
-
components: {GSCCarousel, GscSwitchComponent},
|
|
234
|
-
props: {
|
|
235
|
-
optionSelected: {
|
|
236
|
-
type: String,
|
|
237
|
-
default: 'Historicos',
|
|
238
|
-
},
|
|
239
|
-
widthSize: {
|
|
240
|
-
type: Number,
|
|
241
|
-
default: 0
|
|
242
|
-
},
|
|
243
|
-
gameRecientes: {
|
|
244
|
-
type: Number,
|
|
245
|
-
default: 0,
|
|
246
|
-
},
|
|
247
|
-
gameInfo: {
|
|
248
|
-
type: Object,
|
|
249
|
-
default: () => {},
|
|
250
|
-
},
|
|
251
|
-
teamActive: {
|
|
252
|
-
type: String,
|
|
253
|
-
default: 'home',
|
|
254
|
-
},
|
|
255
|
-
gameHistoric: {
|
|
256
|
-
type: Array,
|
|
257
|
-
default: () => [],
|
|
258
|
-
},
|
|
259
|
-
},
|
|
260
|
-
watch: {
|
|
261
|
-
gameInfo: {
|
|
262
|
-
immediate: true,
|
|
263
|
-
handler: async function (newValue) {
|
|
264
|
-
try {
|
|
265
|
-
this.$emit('input', { season_id: newValue.season_id, game_id: newValue.id });
|
|
266
|
-
} catch (e) {
|
|
267
|
-
throw new Error(e);
|
|
268
|
-
}
|
|
269
|
-
},
|
|
270
|
-
},
|
|
271
|
-
},
|
|
272
|
-
data() {
|
|
273
|
-
return {
|
|
274
|
-
selectedOption: 0,
|
|
275
|
-
updateIndex: 0,
|
|
276
|
-
test: [
|
|
277
|
-
{ description: `Clausura 2018 I JOR 5 I CHI - ATL 12 '`, icon: 'goal' },
|
|
278
|
-
{ description: `Clausura 2018 I JOR 5 I CHI - ATL 73'`, icon: 'goal' },
|
|
279
|
-
{ description: `Clausura 2018 I JOR 5 I CHI - ATL 53'`, icon: 'red-card' },
|
|
280
|
-
{ description: `Clausura 2018 I JOR 5 I CHI - ATL 123'`, icon: 'yellow-card' },
|
|
281
|
-
],
|
|
282
|
-
}
|
|
283
|
-
},
|
|
284
|
-
computed: {
|
|
285
|
-
headerSeccionAlineaciones2Class(){
|
|
286
|
-
const width = this.widthSize;
|
|
287
|
-
if (width <= 540) {
|
|
288
|
-
return this.$style.headerSeccionAlineaciones2540;
|
|
289
|
-
} else if (width <= 1200) {
|
|
290
|
-
return this.$style.headerSeccionAlineaciones21200;
|
|
291
|
-
} else{
|
|
292
|
-
return this.$style.headerSeccionAlineaciones2;
|
|
293
|
-
}
|
|
294
|
-
},
|
|
295
|
-
headerSeccionAlineaciones1Class(){
|
|
296
|
-
const width = this.widthSize;
|
|
297
|
-
if (width <= 540) {
|
|
298
|
-
return this.$style.headerSeccionAlineaciones1540;
|
|
299
|
-
} else{
|
|
300
|
-
return this.$style.headerSeccionAlineaciones1;
|
|
301
|
-
}
|
|
302
|
-
},
|
|
303
|
-
},
|
|
304
|
-
methods: {
|
|
305
|
-
changeCarouselItem(val){
|
|
306
|
-
this.$emit('input', { season_id: val.selectedItem.season, game_id: val.selectedItem.game, ht_abrev: val.selectedItem.home_team_abbreviation, at_abrev: val.selectedItem.away_team_abbreviation });
|
|
307
|
-
this.selectedOption = val.selectedItemIndex;
|
|
308
|
-
this.updateIndex += 1;
|
|
309
|
-
},
|
|
310
|
-
clickOnSelectOption(val){
|
|
311
|
-
this.$emit('clickOnSelectOption', val);
|
|
312
303
|
|
|
313
|
-
|
|
304
|
+
<script>
|
|
305
|
+
import '@@/@golstats/gsc-carousel/dist/style.css'
|
|
306
|
+
import { GSCCarousel } from '@golstats/gsc-carousel'
|
|
307
|
+
import { GscSwitchComponent } from '@golstats/gsc-switch-component'
|
|
308
|
+
import '@@/@golstats/gsc-switch-component/dist/style.css'
|
|
309
|
+
export default {
|
|
310
|
+
components: { GSCCarousel, GscSwitchComponent },
|
|
311
|
+
props: {
|
|
312
|
+
optionSelected: {
|
|
313
|
+
type: String,
|
|
314
|
+
default: 'Historicos',
|
|
315
|
+
},
|
|
316
|
+
widthSize: {
|
|
317
|
+
type: Number,
|
|
318
|
+
default: 0,
|
|
319
|
+
},
|
|
320
|
+
gameRecientes: {
|
|
321
|
+
type: Number,
|
|
322
|
+
default: 0,
|
|
323
|
+
},
|
|
324
|
+
gameInfo: {
|
|
325
|
+
type: Object,
|
|
326
|
+
default: () => {},
|
|
327
|
+
},
|
|
328
|
+
teamActive: {
|
|
329
|
+
type: String,
|
|
330
|
+
default: 'home',
|
|
331
|
+
},
|
|
332
|
+
gameHistoric: {
|
|
333
|
+
type: Array,
|
|
334
|
+
default: () => [],
|
|
335
|
+
},
|
|
336
|
+
},
|
|
337
|
+
watch: {
|
|
338
|
+
gameInfo: {
|
|
339
|
+
immediate: true,
|
|
340
|
+
handler: async function (newValue) {
|
|
341
|
+
try {
|
|
342
|
+
this.$emit('input', { season_id: newValue.season_id, game_id: newValue.id })
|
|
343
|
+
} catch (e) {
|
|
344
|
+
throw new Error(e)
|
|
314
345
|
}
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
346
|
+
},
|
|
347
|
+
},
|
|
348
|
+
},
|
|
349
|
+
data() {
|
|
350
|
+
return {
|
|
351
|
+
selectedOption: 0,
|
|
352
|
+
updateIndex: 0,
|
|
353
|
+
test: [
|
|
354
|
+
{ description: `Clausura 2018 I JOR 5 I CHI - ATL 12 '`, icon: 'goal' },
|
|
355
|
+
{ description: `Clausura 2018 I JOR 5 I CHI - ATL 73'`, icon: 'goal' },
|
|
356
|
+
{ description: `Clausura 2018 I JOR 5 I CHI - ATL 53'`, icon: 'red-card' },
|
|
357
|
+
{ description: `Clausura 2018 I JOR 5 I CHI - ATL 123'`, icon: 'yellow-card' },
|
|
358
|
+
],
|
|
359
|
+
}
|
|
360
|
+
},
|
|
361
|
+
computed: {
|
|
362
|
+
headerSeccionAlineaciones2Class() {
|
|
363
|
+
const width = this.widthSize
|
|
364
|
+
if (width <= 540) {
|
|
365
|
+
return this.$style.headerSeccionAlineaciones2540
|
|
366
|
+
} else if (width <= 1200) {
|
|
367
|
+
return this.$style.headerSeccionAlineaciones21200
|
|
368
|
+
} else {
|
|
369
|
+
return this.$style.headerSeccionAlineaciones2
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
headerSeccionAlineaciones1Class() {
|
|
373
|
+
const width = this.widthSize
|
|
374
|
+
if (width <= 540) {
|
|
375
|
+
return this.$style.headerSeccionAlineaciones1540
|
|
376
|
+
} else {
|
|
377
|
+
return this.$style.headerSeccionAlineaciones1
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
},
|
|
381
|
+
methods: {
|
|
382
|
+
changeCarouselItem(val) {
|
|
383
|
+
this.$emit('input', {
|
|
384
|
+
season_id: val.selectedItem.season,
|
|
385
|
+
game_id: val.selectedItem.game,
|
|
386
|
+
ht_abrev: val.selectedItem.home_team_abbreviation,
|
|
387
|
+
at_abrev: val.selectedItem.away_team_abbreviation,
|
|
388
|
+
})
|
|
389
|
+
this.selectedOption = val.selectedItemIndex
|
|
390
|
+
this.updateIndex += 1
|
|
391
|
+
},
|
|
392
|
+
clickOnSelectOption(val) {
|
|
393
|
+
this.$emit('clickOnSelectOption', val)
|
|
394
|
+
},
|
|
395
|
+
},
|
|
396
|
+
}
|
|
397
|
+
</script>
|
|
398
|
+
|
|
399
|
+
<style module>
|
|
400
|
+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
|
|
401
|
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');
|
|
321
402
|
body {
|
|
322
403
|
margin: 0;
|
|
323
404
|
line-height: normal;
|
|
@@ -383,9 +464,9 @@ body {
|
|
|
383
464
|
--br-13xlhi: 32px;
|
|
384
465
|
--br-12xshi: 1px;
|
|
385
466
|
}
|
|
386
|
-
.selectoritem{
|
|
467
|
+
.selectoritem {
|
|
387
468
|
width: 100%;
|
|
388
|
-
color: rgba(255, 255, 255, 0.
|
|
469
|
+
color: rgba(255, 255, 255, 0.7);
|
|
389
470
|
text-align: center;
|
|
390
471
|
font-family: Poppins, sans-serif;
|
|
391
472
|
font-size: 14px;
|
|
@@ -393,9 +474,9 @@ body {
|
|
|
393
474
|
line-height: 143.322%;
|
|
394
475
|
letter-spacing: -0.14px;
|
|
395
476
|
}
|
|
396
|
-
.selectoritem2{
|
|
477
|
+
.selectoritem2 {
|
|
397
478
|
width: 100%;
|
|
398
|
-
color: rgba(255, 255, 255, 0.
|
|
479
|
+
color: rgba(255, 255, 255, 0.7);
|
|
399
480
|
text-align: center;
|
|
400
481
|
font-family: Poppins, sans-serif;
|
|
401
482
|
font-size: 11px;
|
|
@@ -403,583 +484,581 @@ body {
|
|
|
403
484
|
line-height: 143.322%;
|
|
404
485
|
letter-spacing: -0.14px;
|
|
405
486
|
}
|
|
406
|
-
.gscheaderlineup{
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
487
|
+
.gscheaderlineup {
|
|
488
|
+
width: 100%;
|
|
489
|
+
height: auto;
|
|
490
|
+
display: inline-block;
|
|
491
|
+
margin-bottom: 60px;
|
|
411
492
|
}
|
|
412
493
|
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
/* padding: 0px 0px var(--padding-xshi); */
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
/* padding: var(--padding-11xshi) var(--padding-basehi); */
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
494
|
+
.anNoEstn {
|
|
495
|
+
font-weight: 500;
|
|
496
|
+
}
|
|
497
|
+
.groupsLeague {
|
|
498
|
+
position: relative;
|
|
499
|
+
line-height: 20px;
|
|
500
|
+
margin-top: 15px;
|
|
501
|
+
margin-bottom: 10px;
|
|
502
|
+
}
|
|
503
|
+
.jugadores {
|
|
504
|
+
position: relative;
|
|
505
|
+
line-height: 20px;
|
|
506
|
+
font-weight: 600;
|
|
507
|
+
}
|
|
508
|
+
.switchOption {
|
|
509
|
+
border-radius: var(--sizes-round-corner-round-corner-32hi);
|
|
510
|
+
background-color: var(--color-darkslategrayhi);
|
|
511
|
+
border: 0.8px solid var(--color-yellowgreen-100hi);
|
|
512
|
+
display: flex;
|
|
513
|
+
flex-direction: row;
|
|
514
|
+
align-items: center;
|
|
515
|
+
justify-content: center;
|
|
516
|
+
padding: var(--padding-3xshi) var(--sizes-spacing-space-24hi);
|
|
517
|
+
}
|
|
518
|
+
.jugadores1 {
|
|
519
|
+
position: relative;
|
|
520
|
+
line-height: 20px;
|
|
521
|
+
opacity: 0.6;
|
|
522
|
+
}
|
|
523
|
+
.switchOption1 {
|
|
524
|
+
border-radius: var(--sizes-round-corner-round-corner-32hi);
|
|
525
|
+
display: flex;
|
|
526
|
+
flex-direction: row;
|
|
527
|
+
align-items: center;
|
|
528
|
+
justify-content: center;
|
|
529
|
+
padding: var(--padding-3xshi) var(--sizes-spacing-space-24hi);
|
|
530
|
+
}
|
|
531
|
+
.switchStatesBig {
|
|
532
|
+
border-radius: var(--sizes-round-corner-round-corner-32hi);
|
|
533
|
+
background-color: var(--color-gray-100hi);
|
|
534
|
+
border: 1px solid var(--color-gray-500);
|
|
535
|
+
display: inline-block;
|
|
536
|
+
width: 320px;
|
|
537
|
+
font-size: var(--font-size-xshi);
|
|
538
|
+
color: var(--color-white);
|
|
539
|
+
}
|
|
540
|
+
.groupsLeagueParent {
|
|
541
|
+
align-self: stretch;
|
|
542
|
+
display: flex;
|
|
543
|
+
flex-direction: column;
|
|
544
|
+
align-items: center;
|
|
545
|
+
justify-content: flex-start;
|
|
546
|
+
gap: 30px;
|
|
547
|
+
text-align: center;
|
|
548
|
+
}
|
|
549
|
+
.imgHomeTeamIcon {
|
|
550
|
+
position: relative;
|
|
551
|
+
width: 28px;
|
|
552
|
+
height: 28px;
|
|
553
|
+
object-fit: cover;
|
|
554
|
+
}
|
|
555
|
+
.imgHomeTeamWrapper {
|
|
556
|
+
border-radius: var(--br-31xlhi);
|
|
557
|
+
background-color: var(--color-gray-200hi);
|
|
558
|
+
width: 40px;
|
|
559
|
+
height: 40px;
|
|
560
|
+
display: flex;
|
|
561
|
+
flex-direction: column;
|
|
562
|
+
align-items: center;
|
|
563
|
+
justify-content: center;
|
|
564
|
+
padding: var(--padding-3xshi);
|
|
565
|
+
box-sizing: border-box;
|
|
566
|
+
}
|
|
567
|
+
.teamContainer {
|
|
568
|
+
border-radius: var(--br-31xlhi);
|
|
569
|
+
border: 1px solid var(--color-darkbluehi);
|
|
570
|
+
box-sizing: border-box;
|
|
571
|
+
width: 48px;
|
|
572
|
+
height: 48px;
|
|
573
|
+
display: flex;
|
|
574
|
+
flex-direction: row;
|
|
575
|
+
align-items: center;
|
|
576
|
+
justify-content: center;
|
|
577
|
+
padding: var(--padding-3xshi);
|
|
578
|
+
}
|
|
579
|
+
.name {
|
|
580
|
+
position: relative;
|
|
581
|
+
letter-spacing: 0.31px;
|
|
582
|
+
line-height: 30.87px;
|
|
583
|
+
font-weight: 500;
|
|
584
|
+
}
|
|
585
|
+
.homeTeamContainer {
|
|
586
|
+
flex: 1;
|
|
587
|
+
border-bottom: 1px solid var(--color-slategrayhi);
|
|
588
|
+
display: flex;
|
|
589
|
+
flex-direction: row;
|
|
590
|
+
align-items: center;
|
|
591
|
+
justify-content: flex-start;
|
|
592
|
+
padding: 0px 0px var(--padding-xlhi);
|
|
593
|
+
gap: var(--gap-3xshi);
|
|
594
|
+
}
|
|
595
|
+
.div {
|
|
596
|
+
position: relative;
|
|
597
|
+
font-weight: 600;
|
|
598
|
+
}
|
|
599
|
+
.scoreContainer {
|
|
600
|
+
border-radius: var(--br-mid-4);
|
|
601
|
+
background-color: var(--color-gray-600);
|
|
602
|
+
display: flex;
|
|
603
|
+
flex-direction: row;
|
|
604
|
+
align-items: center;
|
|
605
|
+
justify-content: center;
|
|
606
|
+
padding: 6.524074554443359px 17.397533416748047px;
|
|
607
|
+
gap: var(--gap-4xs-7);
|
|
608
|
+
}
|
|
609
|
+
.scoreContainerWrapper {
|
|
610
|
+
align-self: stretch;
|
|
611
|
+
width: 323px;
|
|
612
|
+
display: flex;
|
|
613
|
+
flex-direction: column;
|
|
614
|
+
align-items: center;
|
|
615
|
+
justify-content: space-between;
|
|
616
|
+
text-align: center;
|
|
617
|
+
font-size: 15.22px;
|
|
618
|
+
color: var(--color-white);
|
|
619
|
+
font-family: var(--font-interhi);
|
|
620
|
+
margin-top: 27px;
|
|
621
|
+
}
|
|
622
|
+
.teamContainer1 {
|
|
623
|
+
border-radius: var(--br-31xlhi);
|
|
624
|
+
border: 1px solid var(--color-yellowgreen-200hi);
|
|
625
|
+
box-sizing: border-box;
|
|
626
|
+
width: 48px;
|
|
627
|
+
height: 48px;
|
|
628
|
+
display: flex;
|
|
629
|
+
flex-direction: row;
|
|
630
|
+
align-items: center;
|
|
631
|
+
justify-content: center;
|
|
632
|
+
padding: var(--padding-3xshi);
|
|
633
|
+
}
|
|
634
|
+
.awayTeamContainer {
|
|
635
|
+
flex: 1;
|
|
636
|
+
border-bottom: 1px solid var(--color-slategrayhi);
|
|
637
|
+
display: flex;
|
|
638
|
+
flex-direction: row;
|
|
639
|
+
align-items: center;
|
|
640
|
+
justify-content: flex-end;
|
|
641
|
+
padding: 0px 0px var(--padding-xlhi);
|
|
642
|
+
gap: var(--gap-3xshi);
|
|
643
|
+
}
|
|
644
|
+
.matchContainer {
|
|
645
|
+
align-self: stretch;
|
|
646
|
+
display: flex;
|
|
647
|
+
flex-direction: row;
|
|
648
|
+
align-items: center;
|
|
649
|
+
justify-content: space-between;
|
|
650
|
+
/* padding: 0px 0px var(--padding-xshi); */
|
|
651
|
+
color: var(--color-whitesmokehi);
|
|
652
|
+
}
|
|
653
|
+
.sliderMatchesChild {
|
|
654
|
+
position: relative;
|
|
655
|
+
border-radius: 9.55px;
|
|
656
|
+
width: 7.02px;
|
|
657
|
+
height: 14.23px;
|
|
658
|
+
}
|
|
659
|
+
.manchesterUnited {
|
|
660
|
+
position: relative;
|
|
661
|
+
letter-spacing: -0.01em;
|
|
662
|
+
line-height: 20.07px;
|
|
663
|
+
font-weight: 500;
|
|
664
|
+
}
|
|
665
|
+
.sliderMatchesItem {
|
|
666
|
+
position: relative;
|
|
667
|
+
border-radius: 9.55px;
|
|
668
|
+
width: 7.02px;
|
|
669
|
+
height: 14.24px;
|
|
670
|
+
}
|
|
671
|
+
.sliderMatches {
|
|
672
|
+
align-self: stretch;
|
|
673
|
+
display: flex;
|
|
674
|
+
flex-direction: row;
|
|
675
|
+
align-items: center;
|
|
676
|
+
justify-content: center;
|
|
677
|
+
/* padding: var(--padding-11xshi) var(--padding-basehi); */
|
|
678
|
+
gap: var(--gap-3xshi);
|
|
679
|
+
text-align: center;
|
|
680
|
+
width: 320px;
|
|
681
|
+
margin: 0 auto;
|
|
682
|
+
}
|
|
683
|
+
.sortIcon {
|
|
684
|
+
position: relative;
|
|
685
|
+
width: 18px;
|
|
686
|
+
height: 18px;
|
|
687
|
+
overflow: hidden;
|
|
688
|
+
flex-shrink: 0;
|
|
689
|
+
}
|
|
690
|
+
.filtros {
|
|
691
|
+
position: relative;
|
|
692
|
+
font-size: var(--font-size-smhi);
|
|
693
|
+
line-height: 24px;
|
|
694
|
+
font-family: var(--font-poppinshi);
|
|
695
|
+
color: var(--color-white);
|
|
696
|
+
text-align: left;
|
|
697
|
+
}
|
|
698
|
+
.sortParent {
|
|
699
|
+
display: flex;
|
|
700
|
+
flex-direction: row;
|
|
701
|
+
align-items: center;
|
|
702
|
+
justify-content: center;
|
|
703
|
+
gap: var(--gap-8xshi);
|
|
704
|
+
}
|
|
705
|
+
.shapeIcon {
|
|
706
|
+
position: relative;
|
|
707
|
+
width: 8px;
|
|
708
|
+
height: 4px;
|
|
709
|
+
}
|
|
710
|
+
.btnFilter {
|
|
711
|
+
cursor: pointer;
|
|
712
|
+
border: 1px solid var(--color-gray-400hi);
|
|
713
|
+
padding: var(--padding-5xshi) var(--padding-3xshi);
|
|
714
|
+
background-color: var(--color-gray-300hi);
|
|
715
|
+
border-radius: var(--br-5xs);
|
|
716
|
+
box-sizing: border-box;
|
|
717
|
+
width: 102px;
|
|
718
|
+
height: 32px;
|
|
719
|
+
display: flex;
|
|
720
|
+
flex-direction: row;
|
|
721
|
+
align-items: center;
|
|
722
|
+
justify-content: space-between;
|
|
723
|
+
}
|
|
724
|
+
.btnFilter1 {
|
|
725
|
+
cursor: pointer;
|
|
726
|
+
border: 1px solid var(--color-gray-400hi);
|
|
727
|
+
padding: var(--padding-5xshi) var(--padding-3xshi);
|
|
728
|
+
background-color: var(--color-gray-300hi);
|
|
729
|
+
border-radius: var(--br-5xs);
|
|
730
|
+
box-sizing: border-box;
|
|
731
|
+
height: 32px;
|
|
732
|
+
display: flex;
|
|
733
|
+
flex-direction: row;
|
|
734
|
+
align-items: center;
|
|
735
|
+
justify-content: flex-start;
|
|
736
|
+
gap: var(--gap-3xshi);
|
|
737
|
+
}
|
|
738
|
+
.btnFilterParent {
|
|
739
|
+
width: 225px;
|
|
740
|
+
display: flex;
|
|
741
|
+
flex-direction: row;
|
|
742
|
+
align-items: flex-start;
|
|
743
|
+
justify-content: flex-start;
|
|
744
|
+
gap: var(--gap-xs);
|
|
745
|
+
}
|
|
746
|
+
.backArrowIcon {
|
|
747
|
+
position: relative;
|
|
748
|
+
border-radius: 10.21px;
|
|
749
|
+
width: 14.31px;
|
|
750
|
+
height: 6.41px;
|
|
751
|
+
}
|
|
752
|
+
.teamContainer2 {
|
|
753
|
+
display: flex;
|
|
754
|
+
flex-direction: row;
|
|
755
|
+
align-items: center;
|
|
756
|
+
justify-content: flex-start;
|
|
757
|
+
gap: var(--gap-8xshi);
|
|
758
|
+
}
|
|
759
|
+
.homeTeam {
|
|
760
|
+
display: flex;
|
|
761
|
+
flex-direction: row;
|
|
762
|
+
align-items: center;
|
|
763
|
+
justify-content: flex-start;
|
|
764
|
+
gap: var(--gap-mini);
|
|
765
|
+
}
|
|
766
|
+
.div4 {
|
|
767
|
+
flex: 1;
|
|
768
|
+
position: relative;
|
|
769
|
+
font-weight: 600;
|
|
770
|
+
}
|
|
771
|
+
.finalScore {
|
|
772
|
+
border-radius: var(--br-mid-4);
|
|
773
|
+
background-color: var(--color-gray-600);
|
|
774
|
+
border: 0.5px solid var(--color-yellowgreen-100hi);
|
|
775
|
+
box-sizing: border-box;
|
|
776
|
+
width: 70.73px;
|
|
777
|
+
display: flex;
|
|
778
|
+
flex-direction: row;
|
|
779
|
+
align-items: center;
|
|
780
|
+
justify-content: center;
|
|
781
|
+
padding: 6.524074554443359px 17.397533416748047px;
|
|
782
|
+
gap: var(--gap-4xs-7);
|
|
783
|
+
}
|
|
784
|
+
.manchesterUnited1 {
|
|
785
|
+
position: relative;
|
|
786
|
+
font-size: var(--font-size-xshi);
|
|
787
|
+
font-weight: 500;
|
|
788
|
+
font-family: var(--font-poppinshi);
|
|
789
|
+
color: var(--color-gray-700hi);
|
|
790
|
+
}
|
|
791
|
+
.scoreContainer1 {
|
|
792
|
+
display: flex;
|
|
793
|
+
flex-direction: column;
|
|
794
|
+
align-items: center;
|
|
795
|
+
justify-content: center;
|
|
796
|
+
gap: var(--gap-4xshi);
|
|
797
|
+
text-align: center;
|
|
798
|
+
font-size: 15.22px;
|
|
799
|
+
color: var(--color-white);
|
|
800
|
+
font-family: var(--font-interhi);
|
|
801
|
+
}
|
|
802
|
+
.match {
|
|
803
|
+
display: flex;
|
|
804
|
+
flex-direction: row;
|
|
805
|
+
align-items: flex-start;
|
|
806
|
+
justify-content: center;
|
|
807
|
+
gap: 17px;
|
|
808
|
+
}
|
|
809
|
+
.manchesterUnited2 {
|
|
810
|
+
position: relative;
|
|
811
|
+
text-decoration: underline;
|
|
812
|
+
font-weight: 500;
|
|
813
|
+
}
|
|
814
|
+
.btnDetails {
|
|
815
|
+
width: 225px;
|
|
816
|
+
height: 28px;
|
|
817
|
+
display: flex;
|
|
818
|
+
flex-direction: row;
|
|
819
|
+
align-items: center;
|
|
820
|
+
justify-content: flex-end;
|
|
821
|
+
text-align: right;
|
|
822
|
+
font-size: var(--font-size-xshi);
|
|
823
|
+
}
|
|
824
|
+
.matchContainer1 {
|
|
825
|
+
align-self: stretch;
|
|
826
|
+
display: none;
|
|
827
|
+
flex-direction: row;
|
|
828
|
+
align-items: flex-start;
|
|
829
|
+
justify-content: space-between;
|
|
830
|
+
padding: 4px 0px 0px;
|
|
831
|
+
}
|
|
832
|
+
.goalChild {
|
|
833
|
+
position: relative;
|
|
834
|
+
width: 8.03px;
|
|
835
|
+
height: 8.03px;
|
|
836
|
+
}
|
|
837
|
+
.goal {
|
|
838
|
+
width: 9px;
|
|
839
|
+
height: 9px;
|
|
840
|
+
display: flex;
|
|
841
|
+
flex-direction: row;
|
|
842
|
+
align-items: center;
|
|
843
|
+
justify-content: center;
|
|
844
|
+
}
|
|
845
|
+
.manchesterUnited3 {
|
|
846
|
+
position: relative;
|
|
847
|
+
letter-spacing: -0.01em;
|
|
848
|
+
line-height: 19.5px;
|
|
849
|
+
text-transform: capitalize;
|
|
850
|
+
font-weight: 500;
|
|
851
|
+
}
|
|
852
|
+
.minuteEvent {
|
|
853
|
+
display: flex;
|
|
854
|
+
flex-direction: row;
|
|
855
|
+
align-items: center;
|
|
856
|
+
justify-content: flex-start;
|
|
857
|
+
gap: var(--gap-4xshi);
|
|
858
|
+
}
|
|
859
|
+
.yellowCard {
|
|
860
|
+
position: relative;
|
|
861
|
+
border-radius: var(--br-12xshi);
|
|
862
|
+
background-color: var(--color-goldenrodhi);
|
|
863
|
+
width: 4px;
|
|
864
|
+
height: 6px;
|
|
865
|
+
}
|
|
866
|
+
.awayTeamEvents {
|
|
867
|
+
display: flex;
|
|
868
|
+
flex-direction: column;
|
|
869
|
+
align-items: flex-start;
|
|
870
|
+
justify-content: flex-start;
|
|
871
|
+
gap: var(--gap-3xshi);
|
|
872
|
+
}
|
|
873
|
+
.rectangle {
|
|
874
|
+
position: relative;
|
|
875
|
+
border-radius: var(--br-12xshi);
|
|
876
|
+
background-color: #ff0000;
|
|
877
|
+
width: 4px;
|
|
878
|
+
height: 6px;
|
|
879
|
+
}
|
|
880
|
+
.homeTeamEvents {
|
|
881
|
+
display: flex;
|
|
882
|
+
flex-direction: column;
|
|
883
|
+
align-items: flex-end;
|
|
884
|
+
justify-content: flex-start;
|
|
885
|
+
gap: var(--gap-3xshi);
|
|
886
|
+
text-align: right;
|
|
887
|
+
}
|
|
888
|
+
.totalEvents {
|
|
889
|
+
display: none;
|
|
890
|
+
flex-direction: row;
|
|
891
|
+
align-items: center;
|
|
892
|
+
justify-content: flex-start;
|
|
893
|
+
gap: 59px;
|
|
894
|
+
font-size: var(--font-size-4xshi);
|
|
895
|
+
}
|
|
896
|
+
.headerSeccionAlineaciones1 {
|
|
897
|
+
background-color: var(--color-gray-200hi);
|
|
898
|
+
width: 100%;
|
|
899
|
+
display: flex;
|
|
900
|
+
flex-direction: column;
|
|
901
|
+
align-items: center;
|
|
902
|
+
justify-content: flex-start;
|
|
903
|
+
padding: 0px 48px;
|
|
904
|
+
box-sizing: border-box;
|
|
905
|
+
gap: var(--gap-basehi);
|
|
906
|
+
}
|
|
907
|
+
.switchOption3 {
|
|
908
|
+
border-radius: var(--sizes-round-corner-round-corner-32hi);
|
|
909
|
+
background-color: var(--color-darkslategrayhi);
|
|
910
|
+
border: 0.8px solid var(--color-yellowgreen-100hi);
|
|
911
|
+
box-sizing: border-box;
|
|
912
|
+
width: 74.8px;
|
|
913
|
+
display: flex;
|
|
914
|
+
flex-direction: row;
|
|
915
|
+
align-items: center;
|
|
916
|
+
justify-content: center;
|
|
917
|
+
padding: var(--padding-3xshi) var(--sizes-spacing-space-24hi);
|
|
918
|
+
}
|
|
919
|
+
.switchOption4 {
|
|
920
|
+
border-radius: var(--sizes-round-corner-round-corner-32hi);
|
|
921
|
+
width: 74px;
|
|
922
|
+
display: flex;
|
|
923
|
+
flex-direction: row;
|
|
924
|
+
align-items: center;
|
|
925
|
+
justify-content: center;
|
|
926
|
+
padding: var(--padding-3xshi) var(--sizes-spacing-space-24hi);
|
|
927
|
+
box-sizing: border-box;
|
|
928
|
+
}
|
|
929
|
+
.switchStatesBig1 {
|
|
930
|
+
border-radius: var(--sizes-round-corner-round-corner-32hi);
|
|
931
|
+
background-color: var(--color-gray-100hi);
|
|
932
|
+
border: 1px solid var(--color-gray-500);
|
|
933
|
+
display: inline-block;
|
|
934
|
+
width: 280px;
|
|
935
|
+
}
|
|
936
|
+
.manchesterUnited13 {
|
|
937
|
+
position: relative;
|
|
938
|
+
font-size: 10px;
|
|
939
|
+
font-weight: 500;
|
|
940
|
+
}
|
|
941
|
+
.homeTeamContainer1 {
|
|
942
|
+
display: flex;
|
|
943
|
+
flex-direction: row;
|
|
944
|
+
align-items: center;
|
|
945
|
+
justify-content: flex-start;
|
|
946
|
+
gap: var(--gap-3xshi);
|
|
947
|
+
}
|
|
948
|
+
.scoreContainer2 {
|
|
949
|
+
border-radius: var(--br-mid-4);
|
|
950
|
+
background-color: var(--color-gray-600);
|
|
951
|
+
display: flex;
|
|
952
|
+
flex-direction: row;
|
|
953
|
+
align-items: center;
|
|
954
|
+
justify-content: center;
|
|
955
|
+
padding: 6.524074554443359px 17.397533416748047px;
|
|
956
|
+
gap: var(--gap-4xs-7);
|
|
957
|
+
text-align: center;
|
|
958
|
+
font-size: 15.22px;
|
|
959
|
+
color: var(--color-white);
|
|
960
|
+
font-family: var(--font-interhi);
|
|
961
|
+
}
|
|
962
|
+
.matchContainer2 {
|
|
963
|
+
align-self: stretch;
|
|
964
|
+
display: flex;
|
|
965
|
+
flex-direction: row;
|
|
966
|
+
align-items: center;
|
|
967
|
+
justify-content: space-between;
|
|
968
|
+
padding: 0px 0px var(--padding-xshi);
|
|
969
|
+
text-align: left;
|
|
970
|
+
color: var(--color-whitesmokehi);
|
|
971
|
+
}
|
|
972
|
+
.manchesterUnited14 {
|
|
973
|
+
position: relative;
|
|
974
|
+
letter-spacing: -0.01em;
|
|
975
|
+
line-height: 20.07px;
|
|
976
|
+
font-weight: 500;
|
|
977
|
+
z-index: 0;
|
|
978
|
+
}
|
|
979
|
+
.sliderMatchesInner {
|
|
980
|
+
position: absolute;
|
|
981
|
+
margin: 0 !important;
|
|
982
|
+
top: 14.31px;
|
|
983
|
+
left: 261.07px;
|
|
984
|
+
border-radius: 10.21px;
|
|
985
|
+
width: 14.31px;
|
|
986
|
+
height: 6.41px;
|
|
987
|
+
z-index: 1;
|
|
988
|
+
}
|
|
989
|
+
.rectangleIcon {
|
|
990
|
+
position: absolute;
|
|
991
|
+
margin: 0 !important;
|
|
992
|
+
top: 0.31px;
|
|
993
|
+
left: 6.41px;
|
|
994
|
+
border-radius: 10.21px;
|
|
995
|
+
width: 14.31px;
|
|
996
|
+
height: 6.41px;
|
|
997
|
+
z-index: 2;
|
|
998
|
+
}
|
|
999
|
+
.sliderMatches1 {
|
|
1000
|
+
display: inline-block;
|
|
1001
|
+
padding: 0px !important;
|
|
1002
|
+
position: relative;
|
|
1003
|
+
gap: 0px !important;
|
|
1004
|
+
width: 290px;
|
|
1005
|
+
margin: 0 auto;
|
|
1006
|
+
}
|
|
1007
|
+
.containerData {
|
|
1008
|
+
align-self: stretch;
|
|
1009
|
+
border-radius: 9px;
|
|
1010
|
+
background-color: #192632;
|
|
1011
|
+
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
|
|
1012
|
+
display: flex;
|
|
1013
|
+
flex-direction: column;
|
|
1014
|
+
align-items: center;
|
|
1015
|
+
justify-content: flex-start;
|
|
1016
|
+
padding: var(--padding-basehi) var(--padding-5xlhi) 32px;
|
|
1017
|
+
gap: var(--gap-xs);
|
|
1018
|
+
font-size: var(--font-size-smhi);
|
|
1019
|
+
color: var(--color-gray-700hi);
|
|
1020
|
+
}
|
|
1021
|
+
.headerSeccionAlineaciones2 {
|
|
1022
|
+
align-self: stretch;
|
|
1023
|
+
display: none;
|
|
1024
|
+
flex-direction: column;
|
|
1025
|
+
align-items: center;
|
|
1026
|
+
justify-content: flex-start;
|
|
1027
|
+
gap: var(--gap-basehi);
|
|
1028
|
+
text-align: center;
|
|
1029
|
+
font-size: var(--font-size-2xshi);
|
|
1030
|
+
color: var(--color-white);
|
|
1031
|
+
}
|
|
1032
|
+
.headerSeccionAlineaciones {
|
|
1033
|
+
position: relative;
|
|
1034
|
+
width: 100%;
|
|
1035
|
+
display: flex;
|
|
1036
|
+
flex-direction: column;
|
|
1037
|
+
align-items: flex-start;
|
|
1038
|
+
justify-content: flex-start;
|
|
1039
|
+
gap: 132px;
|
|
1040
|
+
text-align: left;
|
|
1041
|
+
font-size: var(--font-size-smhi);
|
|
1042
|
+
color: var(--color-gray-700hi);
|
|
1043
|
+
font-family: var(--font-poppinshi);
|
|
1044
|
+
}
|
|
1045
|
+
.headerSeccionAlineaciones21200 {
|
|
1046
|
+
display: none;
|
|
1047
|
+
}
|
|
1048
|
+
.headerSeccionAlineaciones1540 {
|
|
1049
|
+
display: none;
|
|
1050
|
+
}
|
|
970
1051
|
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
</style>
|
|
985
|
-
|
|
1052
|
+
.headerSeccionAlineaciones2540 {
|
|
1053
|
+
display: flex;
|
|
1054
|
+
min-width: 300px;
|
|
1055
|
+
align-self: stretch;
|
|
1056
|
+
flex-direction: column;
|
|
1057
|
+
align-items: center;
|
|
1058
|
+
justify-content: flex-start;
|
|
1059
|
+
gap: var(--gap-basehi);
|
|
1060
|
+
text-align: center;
|
|
1061
|
+
font-size: var(--font-size-2xshi);
|
|
1062
|
+
color: var(--color-white);
|
|
1063
|
+
}
|
|
1064
|
+
</style>
|