added video support

This commit is contained in:
2026-06-22 23:36:20 +02:00
parent 2d93109831
commit 544d6c866c
7 changed files with 178 additions and 5 deletions
+24
View File
@@ -278,6 +278,30 @@ section.galleries .card img:hover {
opacity: 0.75;
}
/* ── Videos ────────────────────────────────── */
.prose {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
border-top: 1px solid var(--border);
margin-left: 0;
margin-right: 0;
padding: 0;
padding-top: 4rem;
gap: 0.5rem;
max-width: unset !important;
}
@media only screen and (max-width: 500px) {
.prose {
grid-template-columns: 1fr;
}
}
.prose video {
background: #000;
}
/* ── Gallery back link ────────────────────────────────── */
.gallery-back {