-
Notifications
You must be signed in to change notification settings - Fork 1
/
stylesheet.css
94 lines (76 loc) · 1.08 KB
/
stylesheet.css
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
body {
margin: 0 auto;
background-color: #f9f9f9;
font-family: 'Open Sans', sans-serif;
color: #616161;
}
header {
margin: auto;
padding-bottom: 50px;
}
footer {
margin: 100px auto;
text-align: left;
font-size: .8em;
width: 450px;
}
footer p {
padding-top: 15px;
}
footer img {
float: left;
padding: 0 10px 0 20px;
}
svg {
display: block;
margin: auto;
}
.node {
transition: opacity .5s;
}
.node circle {
cursor: pointer;
stroke: #2B282B;
stroke-width: 1.5px;
}
.node circle:hover {
opacity: 0.5;
}
.link {
stroke: #2B282B;
stroke-opacity: .6;
}
.node text {
pointer-events: none;
font-size: 1em;
font-family: 'Open Sans', sans-serif;
color: #3B3B3B;
}
.node_data {
max-width: 800px;
margin: auto;
}
.legend circle {
transition: opacity .5s;
stroke: #2B282B;
stroke-width: 1.5px;
}
h1 {
margin-bottom: 0;
text-align: center;
font-size: 2.5em;
}
h2 {
margin-top: 0;
font-family: 'Open Sans Condensed', sans-serif;
font-size: 2em;
}
header h2 {
text-align: center;
}
p {
font-size: 1em;
}
a {
color: #4B9DA3;
}