-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>#hack160</title>
<link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
<style>
html, body {
height: 100%;
width: 100%;
margin: 0;
background-color: #581517;
}
#hack {
height: 100%;
width: 100%;
display: table;
text-align: center;
}
#onesixty {
width: 100%;
font-family: "Indie Flower";
font-size: 10vw;
color: white;
margin: 1em;
display: table-cell;
vertical-align: middle;
}
#logo {
display: block;
margin: auto;
}
</style>
</head>
<body>
<div id="hack">
<div id="onesixty">
<a href="http://bccss.me/"><img id="logo" src="img/logo.png" alt="BCCSS logo"></a>
#hack160
</div>
</div>
</body>
</html>