aboutsummaryrefslogtreecommitdiff
path: root/app/static/custom.css
blob: 9992ee5d8c4868e30817e29e41ddc9b474ae2743 (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
button, input, select {
    width: 100%;
    height: 100%;
}
td {
    width: 20%;
}
.grid {
    margin-top: 20px;
    margin-bottom: 20px;
}
.parent {
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
@media (min-width: 800px) {
    .parent {
        grid-template-columns: repeat(4, 1fr);
    }
}