-
Notifications
You must be signed in to change notification settings - Fork 0
/
explorer.html
81 lines (80 loc) · 2.56 KB
/
explorer.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
<!DOCTYPE html>
<html>
<head>
<title>Solarity | Explorer</title>
<meta name="viewport" content="width=device-width">
<script type="text/javascript" src="js/explorer.js"> </script>
<style>
html, body {
padding: 0;
margin: 0;
background-color: black;
}
body * {
transition: all 0.14s ease;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
}
#background, #canvas, #overlay, #overlay2 {
margin: auto auto;
padding: 0;
display: block;
position: absolute;
left: 0; top: 0;
}
#background {
z-index: 19;
background: linear-gradient(to top right, rgba(100, 0, 40, 1), rgb(40, 10, 50), rgb(20, 10, 40));
}
#canvas {z-index: 20;}
#overlay {z-index: 21;}
#overlay2 {z-index: 22;}
#container {
position: relative;
width: 100vw;
height: 100vh;
overflow-x: hidden;
overflow-y: hidden;
}
span {
font-family: sans-serif;
color: white;
font-size: 16px;
text-align: center;
}
button {
position: fixed;
z-index: 100;
bottom: 20px;
left: 20px;
background-color: white;
color: black;
border: none;
border-radius: 3px;
outline: none;
padding: 10px 20px;
font-size: 17px;
font-weight: bold;
letter-spacing: 1px;
}
button:hover {
background-color: crimson;
color: white;
cursor: pointer;
}
</style>
</head>
<body onload="main()">
<div id="container">
<a href="index.html"><button>RETURN TO WEBSITE</button></a>
<canvas id="background"></canvas>
<canvas id="canvas">
<span>Please install Google Chrome.</span>
</canvas>
<canvas id="overlay"></canvas>
<canvas id="overlay2"></canvas>
</div>
</body>
</html>