summaryrefslogtreecommitdiff
path: root/static/style.css
blob: 6ec066837db28deacbc515e2aabf448f100e5d64 (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
* {
    margin: 0;
    padding: 0;
}

body {
    width: 50em;
    margin: 0 auto;
    font-family: 'Times New Roman', Times, serif;
}

header {
    border: 1px solid black;
    margin: 8px 0;
    display: flex;
    flex-direction: column;
}

header .banner {
    background-color: seagreen;
    min-height: 10vh;
    display: flex;
    align-items: end;
    justify-content: end;
}

header .links {
    padding: 4px;
    border-top: 1px solid black;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}