blob: 637014d2141533aaaabe3fb914ea94398e408f47 (
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
|
.entry {
display: flex;
flex-wrap: wrap; /* Allow title to flow to next line, in case of space constraints */
}
.entry > a {
text-decoration: none;
width: fix-content;
}
.entry-text {
display: flex;
margin-left: 1em;
max-width: 70%;
}
.description {
color: white;
}
ol {
padding: 0;
}
.entry img {
font-size: 4em;
width: 200px;
float: left;
text-align: center;
}
.entries > hr {
margin:1em;
opacity: 0.1;
}
/* Leave margin to HR for consistent spacing */
h4 {
margin: 0;
}
h4 > p {
margin-bottom: 0;
}
@media screen and (max-width: 50rem) {
.entry > * {
width: 100%;
}
.entry > a > img {
width: 100%;
margin-bottom: 0.5em;
}
}
|