blob: 29d4c1a1568cdda6c1482089077a1dc140ed37c6 (
about) (
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
|
/* Public domain 2017. All rights waived. */
h4 {
font-size: 2em;
}
h5 {
font-size: 1.5em;
}
audio,
img,
video {
display: block;
margin: 50px auto;
max-width: 100%;
}
article {
line-height: 1.4em;
}
.post-metadata {
color: #4D4D4D;
margin-bottom: 50px;
}
.tag-list {
margin: 50px 0px;
}
.tag-list p {
font-weight: bold;
margin-bottom: 30px;
}
|