summaryrefslogtreecommitdiff
path: root/jimbrella/static/jimbrella.css
blob: 06c7225a5a81411c7a8b66e3f18adf43a410f934 (plain)
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
body {
    font-family: sans-serif;
}

table.overview {
    border: 2px solid;
    text-align: center;
}

td {
    border: 1px solid;
    padding-top: 1em;
    padding-bottom: 1em;
    width: 6em;
}

#container {
    position: relative;
}

/* Desktop */
@media(min-width: 1081px) {
    #container {
        width: 60%;
        left: 20%;
    }
}

/* Mobile compatibility */
@media (max-width: 1080px) {
    #container {
        padding: 1em;
    }
}