2024-09-09 15:30:42 +02:00

29 lines
422 B
CSS

h2, .itembox {
display: flex;
flex-direction: column;
align-items: center;
}
oks, errors {
display: grid;
gap: 20px;
place-items: stretch;
place-content: center;
grid-template-columns: repeat(auto-fill, 300px);
grid-auto-flow: row;
}
.itembox {
color: white;
font-weight: bold;
padding: 10px;
}
.good {
background-color: green;
}
.bad {
background-color: red;
}