Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки Метка: ручная отмена |
||
(не показаны 4 промежуточные версии этого же участника) | |||
Строка 1: | Строка 1: | ||
.race- | .race-box { | ||
border: 2px solid #411144; | |||
padding: 10px; | padding: 10px; | ||
display: inline-block; | |||
background-color: #3133; | |||
margin: 10px; | |||
text-align: center; | |||
width: 120px; | |||
height: 160px; | |||
border-radius: 10px; | border-radius: 10px; | ||
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7); | box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7); | ||
transition: all 0.3s ease-out; | |||
overflow: hidden; | |||
cursor: pointer; | |||
} | |||
.race-box img { | |||
width: 100px; | |||
height: 100px; | |||
border-radius: 8px; | |||
transition: transform 0.3s ease; | |||
} | } | ||
.race-box:hover { | .race-box img:hover { | ||
transform: scale(1.1); | |||
} | } | ||
Строка 20: | Строка 33: | ||
letter-spacing: 1px; | letter-spacing: 1px; | ||
font-weight: bold; | font-weight: bold; | ||
opacity: 0.85; | |||
} | } | ||
.race-box:hover | .race-box:hover { | ||
background-color: #444; | |||
transform: scale(1.05); | |||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8); | |||
} | } | ||
.race-box:hover .race-name { | |||
.race- | opacity: 1; | ||
.race- | |||
} | } |
Текущая версия от 11:28, 18 января 2025
.race-box { border: 2px solid #411144; padding: 10px; display: inline-block; background-color: #3133; margin: 10px; text-align: center; width: 120px; height: 160px; border-radius: 10px; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7); transition: all 0.3s ease-out; overflow: hidden; cursor: pointer; } .race-box img { width: 100px; height: 100px; border-radius: 8px; transition: transform 0.3s ease; } .race-box img:hover { transform: scale(1.1); } .race-box .race-name { color: #f1f1f1; font-size: 14px; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; font-weight: bold; opacity: 0.85; } .race-box:hover { background-color: #444; transform: scale(1.05); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8); } .race-box:hover .race-name { opacity: 1; }