Files
WebTech/static/style.css
DaanoGames 8055a7fb71 added css
2025-04-12 12:59:33 +02:00

22 lines
430 B
CSS

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;
}