-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLevels.html
79 lines (71 loc) · 2.05 KB
/
Levels.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<script src="Home.js"></script>
<!--Levels.js was moved down to run effectively as the page loaded-->
<body background="./images/drip.png">
<h4><center>WordBlob!</center></h4>
<div class="level-groups">
<center><button onclick="loadPuzzle(0)" class="start" id="easy">Easy</button></center>
<div class="space"> </div>
<center><button onclick="loadPuzzle(1)" class="start" id="medium">Medium</button></center>
<div class="space"> </div>
<center><button onclick="loadPuzzle(2)" class="start" id="hard" >Hard</button></center>
<div class="space"></div>
</div>
<div class="space"></div>
<center><button onclick="goToPage('index.html')" class="returnHome" id="home">Exit</button></center>
<style>
.start {
@font-face {
font-family: 'Nunito';
src: url('/fonts/Nunito-VariableFont_wght.ttf') format:('truetype');
padding:10px 3px 10px 3px;
margin-bottom: 10px;
}
background-color: #bbb;
padding: 10px 22px;
background: rgb(152, 184, 239);
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 6px;
color: #fff;
font-family: Nunito;
font-size: 18px;
font-weight: 400;
cursor: pointer;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
text-decoration: none;
border: none;
}
.start:hover {
border: none;
box-shadow: 0px 0px 1px #777;
}
.start:disabled {
cursor: not-allowed;
opacity: 0.5;
}
input {
width: 80%;
margin: 8px 0;
box-sizing: border-box;
}
.space {
width: 4px;
height: auto;
display: inline-block;
}
.level-groups{
display: flex;
justify-content: center;
gap: 10px;
}
</style>
</body>
<!--Levels.js Script moved down here for loading purposes-->
<script src="Levels.js"></script>
</head>
</html>