added css

This commit is contained in:
DaanoGames
2025-04-12 12:59:33 +02:00
parent 79da565ea3
commit 8055a7fb71
3 changed files with 49 additions and 11 deletions

22
static/style.css Normal file
View File

@@ -0,0 +1,22 @@
body {
background-color: lightslategray;
}
.grid-container {
display: grid;
grid-template-columns: auto auto auto;
gap: 20px;
background-color: lightslategray;
padding-top: 20px;
margin-left: 10%;
margin-right: 10%;
}
.grid-container > div {
text-align: center;
height: 100px;
padding-top: 5px;
border: 2px solid black;
border-radius: 10px;
background-color: whitesmoke;
}