-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
159 lines (141 loc) · 2.52 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
@import url("https://fonts.googleapis.com/css2?family=Agbalumo&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:[email protected]&display=swap");
/* declaring variables and its arguments is kinda tricky */
/* header {
margin: 0;
padding: 0;
box-sizing: border-box;
} */
#welcome-bg video {
width: 100%;
height: 700px;
-o-object-fit: cover;
object-fit: cover;
z-index: -1;
}
nav {
background-image: url(./media/images/arabesque.png);
/* opacity: .5; */
height: 100px;
width: 100%;
margin-top: -5px;
}
.nav-bar {
display: flex;
align-items: center;
width: 100%;
height: 80px;
}
#logo {
height: 60px;
padding-left: 30px;
}
#nav-list {
display: flex;
list-style: none;
}
#nav-list ul {
list-style: none;
display: flex;
width: 500px;
justify-content: space-around;
margin-top: 20px;
padding-left: 50px;
}
#nav-list a {
color: red;
text-decoration: none;
}
#slogan {
font-family: "Agbalumo";
font-weight: 400;
font-style: normal;
margin-left: 50px;
padding-right: 20px;
color: red;
}
.title {
font-family: "Dancing Script";
font-optical-sizing: auto;
font-weight: weight;
font-style: normal;
display: flex;
justify-content: center;
margin: 20px 0;
padding: 30px 0;
}
#search-bar {
margin: 20px 20px 0;
}
/* styling 1st section (top destinations) */
#top-dest {
margin-top: 70px;
margin-bottom: 70px;
height: 400px;
}
#top-dest .top-dest-bubbles {
display: flex;
flex-direction: row;
justify-content: space-around;
}
#top-dest .top-dest-bubbles .bubbles img {
border-radius: 50%;
height: 230px;
width: 230px;
transition: 0.5s;
}
#top-dest .top-dest-bubbles .bubbles img:hover {
width: 250px;
height: 250px;
}
.bubbles {
margin: 0 20px;
}
.bubbles h3 {
display: flex;
justify-content: center;
padding-top: 10px;
}
/* Styling 2ns section (Hotels) */
#hotels {
margin: 20px 0;
padding: 30px 0;
}
.card-org {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.card {
margin: 10px 20px;
}
/* styling the footer */
footer ul{
list-style: none;
}
footer a{
color: white;
text-decoration: none;
}
footer h4, li, svg {
color: white;
}
.footer-bg {
padding-top: 40px;
background-image: url(./media/images/footer-background.png);
background-size: 100% 100%;
/* background-repeat: no-repeat; */
width: 100%;
height: 300px;
display: flex;
justify-content: space-evenly;
}
.footer-bg::before {
content: '';
z-index: -1;
opacity: 0.5;
}
.block {
width: 200px;
height: 250px;
}