-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (48 loc) · 1.22 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
---
---
<!doctype html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="bower_components/primer-css/css/primer.css">
<link type="text/css" rel="stylesheet" href="bower_components/octicons/octicons/octicons.css">
<script src='//cdn.jsdelivr.net/g/d3js'></script>
<style>
.plate {
z-index: 1000;
width: 60%;
top: 50%;
transform: translate(0%, 25%);
}
.plate column {
positive; relative;
top: 50%;
transform: translate(0%, 25%);
}
hexbin svg {
z-index: 0;
}
</style>
</head>
<body>
<hexbin></hexbin>
<div class="plate container">
<div class="columns">
<div class="column one-half">
<div class="blankslate spacious">
<h1>Visit Us on Github <br>
<big><span class="mega-octicon octicon-mark-github"></span></big></h1>
</div>
</div>
<div class="column one-half">
<div class="blankslate">
{% include mailchimp.html %}
</div>
</div>
</div>
</div>
</body>
<script src="hexbin.js"></script>
<script>
//I don't understand css
</script>
</html>