add tag page

This commit is contained in:
x
2025-03-19 19:49:59 +01:00
parent b29537d6d8
commit 69ca852379
3 changed files with 65 additions and 0 deletions

View File

@ -103,4 +103,25 @@ html[theme="f0ck"] .image-brand {
.v0ck_overlay {
background-color: none !important;
}
.tags {
display: grid;
}
@media (min-width: 600px) {
.tags { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
.tags { grid-template-columns: repeat(3, 1fr); }
}
.tag {
box-shadow: 1px 1px 1px black;
display: grid;
grid-template-rows: auto;
grid-template-columns: 1fr auto;
margin: 10px;
margin-right: 10px;
}