summaryrefslogtreecommitdiff
path: root/static/css/mobile.css
blob: 6bc714f0c87f5923e5ff2e0ac8ded995d179a4e8 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
@media screen and (max-width: 700px) {
    body {
        margin: 0;
        min-height: 100vh;
        width: 100vw;
    }
    #header {
        justify-content: center;
    }
    #header #logo {
        flex-grow: unset;
    }
    #content {
        flex-direction: column;
        align-items: center;
    }
    #content #lhs {
        margin: 0 0.5rem 1rem;
        font-size: 20pt;
    }
    #base-url {
        font-size: 20pt;
    }
    #slug {
        flex-grow: 1;
    }
    .form-element input, .form-element button {
        font-size: 18pt;
    }
    .form-element input[type=text] {
        font-size: 16pt;
    }
    #content #rhs {
        margin: 1.5rem;
    }
    #content #rhs h3 {
        font-size: 2em;
    }
    #content #rhs p {
        font-size: 1.5em;
        margin-bottom: 1rem;
    }
    #footer {
        justify-content: space-evenly;
        font-size: 1.25em;
    }
    #footer span {
        margin: 0;
    }
}