-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
56 lines (53 loc) · 1.61 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
<!DOCTYPE html>
<html>
<title>Otto's Stuff</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="w3style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<style>
body,h1 {font-family: "Raleway", sans-serif}
body, html {height: 100%}
.bgimg {
background-image: url('/images/dark-bg.jpg');
min-height: 100%;
background-position: center;
background-size: cover;
}
.button {
background-color: Transparent;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
}
.button:hover {
box-shadow: 0 12px 16px 0 grey,0 17px 50px 0 grey;
}
</style>
<body>
<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">
<div class="w3-display-topleft w3-padding-large w3-xlarge">
<a href="https://www.twitch.tv/ottomus_prime" target="_blank">Twitch Channel</a>
</div>
<div class="w3-display-middle">
<h1 class="w3-jumbo w3-animate-top">Otto's Stuff</h1>
<hr class="w3-border-grey" style="margin:auto;width:40%">
<p class="w3-large w3-center">
<button class="button" onclick="location.href='https://Ottomus-Prime.github.io/commands'">Commands</button>
<button class="button" onclick="location.href='https://Ottomus-Prime.github.io/gear'">Gear</button>
</p>
</div>
<div class="w3-display-bottomleft w3-padding-large">
Powered by Bad Kittens
</div>
</div>
</body>
</html>