Skip to content

Commit 055399e

Browse files
committed
update site struct
1 parent 3e45f70 commit 055399e

File tree

2 files changed

+66
-6
lines changed

2 files changed

+66
-6
lines changed

index.html

+3-6
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,9 @@
4949
<section>
5050
<h2><u>Level Select</u></h2>
5151
<ul>
52-
<li><a href=4>4<sup>2</sup> Square</a></li>
53-
<li><a href=10>10<sup>2</sup> Square</a></li>
54-
<li><a href=20>20<sup>2</sup> Square</a></li>
55-
<li><a href=50>50<sup>2</sup> Square</a></li>
56-
<li><a href=100>100<sup>2</sup> Square</a></li>
57-
<li><a href=Daedalus>Daedalus (10<sup>2</sup> Square)</a></li>
52+
<li><a href=vanilla>Vanilla</a></li>
53+
<li><a href=spin.html>Spin</a></li>
54+
<li><a href=Daedalus>Daedalus</a></li>
5855
<li><a href=/>Our Other Projects</a></li>
5956
</ul>
6057
<section>

vanilla.html

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Blind Maze Level Select</title>
5+
<style>
6+
body {
7+
font-family: arial;
8+
background-color: #45475a;
9+
color: #cdd6f4;
10+
display: flex;
11+
align-items: center;
12+
justify-content: center;
13+
margin: 0px;
14+
overflow: hidden;
15+
}
16+
section {
17+
background-color: #1e1e2e;
18+
color: #89b4fa;
19+
border-radius: 20px;
20+
padding: 30px;
21+
padding-left: 60px;
22+
padding-right: 60px;
23+
padding-bottom: 5px;
24+
margin: 10%;
25+
margin-top: 2%;
26+
margin-bottom: 2%;
27+
}
28+
h1, h2 {
29+
text-align: center;
30+
}
31+
h1 {
32+
font-size: 1000%;
33+
margin-bottom: 6%;
34+
margin-top: 5%;
35+
}
36+
h2 {
37+
font-size: 250%;
38+
padding-bottom: 5%;
39+
}
40+
li {
41+
padding: 2%;
42+
font-size: 24px;
43+
}
44+
</style>
45+
</head>
46+
<body>
47+
<main>
48+
<header> <h1>Blind Maze</h1> </header>
49+
<section>
50+
<h2><u>Level Select</u></h2>
51+
<ul>
52+
<li><a href=4>4<sup>2</sup> Square</a></li>
53+
<li><a href=10>10<sup>2</sup> Square</a></li>
54+
<li><a href=20>20<sup>2</sup> Square</a></li>
55+
<li><a href=50>50<sup>2</sup> Square</a></li>
56+
<li><a href=100>100<sup>2</sup> Square</a></li>
57+
<li><a href=>vanilla</a></li>
58+
<li><a href=/>Our Other Projects</a></li>
59+
</ul>
60+
<section>
61+
</main>
62+
</body>
63+
</html>

0 commit comments

Comments
 (0)