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