-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 882 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>ptz.live</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
padding: 0;
margin: 0;
}
.image-background {
background-image: url("coming_zoom.gif");
background-size: cover;
height: 100vh;
position: relative;
}
.transparent-image {
margin: auto;
background-image: url("info_square_transparent.png");
background-size: contain;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
height: 100%;
padding: 0;
margin: 0;
}
</style>
</head>
<body>
<div class="image-background">
<div class="transparent-image"></div>
</div>
</body>
</html>