-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
63 lines (54 loc) · 1.21 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
60
61
62
63
<html>
<head>
<style type="text/css">
body {
background-color: #000830;
}
.mainCont {
max-width: 100%;
text-align: center;
position: relative;
}
.startButtonCont {
position: absolute;
top: 66.5%;
left: 50.2%;
transform: translate(-50%, -50%);
font-size: 20;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
}
.startButton {
height: 150%;
background-color: Transparent;
background-repeat:no-repeat;
border: none;
overflow: hidden;
outline:none;
width: 100%;
font-size: 42;
color: transparent;
}
.startButton:hover {
background-color: #00FCFC;
color: #FFFFFF;
font-family: "Orbitron Black";
}
</style>
<link rel="stylesheet" href="generalStyle.css">
</head>
<body>
<!-- <h1>TEST</h1>
<p>Click the link below to continue to the guide:</p> -->
<div class="mainCont">
<img src="Contents/Images/Dynamaker%20Guide%20Start%20Screen.png" class="center">
<div class="startButtonCont">
<button onclick="window.location.href='mainPg.html';" class="startButton">START</button>
</div>
</div>
</body>
</html>