-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://lever.holdings/" />
<meta property="og:title" content="Pull the lever, Kronk!" />
<meta
property="og:image"
content="http://lever.holdings/assets/pull-the-lever.gif"
/>
<title>Pull the lever, Kronk!</title>
<style type="text/css">
img {
display: block;
margin: 100px auto;
}
/* Darker colours for dark mode */
@media (prefers-color-scheme: dark) {
body {
color: #eaeaea;
background-color: #212121;
}
a {
color: cyan;
}
}
</style>
</head>
<body>
<img src="assets/pull-the-lever.gif" alt="Pull the lever, Kronk!" />
<div
style="position: fixed; bottom: 5px; right: 10px; text-align: right; font-family: Arial, sans-serif; text-transform: uppercase;"
>
<span style="font-size: x-small;">
made by <a href="http://twitter.com/bagelbits">@bagelbits</a> <br />
gif by <a href="https://imgur.com/user/bdaugaard">bdaugaard</a> <br />
</span>
</div>
</body>
</html>