This repository was archived by the owner on Jul 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogressGraph.css
More file actions
103 lines (90 loc) · 1.54 KB
/
progressGraph.css
File metadata and controls
103 lines (90 loc) · 1.54 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
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
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.brush .extent {
stroke: #fff;
fill-opacity: .125;
shape-rendering: crispEdges;
}
.saved-area {
transition: opacity 0.3s ease;
fill: #FFB300;
opacity: 0.5;
stroke-width: 0;
}
.saved-area:hover {
opacity: 1;
stroke-width: 0;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.d3-tip {
line-height: 1;
padding: 12px;
background: rgba(76,102,164,0.7);
color: #000000;
border-radius: 2px;
}
/*Creates a small triangle extender for the tooltip*/
.d3-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgba(76,102,164,0.7);
content: "\25BC";
position: absolute;
text-align: center;
}
/*Style northward tooltips differently */
.d3-tip.n:after {
margin: -1px 0 0 0;
top: 100%;
left: 0;
}
path.progress-line {
stroke: steelblue;
stroke-width: 4;
fill: none;
}
.axis {
shape-rendering: crispEdges;
}
.x.axis line {
stroke: lightgrey;
}
.x.axis .minor {
stroke-opacity: .5;
}
.x.axis path {
stroke: lightgrey;
stroke-opacity: .5;
}
.y.axis line, .y.axis path {
fill: none;
stroke: #000;
}
path.starting-line {
stroke: rgba(0,0,0,.3);
stroke-width: 8;
fill: none;
}
path.starting-line:hover {
stroke:rgba(0,0,0,.7);
}
path.weekly-goal-line {
stroke: rgba(255,179,0,.3);
stroke-width: 8;
fill: none;
}
path.weekly-goal-line:hover {
stroke: rgba(255,179,0,.7);
}