blob: 8e3b71354766d923ef513c31a4efff2691961758 (
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;
}
|