aboutsummaryrefslogtreecommitdiff
path: root/static/main.css
blob: f16cd221130b8bbd6401cb127a66a800a17dc2ec (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background: #703f96;
    padding: 0 2rem;
    color: white;
}

header img {
    max-height: 4rem;
    padding: 0 1rem 0 0;
}

header h1 {
    font-weight: 300;
    font-size: 2em;
}

header a {
    color: #EFEFEF;
    text-decoration: none;
    border-bottom: white 1px solid;
}

header a:hover {
    color: white;
}

.nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav a {
    font-size: 1.25rem;
    margin-left: 1rem;
}

.wrap {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.content {
    font-weight: 300;
    width: 700px;
}

.content h1 {
    font-weight: 300;
}
    
.footer {
    padding-top: 10rem;
}

/*************************************************************************/

.explorer {
    display: grid;
    margin: 2em -5
    border: black 0.5px dashed;
}

.expl-header {
    font-size: 1.25em;
    background: #EFEFEF;
    padding: 0.5em;
}