forked from alhertz/didberniewin.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (45 loc) · 956 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Did Bernie Sanders Win?</title>
<meta name="description" content="The HTML5 Herald">
<style>
body,
html {
height: 100%;
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-size: 16px;
padding: 0;
margin: 0;
}
h1 {
font-weight: 400;
font-size: 4rem;
margin-bottom: .5rem;
}
p {
color: #999999;
font-size: 1.5rem;
font-weight: 300;
margin-bottom: 0;
}
.island {
max-width: 640px;
margin: 0 auto;
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
text-align: center;
}
</style>
</head>
<body>
<section class="island">
<h1>Yes!</h1>
<p>Bernie won in Wisconson by 56.6% percent of the vote.</p>
</section>
</body>
</html>