blob: 1bd89019b1e011e27890ccece1580109b3c58962 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
.button-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 15px;
}
#timer-display {
text-align: center;
width: fit-content;
}
table {
font-size: 1.5em;
}
|