forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (59 loc) · 1.25 KB
/
index.html
File metadata and controls
73 lines (59 loc) · 1.25 KB
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
---
layout: index
---
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300' rel='stylesheet' type='text/css'>
<div id="example"></div>
<script src="graph.js"></script>
<div id="gracenolan">Grace Nolan</div>
<style>
#gracenolan{
position: relative;
font-family: 'Open Sans Condensed', sans-serif;
/*font-family:"Helvetica Neue", Helvetica, LiberationSans, Arial, sans-serif; */
font-size: 8em;
color: #ECECEC;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: -1;
overflow: hidden;
}
.node {
cursor: pointer;
/*stroke: #3182bd;*/
stroke-width: 1.5px;
}
.hover{
font-family: 'Open Sans Condensed', sans-serif;
fill: #eee;
font-size: 20px;
padding-left: 10px;
/*visibility: hidden;*/
}
.hover:hover{
visibility: visible;
}
.link {
fill: none;
stroke: #DCDCDC;
stroke-width: 1.5px;
}
#graph {
display: block;
width: 100%;
margin: 0 auto;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.fa{
color: #fff;
stroke: none;
}
</style>