Skip to content

Commit

Permalink
update site struct
Browse files Browse the repository at this point in the history
  • Loading branch information
That-Git committed May 28, 2024
1 parent 3e45f70 commit 055399e
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 6 deletions.
9 changes: 3 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,9 @@
<section>
<h2><u>Level Select</u></h2>
<ul>
<li><a href=4>4<sup>2</sup> Square</a></li>
<li><a href=10>10<sup>2</sup> Square</a></li>
<li><a href=20>20<sup>2</sup> Square</a></li>
<li><a href=50>50<sup>2</sup> Square</a></li>
<li><a href=100>100<sup>2</sup> Square</a></li>
<li><a href=Daedalus>Daedalus (10<sup>2</sup> Square)</a></li>
<li><a href=vanilla>Vanilla</a></li>
<li><a href=spin.html>Spin</a></li>
<li><a href=Daedalus>Daedalus</a></li>
<li><a href=/>Our Other Projects</a></li>
</ul>
<section>
Expand Down
63 changes: 63 additions & 0 deletions vanilla.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!DOCTYPE html>
<html>
<head>
<title>Blind Maze Level Select</title>
<style>
body {
font-family: arial;
background-color: #45475a;
color: #cdd6f4;
display: flex;
align-items: center;
justify-content: center;
margin: 0px;
overflow: hidden;
}
section {
background-color: #1e1e2e;
color: #89b4fa;
border-radius: 20px;
padding: 30px;
padding-left: 60px;
padding-right: 60px;
padding-bottom: 5px;
margin: 10%;
margin-top: 2%;
margin-bottom: 2%;
}
h1, h2 {
text-align: center;
}
h1 {
font-size: 1000%;
margin-bottom: 6%;
margin-top: 5%;
}
h2 {
font-size: 250%;
padding-bottom: 5%;
}
li {
padding: 2%;
font-size: 24px;
}
</style>
</head>
<body>
<main>
<header> <h1>Blind Maze</h1> </header>
<section>
<h2><u>Level Select</u></h2>
<ul>
<li><a href=4>4<sup>2</sup> Square</a></li>
<li><a href=10>10<sup>2</sup> Square</a></li>
<li><a href=20>20<sup>2</sup> Square</a></li>
<li><a href=50>50<sup>2</sup> Square</a></li>
<li><a href=100>100<sup>2</sup> Square</a></li>
<li><a href=>vanilla</a></li>
<li><a href=/>Our Other Projects</a></li>
</ul>
<section>
</main>
</body>
</html>

0 comments on commit 055399e

Please sign in to comment.