blob: d1ff2b3fbedfff5f8a890fd7768550a2ee39d78b (
plain)
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
|
#graph {
margin: 0 auto;
text-align: center;
}
.line {
fill: none;
stroke: blue;
clip-path: url(#clip);
}
.z-line line {
stroke: #ccc;
shape-rendering: crispEdges;
}
circle {
clip-path: url(#clip);
fill: blue;
}
rect {
fill: white;
opacity: 0;
}
#rubric {
text-align: left;
padding-bottom: 20px;
padding-top: 10px;
width: 80%;
font-size: 16px;
}
#usage {
font-size: 16px;
font-style: italic;
}
|