Move to subfolder

This commit is contained in:
tryashtar
2026-03-18 19:25:39 -06:00
parent 769f7fec92
commit a956962058
4 changed files with 0 additions and 0 deletions
Executable
+43
View File
@@ -0,0 +1,43 @@
body {
margin: 0;
font-size: 16px;
background-color: #c9feff;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 20px;
font-family: sans-serif;
display: flex;
justify-content: center;
}
.main {
max-width: 100%;
}
.grid {
display: flex;
flex-wrap: wrap;
width: 100%;
}
.grid-entry {
display: flex;
flex-direction: column;
width: 120px;
height: 120px;
background-color: #bbe8fa;
padding: 10px;
margin: 10px;
text-align: center;
justify-content: center;
}
.grid-entry:hover {
background-color: #b3cff5;
}
img.thumbnail {
object-fit: contain;
overflow: hidden;
}
a {
text-decoration-line: none;
}
a:hover {
text-decoration-line: underline;
}