-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
327 lines (293 loc) · 10.2 KB
/
menu.html
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu</title>
<link rel="stylesheet" href="styles.css">
<!-- Add Font Awesome CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
/* CSS styles from the provided code */
/* Add any additional styles specific to the menu if needed */
/* Header and Navigation */
header {
background-color: #000; /* Black */
color: #fff; /* White */
padding: 20px;
text-align: center;
position: relative; /* Add this to position logo */
}
.social-icons a {
color: #fff; /* White */
text-decoration: none;
font-size: 18px; /* Adjust size as needed */
margin-left: 10px;
}
.social-icons a:hover {
color: #CF7C38; /* Soft pastel orange */
}
.logo {
position: absolute;
top: 20px;
left: 20px;
width: 90px; /* Adjust the width as needed */
height: auto; /* Maintain aspect ratio */
}
nav {
background-color: #000000; /* Orange */
padding: 10px 0;
text-align: center;
border-bottom: 2px solid #000; /* Black */
}
nav a {
color: #333;
text-decoration: none;
margin: 0 15px;
padding: 5px 10px;
border-radius: 5px;
transition: background-color 0.3s;
}
nav a:hover {
background-color: #CF7C38; /* Darker Orange */
}
/* Footer */
footer {
background-color: #000; /* Black */
color: #fff; /* White */
text-align: center;
padding: 20px;
position: fixed;
width: 100%;
bottom: 0;
transition: transform 0.3s ease;
transform: translateY(100%);
}
footer.visible {
transform: translateY(0%);
}
footer a {
color: #fff; /* White */
text-decoration: none;
margin: 0 10px;
}
footer a:hover {
text-decoration: underline;
}
/* Menu Category */
.menu-category {
margin-bottom: 30px;
border-top: 2px solid #CF7C38; /* Orange */
border-bottom: 2px solid #CF7C38; /* Orange */
padding: 20px 0;
background-color: #000; /* Black */
}
.menu-category h3 {
color: #CF7C38; /* Soft pastel orange */
margin-bottom: 10px;
}
.menu-category ul {
list-style-type: none;
padding: 0;
}
.menu-category ul li {
color: #fff; /* White */
margin-bottom: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.menu-category ul li .price {
color: #fff;
margin-left: -50px; /* Move prices to the left */
position: relative;
}
.menu-category ul li .price:before {
content: '';
position: absolute;
left: -10px; /* Position the orange vertical line */
top: 0;
height: 100%;
width: 2px;
background-color: #CF7C38; /* Orange */
}
/* Whole Page Background */
body {
background-color: #000; /* Black */
color: #fff; /* White */
}
/* Translate Button */
.translate-container {
text-align: center;
margin-top: 20px;
}
/* Button container */
.button-container {
margin-top: 10px;
text-align: center;
}
.button-container button {
margin: 5px;
}
</style>
</head>
<body>
<header>
<div class="container">
<img src="logo.png" alt="Logo" class="logo"> <!-- Add logo here -->
<h1></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Menu.html">Menu</a></li>
<li><a href="Catering.html">Catering</a></li>
<li><a href="products.html">Pop-up Coffee</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="shop.html">Exibition-Shop</a></li>
<li><a href="orders.html">Orders</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<!-- Social Icons -->
<div class="social-icons">
<a href="https://www.facebook.com/valgekorvits/?locale=et_EE" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/valgekorvits/" target="_blank"><i class="fab fa-instagram"></i></a>
<!-- Nupp -->
<a href="https://fienta.com/et/o/valgekorvits" target="_blank"><img src="fienta_logo.png" alt="Fienta Logo" style="width: 15px; height: 15px; margin-left: 10px;"></a>
<!-- Button container -->
<!-- Menu Buttons -->
<style>
.menu-buttons button {
background-color: black;
color: #CF7C38;
border: none;
padding: 10px 20px;
margin: 5px;
cursor: pointer;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="menu-buttons">
<button onclick="window.location.href='menuFIN.html'">FIN</button>
<button onclick="window.location.href='menuRU.html'">RU</button>
<button onclick="window.location.href='menuEE.html'">EE</button>
</div>
</div>
</div>
</header>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Title</title>
<!-- Add other meta tags, stylesheets, and scripts here -->
</head>
<body>
<header>
<!-- Header content goes here -->
</header>
<!-- Main content of the page -->
<div class="container">
<!-- Other HTML content goes here -->
<!-- Google Translate Button -->
<footer>
<!-- Footer content goes here -->
</footer>
<section class="main-section" id="menu">
<div class="container">
<h2>Our Menu</h2>
<!-- Menu categories -->
<div class="menu-category">
<h3>SMÖRGÅSBORD (LARGE DANISH-STYLE OPEN SANDWICH)</h3>
<ul>
<li>Flounder, remoulade, greens, vegetables <span class="price">7€</span></li>
<li>Beef, pate, Korean-style beetroot, pickled cucumber <span class="price">6€</span></li>
<li>Egg and shrimp <span class="price">5€</span></li>
<li>Spicy herring, egg, pickled onion <span class="price">3€</span></li>
</ul>
</div>
<div class="menu-category">
<h3>SPREADS / SAUCES / DIPS</h3>
<ul>
<li>Arugula pesto with truffle <span class="price">6€</span></li>
<li>Yellow hummus <span class="price">5€</span></li>
<li>Avocado with chili <span class="price">7€</span></li>
<li>Onion jam (for cheese) <span class="price">3€</span></li>
</ul>
</div>
<div class="menu-category">
<h3>TAPAS / OLIVES / CHARCUTERIE</h3>
<ul>
<li>Tuna tiradito <span class="price">14€</span></li>
<li>Skågen of Norwegian shrimp <span class="price">9€</span></li>
<li>Foie gras <span class="price">8€</span></li>
<li>Spicy herring with onion <span class="price">4€</span></li>
<li>Truffle goat cheese <span class="price">8€</span></li>
<li>Charcuterie (ham and salami selection) <span class="price">10€</span></li>
<li>Olives and more (serves two) <span class="price">7€</span></li>
</ul>
</div>
<div class="menu-category">
<h3>SALADS</h3>
<ul>
<li>Warm noodle salad with shrimp and spicy sriracha mayo <span class="price">9€</span></li>
<li>Warm noodle salad with mussels and sweet chili sauce <span class="price">9€</span></li>
<li>Quinoa and plenty of vegetables <span class="price">6€</span></li>
<li>Beetroot with Korean spices <span class="price">5€</span></li>
<li>Wakame seaweed salad <span class="price">7€</span></li>
</ul>
</div>
<div class="menu-category">
<h3>RAMEN</h3>
<ul>
<li>Ramen (with beef / with goat cheese / with tuna) <span class="price">8€</span></li>
</ul>
</div>
<div class="menu-category">
<h3>ENTRÉES</h3>
<ul>
<li>Smelt <span class="price">7€</span></li>
<li>Beef “Pho bo” style <span class="price">10€</span></li>
<li>Grilled Argentine shrimp <span class="price">12€</span></li>
<li>Red pork cheeks with green onions <span class="price">10€</span></li>
<li>Chicken wings “Buffalo” style <span class="price">10€</span></li>
<li>“Those same” mussels <span class="price">15€</span></li>
<li>Baked flounder <span class="price">13€</span></li>
<li>Loaded sweet potato fries <span class="price">9€</span></li>
</ul>
</div>
<div class="menu-category">
<h3>KIDS’ FAVORITES</h3>
<ul>
<li>Sweet potato fries with chicken <span class="price">5€</span></li>
<li>Sweet potato fries with chicken nuggets (what you do for kids) <span class="price">5€</span></li>
<li>Noodle soup with meatballs <span class="price">5€</span></li>
</ul>
</div>
<div class="menu-category">
<h3>BAKED GOODS / CAKES</h3>
<ul>
<li>Assorted cakes / pies / pastries <span class="price">4€</span></li>
<li>Sweet pancakes <span class="price">3€</span></li>
<li>Pancakes with ice cream <span class="price">3€</span></li>
</ul>
</div>
<div class="menu-category">
<h3>ICE CREAMS</h3>
<ul>
<li>1 scoop / 3 scoops <span class="price">2€ / 5€</span></li>
</ul>
</div>
<!-- Add more categories as needed -->
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Valge Kõrvits. All rights reserved.</p>
</div>
</footer>
</body>
</html>