-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (52 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<title>Wave Function Collapse</title>
<style>
* {
padding: 0;
margin: 0;
}
html {
background-color: powderblue;
height: 100%;
}
body {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2rem;
}
h1 {
text-align: center;
color: steelblue;
}
.choice-box {
display: flex;
justify-content: center;
align-items: center;
gap: 1rem;
}
a.button {
text-decoration: none;
}
.button {
border: 1px solid steelblue;
padding: 0.5rem 1rem;
background-color: powderblue;
color: steelblue;
}
.button:hover {
cursor: pointer;
transform: scale(1.125);
}
</style>
</head>
<body>
<h1>Wave Function Collapse</h1>
<div class="choice-box"></div>
<script src="initial.js"></script>
</body>
</html>