blob: 15045f45aa52db4c0a7743e2da4f940e39f861e8 (
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
45
46
47
48
49
50
51
52
53
54
|
/* Element styles */
body {
font-family: sans-serif;
}
a {
background-color: unset;
}
/* Base container */
.container {
margin: auto; /* centered */
width: 80%; /* looks nice */
}
/* Navbar */
.navbar {
list-style-type: none;
margin: 0;
padding: 0;
border-bottom: 1px solid;
margin-bottom: 2rem;
text-align: center;
padding-bottom: 0.4rem;
}
.navbar-item {
display: inline;
margin-right: 1rem;
}
.footer {
border-top: 1px solid;
margin-top: 2rem;
padding-top: 0.4rem;
}
/* Front page columns */
.two-column {
display: flex;
justify-content: center;
}
.inner-column {
flex: 50%;
}
/* Post list */
.post-list {
list-style-type: none;
}
.post-item {
padding: 0.5rem;
}
|