-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
89 lines (74 loc) · 1.23 KB
/
index.css
File metadata and controls
89 lines (74 loc) · 1.23 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
html,
body {
margin: 0;
}
body {
font-family: Inter;
}
.container {
margin: 45px 40px;
}
header {
background: #f55a5a;
display: flex;
justify-content: center;
align-items: center;
color: white;
height: 55px;
}
header > img {
width: 24px;
margin-right: 7px;
}
header > h1 {
font-size: 0.9rem;
font-weight: 500;
}
article.journal-entry {
display: flex;
margin-bottom: 36px;
}
article.journal-entry .marker {
width: 7px;
margin-right: 4px;
}
article.journal-entry .main-image-container {
width: 125px;
height: 168px;
overflow: hidden;
border-radius: 5px;
flex-shrink: 0;
margin-right: 19px;
}
article.journal-entry .main-image {
height: 100%;
width: 100%;
object-fit: cover;
}
.info-container span.country {
text-transform: uppercase;
font-size: 0.7rem;
margin-right: 12px;
}
.info-container a {
color: #2b283a;
font-size: 0.7rem;
}
.info-container a:visited {
color: #918e9b;
}
.info-container h2.entry-title {
margin-top: 7px;
margin-bottom: 17px;
}
.info-container p.trip-dates {
font-weight: bold;
}
.info-container p.entry-text {
line-height: 1.5;
font-size: 0.8rem;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}