Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки |
||
Строка 2: | Строка 2: | ||
display: flex; | display: flex; | ||
flex-wrap: wrap; | flex-wrap: wrap; | ||
justify-content: center; | justify-content: center; | ||
gap: 10px; | |||
} | } | ||
.race-box { | .race-box { | ||
border: 2px solid #411144; | |||
padding: 10px; | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
background-color: #3133; | |||
text-align: center; | text-align: center; | ||
width: 120px; | width: 120px; | ||
height: 160px; | |||
border-radius: 10px; | |||
box-shadow: 0 12px 20px rgba(0, 0, 0, 0.7); | |||
transition: all 0.3s ease-out; | |||
box-shadow: | |||
. | |||
cursor: pointer; | cursor: pointer; | ||
} | } |
Версия от 15:23, 19 января 2025
.race-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; } .race-box { border: 2px solid #411144; padding: 10px; display: flex; flex-direction: column; align-items: center; background-color: #3133; text-align: center; width: 120px; height: 160px; border-radius: 10px; box-shadow: 0 12px 20px rgba(0, 0, 0, 0.7); transition: all 0.3s ease-out; cursor: pointer; }