-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
157 lines (133 loc) · 2.34 KB
/
styles.css
File metadata and controls
157 lines (133 loc) · 2.34 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
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
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
color: #333;
margin: 0;
padding: 0;
}
.header {
background-color: #563d2d;
color: #fff;
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.header h1 {
margin: 0;
font-size: 2rem;
}
.header nav ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
.header nav ul li {
margin-left: 2rem;
}
.header nav ul li a {
color: #fff;
text-decoration: none;
font-size: 1rem;
}
.hero {
background: url('unsplash_SvwoZeXUvNs.png') no-repeat center center/cover;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
}
.hero-content {
background-color: rgba(0, 0, 0, 0.6);
padding: 2rem;
border-radius: 10px;
}
.hero h2 {
font-size: 3rem;
margin: 0;
}
.hero p {
font-size: 1.5rem;
}
.btn {
background-color: #b78a57;
color: #fff;
padding: 0.75rem 1.5rem;
border: none;
border-radius: 5px;
text-decoration: none;
font-size: 1rem;
cursor: pointer;
margin-top: 1rem;
display: inline-block;
}
.btn:hover {
background-color: #a67646;
}
.about, .menu, .contact {
padding: 4rem 2rem;
text-align: center;
}
.about h2, .menu h2, .contact h2 {
color: #b78a57;
font-size: 2.5rem;
margin-bottom: 1rem;
}
.about p, .contact p {
color: #755746;
font-size: 1.2rem;
}
.menu {
background-color: #fff;
}
.menu-item {
margin-top: 2rem;
}
.menu-item img {
width: 100%;
max-width: 500px;
border-radius: 10px;
}
.menu-item h3 {
color: #b78a57;
font-size: 1.5rem;
margin-top: 0.5rem;
}
.menu-item p {
color: #755746;
font-size: 1rem;
}
.contact form {
display: flex;
flex-direction: column;
align-items: center;
}
.contact label {
font-size: 1rem;
margin-top: 1rem;
}
.contact input, .contact textarea {
width: 100%;
max-width: 500px;
padding: 0.5rem;
margin-top: 0.5rem;
border: 1px solid #ccc;
border-radius: 5px;
}
.contact button {
margin-top: 1rem;
}
footer {
background-color: #563d2d;
color: #fff;
text-align: center;
padding: 1rem;
margin-top: 2rem;
}