-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (59 loc) · 1.42 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<head>
<script src="https://www.gstatic.com/firebasejs/5.9.4/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.9.4/firebase-database.js"></script>
<script src="./firebase-stuff.js"></script>
<style>
body {
margin: 0;
background: #c0392b; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #8e44ad, #c0392b); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #8e44ad, #c0392b); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
font-family: Calibri;
color: white;
}
h1 {
font-size: 70px;
}
.content {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h3 {
border: 2px white solid;
padding: 15px;
transition: 0.5s;
}
h3:hover {
background-color: white;
color: #c0392b;
}
a{
font-size: 25px;
text-align: center;
color: white;
text-decoration: none;
}
</style>
</head>
<body>
<div class="content">
<h1>Mineyeeter</h1>
<div class="buttons">
<a href="./test.html"><h3>Inside the Minefield</h3></a>
<a href="./nonVR.html"><h3>Ouside the Minefield</h3></a>
</div>
</div>
<script>
(async function(){
var state = await getGridState();
console.log(state);
})();
</script>
</body>
</html>