Rewrite frontend

This commit is contained in:
IgorVolochay
2026-01-05 16:13:26 +03:00
parent aa5d4f439e
commit ac5025d4fc
3 changed files with 264 additions and 80 deletions
+36
View File
@@ -108,3 +108,39 @@ button:disabled {
color: #166534;
}
.file-info {
text-align: center;
padding: 24px;
}
.file-info h2 {
margin: 0 0 16px 0;
font-size: 24px;
color: #1f2937;
}
.file-size {
margin: 0 0 24px 0;
color: #6b7280;
font-size: 16px;
}
.download-button {
display: inline-block;
background: linear-gradient(135deg, #6366f1, #8b5cf6);
color: white;
border: none;
border-radius: 12px;
padding: 14px 32px;
font-size: 16px;
font-weight: 600;
text-decoration: none;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.download-button:hover {
transform: translateY(-1px);
box-shadow: 0 16px 32px -24px rgba(99, 102, 241, 0.8);
}