This commit is contained in:
2020-01-29 12:56:06 +01:00
commit 04efff0d15
51 changed files with 1673 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
.textboxGrid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
justify-content: space-evenly;
}
.textboxGridElement {
justify-self: center;
align-self: center;
width: 30%;
margin: 1em;
place-self: center;
background-color: rgb(120, 120, 120);
padding: 40px;
}