blob: a5ca36f83bcc90703e40e343de1a2978e5d8f8fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
button, input, select {
width: 100%;
height: 100%;
}
td {
width: 20%;
}
.grid {
margin-top: 20px;
margin-bottom: 20px;
}
footer {
text-align: center;
}
.parent, .timer {
display: grid;
grid-column-gap: 20px;
grid-row-gap: 20px;
margin-top: 20px;
margin-bottom: 20px;
grid-auto-columns: 1fr;
grid-auto-rows: 1fr;
}
@media (min-width: 900px) {
table {
font-size: xx-large;
}
.parent {
grid-template-columns: repeat(4, 1fr);
}
.timer {
grid-template-columns: 4fr repeat(2, 1fr);
}
}
|