21 lines
259 B
CSS
21 lines
259 B
CSS
html,
|
|
body {
|
|
font-family: system-ui;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.counter {
|
|
display: grid;
|
|
font-size: 2em;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
margin-top: 2em;
|
|
place-items: center;
|
|
}
|
|
|
|
.counter-message {
|
|
text-align: center;
|
|
}
|