-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
92 lines (77 loc) · 1.41 KB
/
main.css
File metadata and controls
92 lines (77 loc) · 1.41 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
90
91
92
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.upper-bar {
display: flex;
justify-content: space-between;
background-color: #333;
padding: 10px;
color: white;
}
.upper-bar .logo {
font-size: 20px;
}
.upper-bar .menu {
position: relative;
}
.upper-bar .menu #drawer {
display: none;
position: absolute;
top: 40px;
right: 0;
background-color: white;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.upper-bar .menu #drawer a {
display: block;
padding: 10px;
color: #333;
text-decoration: none;
}
.upper-bar .menu #drawer a:hover {
background-color: #f1f1f1;
}
.hero {
position: relative;
text-align: center;
color: white;
}
.hero img {
width: 100%;
height: auto;
}
.hero .hero-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.hero .cta-button {
background-color: transparent;
border: 2px solid white;
color: white;
padding: 10px 20px;
cursor: pointer;
}
.recent-info, .faq, .highlight, .rates-form, .testimonials, .parks, .gallery, .social-media, .map {
padding: 20px;
}
.circular {
border-radius: 50%;
}
.scroll-gallery {
display: flex;
overflow-x: scroll;
}
.scroll-gallery img {
flex: 0 0 auto;
margin-right: 10px;
}
footer {
text-align: center;
padding: 10px;
background-color: #333;
color: white;
}