-
Notifications
You must be signed in to change notification settings - Fork 1
/
order.html
45 lines (39 loc) · 977 Bytes
/
order.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f2f2f2;
}
.kiosk {
position: relative;
width: 482px;
height: 1200px;
}
.kiosk-image {
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
}
.kiosk-screen {
position: absolute;
top: 105px; /* Adjust these values to fit the iframe into the smartphone screen */
left: 16px;
width: 450px;
height: 950px;
z-index: 2;
}
</style>
</head>
<body>
<div class="kiosk">
<img src="src/kiosk.png" alt="kiosk Image" class="kiosk-image">
<iframe src="intro.html" frameborder="0" class="kiosk-screen"></iframe>
</div>
</body>
</html>