blob: 5881f84c9067153da8d61eca205c99e0b07f1c6d (
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
|
body {
background-color: black;
color: lightgrey;
margin: 0;
}
#header {
height: 3em;
}
#header a {
color: lightgrey;
height: 2.5em;
font-weight: bold;
text-decoration: none;
cursor: pointer;
margin: 0 0.5em;
}
#header li {
margin: 0 1em;
}
#header ul {
height: 100%;
list-style: none;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0;
}
.content {
object-fit: scale-down;
width: 100%;
height: calc(100vh - 3em);
}
|