This repository has been archived on 2024-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2020-01-29 12:56:06 +01:00

15 lines
294 B
CSS

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