MediaWiki:Common.css: відмінності між версіями

нема опису редагування
Немає опису редагування
Немає опису редагування
Рядок 623: Рядок 623:
}
}


/* Навігація по гравцям */
.player-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #18151e;
  border-radius: 10px;
  margin-bottom: 10px;
  color: white;
  font-weight: bold;
  font-size: 110%;
  padding: 10px 15px;
}
.player-nav a {
  color: #888 !important;
  text-decoration: none;
  font-size: 1.2em;
  padding: 0 5px;
  transition: color 0.2s ease;
}
.player-nav a:hover {
  color: #fff !important;
}
.player-nav-prev,
.player-nav-next {
  width: 30px;
  text-align: center;
}


.player-nav-name {
  flex: 1;
  text-align: center;
}




Рядок 710: Рядок 675:
}
}


/* Навігація для турнірів */
/* Навігація для гравців */
.series-nav {
.player-nav {
     display: flex;
     display: flex;
     justify-content: space-between;
     justify-content: space-between;
     align-items: center;
     align-items: center;
     padding: 10px 0;
     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;
    padding: 10px;
}
}


.series-nav-prev,
.player-nav-prev,
.series-nav-next {
.player-nav-next {
     font-size: 20px;
     font-size: 20px;
     font-weight: bold;
     font-weight: bold;
Рядок 731: Рядок 695:
}
}


.series-nav-prev a,
.player-nav-prev a,
.series-nav-next a {
.player-nav-next a {
     color: #fff;
     color: yellow;
     text-decoration: none;
     text-decoration: none;
     transition: opacity 0.2s;
     transition: opacity 0.2s;
}
}


.series-nav-prev a:hover,
.player-nav-prev a:hover,
.series-nav-next a:hover {
.player-nav-next a:hover {
     opacity: 0.7;
     opacity: 0.7;
}
}


.series-nav-name {
.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: #fff;
     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;
    }
}
}