forked from mrafayaleem/community-clusters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (79 loc) · 1.33 KB
/
style.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
94
95
body {
font-family: 'Roboto', sans-serif;
font-weight: 300;
counter-reset: heading;
}
h1:before {
content: counter(heading) ".\0000a0\0000a0";
counter-increment: heading;
}
h1 {
counter-reset: subheading;
}
h2:before {
content: counter(heading)"." counter(subheading) ".\0000a0";
counter-increment: subheading;
}
b {
font-weight: 900;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
text-align: left;
padding: 3px;
}
.outline {
fill: none;
stroke: #888888;
stroke-width: 1px;
}
#tooltip {
font-size: 10pt;
font-weight: 900;
fill: #000000;
stroke: #ffffff;
stroke-width: 0.25px;
}
.node {
stroke: #ffffff;
stroke-weight: 1px;
}
.link {
fill: none;
stroke: #888888;
stroke-weight: 1px;
stroke-opacity: 0.5;
}
.highlight {
stroke: red;
stroke-weight: 4px;
stroke-opacity: 1.0;
}
.svg-container {
display: inline-block;
position: relative;
width: 100%;
padding-bottom: 10px;
vertical-align: top;
overflow: hidden;
}
.svg-content {
display: inline-block;
position: absolute;
top: 0;
left: 0;
}
.column {
float: left;
width: 45%;
padding: 0px 30px 0px 30px;
}
.row {
padding: 10px;
}
.row::after {
content: "";
clear: both;
display: table;
}