-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathloadout.html
61 lines (56 loc) · 1.02 KB
/
loadout.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
<html>
<head>
<title> eli's Splatoon loadout! </title>
<style>
::-webkit-scrollbar {
width: 0.75em;
height: 0.75em;
}
::-webkit-scrollbar-corner {
background: #000;
}
::-webkit-scrollbar-thumb {
background: #333;
}
::-webkit-scrollbar-track:horizontal, ::-webkit-scrollbar-track-piece:horizontal {
background: #191919;
}
::-webkit-scrollbar-track:vertical, ::-webkit-scrollbar-track-piece:vertical {
background: #000;
}
</style>
<style type="text/css">
* {
margin: 0;
}
html, body {
height: 100%;
}
body {
scrollbar-face-color: #191919;
scrollbar-track-color: #000;
margin: 0;
background: #000 url(LOADOUTbg.png) bottom repeat-x;
color: #fff;
text-align: center;
font-family: "San Francisco", Helvetica, Arial, sans-serif;
font-size: 11pt;
}
.wrapper { /* sticky footer */
min-height: 100%;
margin: 0 auto -935px;
}
.footer, .push {
height: 935px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="push"></div>
</div>
<div class="footer">
<img src="LOADOUT.png" width="2000" />
</div>
</body>
</html>