Added to git

This commit is contained in:
tryashtar
2026-03-18 11:04:23 -06:00
parent 1860b9dff3
commit 769f7fec92
4 changed files with 353 additions and 30 deletions
+37 -6
View File
@@ -1,12 +1,43 @@
body {
font-family: sans-serif;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 20px;
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: none;
text-decoration-line: none;
}
a:hover {
text-decoration: underline;
text-decoration-line: underline;
}