-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (79 loc) · 1.23 KB
/
style.css
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
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
body,
html {
margin: 0;
font-family: "Inter", sans-serif;
}
.location {
height: 20px;
}
/* navbar */
.nav--container {
background-color: #f55a5a;
display: flex;
justify-content: center;
align-items: center;
gap: 0.5rem;
color: white;
line-height: 18px;
height: 70px;
}
.nav--title {
font-weight: 500;
letter-spacing: -0.075em;
}
.nav--logo {
height: 30px;
}
/* journal */
.card {
padding: 32px 0;
margin: 48px 64px;
display: flex;
align-items: center;
gap: 30px;
}
.card--details {
height: 268px;
}
.card--img {
width: 225px;
height: 300px;
object-fit: cover;
border-radius: 8px;
}
.card--info {
display: flex;
margin-top: 1rem;
align-items: center;
gap: 0.5rem;
}
.card--info > a {
margin-left: 18px;
color: grey;
}
.card--country {
letter-spacing: 0.15rem;
margin: 0;
}
.card--title {
font-size: 2.5rem;
margin: 5px 0;
}
.card--dates {
display: flex;
align-items: center;
gap: 0.3rem;
font-weight: 700;
}
.card--date {
font-size: 18px;
margin: 15px 0;
}
.card--description {
font-size: 20px;
line-height: 150%;
font-weight: 400;
color: #2b283a;
margin-top: 0;
}