Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки |
||
| Строка 10: | Строка 10: | ||
font-family: monospace; | font-family: monospace; | ||
/* | /* Мягкая красная обводка */ | ||
border: 2px solid #ff003c; | border: 2px solid #ff003c; | ||
box-shadow: | box-shadow: | ||
0 0 | 0 0 10px rgba(255, 0, 60, 0.3), | ||
0 0 | 0 0 15px rgba(255, 0, 60, 0.2); | ||
} | } | ||
Версия от 20:14, 16 апреля 2025
.custom-audio-wrapper {
display: flex;
align-items: center;
gap: 10px;
background: #111;
padding: 10px 14px;
border-radius: 12px;
max-width: 480px;
color: white;
font-family: monospace;
/* Мягкая красная обводка */
border: 2px solid #ff003c;
box-shadow:
0 0 10px rgba(255, 0, 60, 0.3),
0 0 15px rgba(255, 0, 60, 0.2);
}
.custom-audio-play {
background: #ff003c;
color: #fff;
border: none;
border-radius: 6px;
padding: 6px 12px;
font-size: 16px;
cursor: pointer;
transition: background 0.2s, transform 0.1s;
}
.custom-audio-play:hover {
background: #ff3366;
transform: scale(1.05);
}
.custom-audio-progress {
flex-grow: 1;
height: 6px;
border-radius: 4px;
background: #300;
outline: none;
accent-color: #ff003c;
}
.custom-audio-time {
min-width: 45px;
text-align: right;
font-size: 12px;
color: #f8b;
}