-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (40 loc) · 970 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BEST API ENDPOINT EVER</title>
</head>
<body>
<div id="app">
<h1 id="awake">ARE YOU AWAKE?!?!?</h1>
<form action="/safe", method="get">
<button type="submit" id="yes">YES</button>
</form>
</div>
</body>
<style>
body, html {
width: 100%;
height: 100%;
margin: 0;
background:linear-gradient(#a0bdf4, #FFFFFF)
}
#app {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
* {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
#yes {
min-width: 10ch;
min-height: 10ch;
}
</style>
</html>