does not work

This commit is contained in:
Andrey Kondratev
2025-08-27 18:37:44 +05:00
parent 3d6836dc30
commit 98787a382e
17 changed files with 9526 additions and 245 deletions

View File

@@ -113,6 +113,7 @@ header p {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.2s, box-shadow 0.2s;
cursor: pointer;
position: relative;
}
.video-item:hover {
@@ -178,7 +179,7 @@ header p {
}
.converting::after {
content: ">=25@B0F8O...";
content: "Converting to MP3...";
position: absolute;
top: 50%;
left: 50%;
@@ -190,6 +191,44 @@ header p {
font-size: 0.8rem;
}
.status-message {
padding: 12px 16px;
margin-bottom: 16px;
border-radius: 8px;
font-size: 0.9rem;
font-weight: 500;
animation: slideIn 0.3s ease-out;
}
.status-success {
background-color: #d4edda;
border: 1px solid #c3e6cb;
color: #155724;
}
.status-warning {
background-color: #fff3cd;
border: 1px solid #ffeaa7;
color: #856404;
}
.status-info {
background-color: #d1ecf1;
border: 1px solid #bee5eb;
color: #0c5460;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 480px) {
.video-item {
flex-direction: column;