-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
157 lines (132 loc) · 2.31 KB
/
style.css
File metadata and controls
157 lines (132 loc) · 2.31 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
/* Reset some default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body and General Styles */
body {
font-family: Arial, sans-serif;
background-color: salmon;
color: #5e1f1f;
}
/* Header Styles */
header {
background-color: #FF6600;
padding: 10px 0;
}
header .container {
display: flex;
justify-content: space-between;
align-items: center;
}
header .logo img {
height: 50px;
}
header nav ul {
display: flex;
list-style-type: none;
}
header nav ul li {
margin: 0 15px;
}
header nav ul li a {
text-decoration: none;
color: white;
font-weight: bold;
}
/* Hero Section */
.hero {
background-color: #eb7018;
padding: 60px 20px;
text-align: center;
color: white;
}
.hero h1 {
font-size: 40px;
margin-bottom: 20px;
}
.hero p {
font-size: 20px;
margin-bottom: 30px;
}
.hero button {
padding: 15px 30px;
font-size: 16px;
background-color: #333;
color: white;
border: none;
cursor: pointer;
border-radius: 5px;
}
.hero button:hover {
background-color: #555;
}
/* Menu Section */
.menu {
padding: 40px 20px;
background-color: #fff;
}
.menu .container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.menu h2 {
font-size: 30px;
margin-bottom: 40px;
}
.menu-items {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.menu-item {
background-color: #f9f9f9;
padding: 20px;
width: 30%;
margin-bottom: 30px;
text-align: center;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}
.menu-item:hover {
transform: translateY(-10px);
}
.menu-item img {
width: 100px;
height: 100px;
object-fit: cover;
margin-bottom: 20px;
}
.menu-item h3 {
font-size: 20px;
margin-bottom: 10px;
}
.menu-item p {
font-size: 18px;
color: #FF6600;
margin-bottom: 20px;
}
.menu-item button {
padding: 10px 20px;
background-color: #FF6600;
color: white;
border: none;
cursor: pointer;
border-radius: 5px;
}
.menu-item button:hover {
background-color: #ff8533;
}
/* Footer Styles */
footer {
background-color: #333;
padding: 20px 0;
text-align: center;
color: white;
}
footer p {
font-size: 16px;
}