-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (81 loc) · 1.51 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
89
90
91
92
93
94
95
96
97
98
99
100
body {
margin: 0;
box-sizing: border-box;
font-family: 'inter';
padding-bottom: 10px;
}
h1, p {
margin: 0;
}
.nav--section {
background-color: #F55A5A;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 50px;
}
.logo--img {
height: 30px;
margin-right: 10px;
/* background-color: black; */
}
.nav--section > p {
color: white;
/* font-family: 'inter'; */
}
.visited--place {
display: flex;
margin: 10px auto;
width: 500px;
}
.place--pic {
width: 150px;
height: 210px;
object-fit: cover;
border-radius: 10px;
}
.location--icon {
width: 10px;
margin-right: 5px;
}
.place--info {
margin-left: 10px;
margin-top: 25px;
}
.location--info {
display: flex;
align-items: center;
}
.location--info > .country--name {
letter-spacing: 5px;
font-size: 0.8rem;
margin-right: 10px;
}
.location--info > .map--link {
color: #918E9B;
font-size: 0.75rem;
text-decoration: underline;
}
.place--name {
margin-top: 10px;
}
.visit--date {
font-size: 0.75rem;
font-weight: 600;
margin-top: 20px;
}
.place--description {
font-size: 0.75rem;
margin-top: 10px;
}
.divider {
border-top: 1px solid #F5F5F5;
margin: 30px 0;
}
.visited--place.margin-top {
margin-top: 10px; /* Add margin top if it is the first element */
}
.visited--place.margin-bottom {
margin-bottom: 10px; /* Add margin bottom if it is the first element */
}