Dantes (обсуждение | вклад) (Полностью удалено содержимое страницы) Метки: очистка ручная отмена |
Dantes (обсуждение | вклад) Нет описания правки |
||
| Строка 1: | Строка 1: | ||
.race-container { | |||
display: flex; | |||
flex-wrap: wrap; | |||
gap: 10px; | |||
justify-content: center; | |||
} | |||
.race-card { | |||
width: 200px; | |||
text-align: center; | |||
border-radius: 10px; | |||
padding: 10px; | |||
background: rgba(255, 255, 255, 0.1); | |||
cursor: pointer; | |||
transition: transform 0.2s; | |||
} | |||
.race-card:hover { | |||
transform: scale(1.05); | |||
} | |||
.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:09, 15 февраля 2025
.race-container {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}
.race-card {
width: 200px;
text-align: center;
border-radius: 10px;
padding: 10px;
background: rgba(255, 255, 255, 0.1);
cursor: pointer;
transition: transform 0.2s;
}
.race-card:hover {
transform: scale(1.05);
}
.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;
}