This commit is contained in:
6d486f49
2026-08-17 00:45:08 -04:00
parent 3a2f112a73
commit 1d6207fbfe
154 changed files with 126007 additions and 47385 deletions
+11 -5
View File
@@ -11,7 +11,7 @@
border: 2px solid #333;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
animation: previewFadeIn 0.2s ease-out;
}
@@ -22,7 +22,7 @@
.preview-overlay {
padding: 10px;
background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
position: absolute;
bottom: 0;
left: 0;
@@ -33,7 +33,7 @@
font-weight: bold;
color: white;
font-size: 1.1rem;
text-shadow: 0 2px 4px rgba(0,0,0,0.8);
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.preview-meta {
@@ -88,6 +88,12 @@
}
@keyframes previewFadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}