aboutsummaryrefslogtreecommitdiff
path: root/src/App.css
blob: f4846a6fd1744e9ea651a1caa1540479efdcccd3 (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
35
36
37
38
39
40
41
42
43
44
.App {
    text-align: center;
    margin: auto;
    max-width: 90vw;

    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.App h1 {
    font-size: 2.4em;
    margin: 18px 0px 8px 0px;
}
.Updated .Latest {
    font-size: 1.3em;
    margin: 0px;
}
.Updated .Prior {
    margin: 6px;
    color: #666;
}

.App a {
    text-decoration: none;
    color: #000;
}

.BlueLink {
    color: #008 !important;
}

footer {
    margin-top: auto;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .App {
        margin: auto;
        max-width: 95vw;
    }
}