-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (49 loc) · 1.42 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
<!doctype html>
<html>
<head>
<title>Play Oat Clicker</title>
<link rel="shortcut icon" href="sprites/favicons/16.png">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="manifest" href="manifest.webmanifest">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/html5-marquee/css/marquee.min.css">
</head>
<body>
<style>
#loadingscreen {
background-image: url("/sprites/landing_bg.png");
background-repeat: repeat-x;
background-position: bottom;
background-attachment: fixed;
background-size: 1200px;
}
h1 {
font-size: max(min(5vw, 40px), 20px);
width: 70%;
}
.button {
font-size: 30px;
padding: 8px;
width: min(80%, 600px);
}
.button:hover {
transform: scale(1.5);
}
span {
display: inline-block;
width: 100%;
color: white;
}
</style>
<div class="centertext" id="loadingscreen">
<h1 class="marquee marquee-speed-slow center" data-marquee="Oat Clicker - The latest in idle gaming"></h1>
<a class="booster button" href="/clicker.html">
<span class="centertext">
Play Now!
</span>
</a>
</div>
</body>
</html>