blob: f47e35a38d49127558fb953333de656269d1b73a (
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
|
body {
font-family: Helvetica, Arial, sans-serif;
}
.trips {
margin: auto;
}
.trip a {
font-size: 150%;
}
a.maps {
font-size: 90%;
}
body > a#close {
position: absolute;
right: 1em;
top: 1em;
display: block;
}
.subtitle {
text-color: lightgrey;
font-size: 90%;
}
img.thumbnail {
background-size: contain;
background-position: center;
background-repeat: no-repeat;
object-fit: cover;
}
img.image {
background-image: url('../img/placeholder_img.svg');
}
img.video {
background-image: url('../img/placeholder_video.svg');
}
|