-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (144 loc) · 5.14 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<html lang="en">
<head>
<script async src="https://arc.io/widget.min.js#aNumR1XY"></script>
<link rel="shortcut icon" href="/oat2.png" rel="preload">
<title>Play Oat Clicker</title>
<meta name="title" content="Oat Clicker">
<meta charset="UTF-8">
<link rel="manifest" href="manifest.json">
<link href="https://fonts.googleapis.com/css?family=Poppins:300&display=swap" rel="stylesheet">
<meta name="description"
content="The latest in idle gaming, OAT CLICKER! Click oats, then buy things using your oats to help you get more oats. It's a fun, pleasantly scary and exhilarating ride! Play oat clicker every day for extreme thrills and heart-healthy action">
<meta content="/oat_clicker_logo.png" itemprop="image">
<meta property="og:type" content="website">
<meta property="og:url" content="/clicker">
<meta property="og:title" content="Oat Clicker">
<meta name="keywords" content="game,clicker,oat clicker, clicker game,video game,games,clicking,oatmeal">
<meta property="og:description"
content="The latest in idle gaming, OAT CLICKER! Click oats, then buy things using your oats to help you get more oats. It's a fun, pleasantly scary and exhilarating ride! Play oat clicker every day for extreme thrills and heart-healthy action">
<meta property="og:image" content="/oat_clicker_logo.png">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="/clicker">
<meta property="twitter:title" content="Oat Clicker">
<meta property="twitter:description"
content="The latest in idle gaming, OAT CLICKER! Click oats, then buy things using your oats to help you get more oats. It's a fun, pleasantly scary and exhilarating ride! Play oat clicker every day for extreme thrills and heart-healthy action">
<meta property="twitter:image" content="/oat_clicker_logo.png">
<link rel="apple-touch-icon" href="apple-touch-icon.png" rel="preload">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no, height=device-height, target-densitydpi=device-dpi" />
<style>
body {
background-color: black;
background-image: url(https://raw.githubusercontent.com/ooogle/oatmeal/master/sprites/oc-bg.png);
background-repeat: no-repeat;
background-position: bottom;
background-attachment: fixed;
color: white;
overflow-x: hidden;
}
@media only screen and (min-width: 950px) {
body {
background-size: 100%;
}
.mb {
display: none;
}
.pushy {
width: 40%;
}
.fly {
animation: fly 19s linear infinite;
}
.masked {
clip-path: inset(0 15% 0 15%);
width: 100%;
height: calc(3em + 10px);
}
}
@media only screen and (max-width: 949px) {
body {
background-size: 1000px;
}
.fly {
display: none;
}
.pushy {
width: 90%;
}
.mb {
display: inline;
}
}
* {
scrollbar-width: none, -moz-scrollbars-none !important;
}
.pushy {
overflow: hidden;
margin-left: auto;
margin-right: auto;
background: #2115c7;
height: 50px;
font-size: 40px;
text-align: center;
color: white;
margin-top: 15px;
font-family: sans-serif;
font-weight: lighter;
border-color: white;
border-style: solid;
cursor: pointer;
transition: 0.2s;
}
.pushy:hover {
transform: scale(1.2);
}
.pushy:active {
transform: scale(1.1);
}
.center {
margin-left: auto;
margin-right: auto;
text-align: center;
}
h1 {
font-family: sans-serif;
font-weight: lighter;
font-size: 3em;
overflow: hidden;
}
@keyframes fly {
0% {
transform: translateX(0%);
}
50% {
transform: translateX(-65%);
opacity: 1;
}
50.01% {
transform: translateX(65%);
opacity: 0;
}
50.02% {
opacity: 1;
}
100% {
transform: translateX(0%);
}
}
</style>
</head>
<body>
<div class="center">
<div class="masked center">
<h1 class="mb">Oat Clicker</h1>
<h1 class="fly">Oat Clicker - The Latest in Idle Gaming</h1>
</div>
<br>
<a href="/clicker.html">
<button class="pushy">Play Now!</button>
</a>
</div>
</body>
</html>