feat: implement barebone zola templates

This commit is contained in:
Alexander Navarro 2024-11-10 21:45:59 +00:00
parent 9c20f5ed2e
commit f99a9ae2ac
198 changed files with 2434 additions and 227991 deletions

View file

@ -0,0 +1,18 @@
.thumbnailList {
display: grid;
overflow-x: scroll;
gap: var(--prj-spacing-3);
padding-bottom: var(--prj-spacing-2);
grid-auto-columns: 25%;
grid-auto-flow: column;
}
.thumbnailItem {
width: 100%;
}
.thumbnailItem:hover {
cursor: pointer;
}