-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (69 loc) · 1.65 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>HackSC</title>
<link href="https://fonts.googleapis.com/css?family=Space+Mono" rel="stylesheet">
<style>
html {
box-sizing: border-box;
}
html * , html * :before, html * :after {
box-sizing: inherit;
}
body {
font-family: 'Space Mono', Monaco, monospace;
font-size: 13px;
line-height: 1.4em;
font-weight: 400;
color: #000;
background-color: #fff;
background-attachment: fixed;
background-size: cover;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
-webkit-text-size-adjust: 100%;
}
#letter {
max-width: 900px;
padding: 50px;
margin: 0 auto;
font-size: 18px;
line-height: 1.4em;
margin-bottom: 10em;
}
@media screen and (max-width: 700px) {
#letter {
padding: 30px;
font-size: 16px;
}
}
@media screen and (max-width: 480px) {
#letter {
padding: 20px;
font-size: 15px;
}
}
#foot {
display: block;
margin: 0 auto;
width: 140px;
height: auto;
}
p {
margin-bottom: 1.4em;
}
</style>
</head>
<body>
<section id="letter">
<p><img id="foot" src="logo.png" alt="HackSC Official Logo" /></p>
<p>January 2018</p>
<p>Information to come for a Fall 2018 USC Hackathon.</p>
<p>Thank you for believing in us,</p>
<p>The HackSC Team</p>
</section>
</body>
</html>