-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomslag.css
122 lines (96 loc) · 2.04 KB
/
omslag.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body {
background: rgb(255, 246, 238);
padding: 50px;
}
.point,
.arc {
transition: all 600ms ease-out;
}
.point {
fill: rgba(136, 102, 114, .2);
stroke: rgb(255, 246, 238);
stroke-width: 4px;
}
.arc {
stroke: rgba(136, 102, 114, .3);
stroke-width: 1px;
fill: transparent;
}
.point:hover,
.point.hover,
.point:active {
fill: rgba(136, 102, 114, 1);
}
.point.highlight {
fill: rgb(255, 246, 238);
stroke: #00a19a;
stroke-width:2px;
}
/*rgb(196, 4, 63);*/
.arc.hover {
stroke-width: 2px;
stroke: rgba(136, 102, 114, 1);
}
/* General styles for highlighted arcs */
.arc.depth-0,
.arc.depth-1,
.arc.depth-2,
.arc.depth-3,
.arc.depth-4,
.arc.depth-5 {
stroke-width: 2px;
stroke: rgba(0, 161, 154, .2);
}
.arc.depth-m0,
.arc.depth-m1,
.arc.depth-m2,
.arc.depth-m3,
.arc.depth-m4,
.arc.depth-m5 {
stroke: rgba(196, 4, 63, .25);
stroke-width: 1.2px;
}
/* Predecessors */
.point.depth-m2 { fill: rgba(196, 4, 63, .4); }
.arc.depth-m2 { stroke: rgba(196, 4, 63, .4);}
.point.depth-m1 { fill: rgba(196, 4, 63, .65); }
.arc.depth-m1 { stroke: rgba(196, 4, 63, .65); }
.point.depth-m0 { fill: rgba(196, 4, 63, 1); }
.arc.depth-m0 { stroke: rgba(196, 4, 63, 1); }
/* Descendants */
.point.depth-0 { fill: rgba(0, 161, 154, 1); }
.arc.depth-0 { stroke: rgba(0, 161, 154, 1); }
.point.depth-1 { fill: rgba(0, 161, 154, .5); }
.arc.depth-1 { stroke: rgba(0, 161, 154, .5); }
.point.depth-2 { fill: rgba(0, 161, 154, .2); }
.arc.depth-2 { stroke: rgba(0, 161, 154, .2); }
.ThreadArcsContainer {
position: relative;
z-index: 99;
}
/** Tooltip styles */
.ThreadArcsTooltip {
background: rgb(68, 22, 36);
border-radius:2px;
min-width: 100px;
max-width: 150px;
min-height: 20px;
padding: 5px 10px;
line-height: 1.3;
}
.ThreadArcsTooltipLine {
background: rgba(68, 22, 36, .3);
}
.ThreadArcsTooltip a {
display: inline;
color: rgb(255, 246, 238);
text-decoration: none;
font-family: 'Calluna Sans';
font-size: 13px;
}
.ThreadArcsTooltip .inline-author {
text-transform: uppercase;
font-size: 11px;
letter-spacing: 1px;
font-weight: bold;
}