5466
редагувань
Admin (обговорення | внесок) Немає опису редагування |
Admin (обговорення | внесок) Немає опису редагування |
||
| Рядок 623: | Рядок 623: | ||
} | } | ||
| Рядок 710: | Рядок 675: | ||
} | } | ||
/* Навігація для | /* Навігація для гравців */ | ||
. | .player-nav { | ||
display: flex; | display: flex; | ||
justify-content: space-between; | justify-content: space-between; | ||
align-items: center; | align-items: center; | ||
padding: 10px | padding: 10px; | ||
margin-bottom: 10px; | margin-bottom: 10px; | ||
font-size: 14px; | font-size: 14px; | ||
background-color: #18151e; | background-color: #18151e; | ||
border-radius: 10px; | border-radius: 10px; | ||
} | } | ||
. | .player-nav-prev, | ||
. | .player-nav-next { | ||
font-size: 20px; | font-size: 20px; | ||
font-weight: bold; | font-weight: bold; | ||
| Рядок 731: | Рядок 695: | ||
} | } | ||
. | .player-nav-prev a, | ||
. | .player-nav-next a { | ||
color: | color: yellow; | ||
text-decoration: none; | text-decoration: none; | ||
transition: opacity 0.2s; | transition: opacity 0.2s; | ||
} | } | ||
. | .player-nav-prev a:hover, | ||
. | .player-nav-next a:hover { | ||
opacity: 0.7; | opacity: 0.7; | ||
} | } | ||
. | .player-nav-name { | ||
flex: 1; | flex: 1; | ||
text-align: center; | text-align: center; | ||
| Рядок 773: | Рядок 737: | ||
.tournament-nav-prev a, | .tournament-nav-prev a, | ||
.tournament-nav-next a { | .tournament-nav-next a { | ||
color: | color: yellow; | ||
text-decoration: none; | text-decoration: none; | ||
transition: opacity 0.2s; | transition: opacity 0.2s; | ||
| Рядок 789: | Рядок 753: | ||
color: white; | color: white; | ||
font-size: 16px; | font-size: 16px; | ||
} | |||
/* Навігація для серій */ | |||
.series-nav { | |||
display: flex; | |||
justify-content: space-between; | |||
align-items: center; | |||
padding: 10px; | |||
margin-bottom: 10px; | |||
font-size: 14px; | |||
background-color: #18151e; | |||
border-radius: 10px; | |||
} | |||
.series-nav-prev, | |||
.series-nav-next { | |||
font-size: 20px; | |||
font-weight: bold; | |||
min-width: 30px; | |||
text-align: center; | |||
} | |||
.series-nav-prev a, | |||
.series-nav-next a { | |||
color: yellow; | |||
text-decoration: none; | |||
transition: opacity 0.2s; | |||
} | |||
.series-nav-prev a:hover, | |||
.series-nav-next a:hover { | |||
opacity: 0.7; | |||
} | |||
.series-nav-name { | |||
flex: 1; | |||
text-align: center; | |||
font-weight: bold; | |||
color: white; | |||
font-size: 16px; | |||
} | |||
/* Мобільна версія для всіх карточок */ | |||
@media (max-width: 1200px) { | |||
.r-box, .tournament-box, .series-box { | |||
position: static !important; | |||
width: calc(100% - 32px) !important; | |||
max-width: none !important; | |||
margin: 0 16px 20px 16px !important; | |||
top: auto !important; | |||
right: auto !important; | |||
max-height: none !important; | |||
overflow-y: visible !important; | |||
} | |||
} | } | ||