MediaWiki:Test.css: различия между версиями

Страница интерфейса MediaWiki
(Полностью удалено содержимое страницы)
Метки: очистка ручная отмена
Нет описания правки
 
(не показаны 2 промежуточные версии этого же участника)
Строка 1: Строка 1:
.race-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}


.race-card {
    width: 120px;
    text-align: center;
    border-radius: 10px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.2s;
}
.race-card:hover {
    transform: scale(1.05);
}
.race-card .race-image,
.race-card .race-name {
    pointer-events: none;
}
.race-name {
    margin-top: 5px;
    font-weight: bold;
    color: white;
}
.race-info {
    margin-top: 20px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 5px;
    display: none;
}

Текущая версия от 21:18, 15 февраля 2025

.race-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.race-card {
    width: 120px;
    text-align: center;
    border-radius: 10px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.race-card:hover {
    transform: scale(1.05);
}

.race-card .race-image,
.race-card .race-name {
    pointer-events: none;
}

.race-name {
    margin-top: 5px;
    font-weight: bold;
    color: white;
}

.race-info {
    margin-top: 20px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 5px;
    display: none;
}