-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 1012 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gardenhall Menu</title>
<style>
body, html {
margin: 0;
padding: 0;
overflow-x: hidden;
}
.image-container {
width: 100vw;
height: 100vh;
overflow-y: scroll;
}
.image-container img {
width: 100%;
display: block;
}
.image-container::-webkit-scrollbar {
width: 0px;
background: transparent;
}
.image-container {
-ms-overflow-style: none;
scrollbar-width: none;
}
</style>
<meta name="theme-color" content="#2D3B41">
</head>
<body>
<div class="image-container">
<img src="Garden-Menu-Nov-4-Page-1-v2.jpg" alt="First Page">
<img src="Garden-Menu-Nov-4-Page-2-v2.jpg" alt="Second Page">
</div>
</html>