blob: 0c7dbc2f198cfa237b69eb8567068d1415ec5eaf (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
.graph-wrapper {
width: 90%;
margin: 0 auto;
}
#graph_user > svg {
width: 100%;
height: 100%;
}
#graph_true > svg {
width: 100%;
height: 100%;
}
.line {
fill: none;
stroke: blue;
clip-path: url(#clip);
}
circle {
clip-path: url(#clip);
fill: blue;
}
rect {
fill: white;
opacity: 0;
}
.marked {
fill: #fc8d62;
stroke: #fc8d62;
}
#next-btn {
text-align: right;
padding-bottom: 20px;
}
#lesson {
padding-top: 10px;
padding-bottom: 10px;
}
#lesson p {
font-size: 16px;
}
.ann-line {
stroke-dasharray: 5;
clip-path: url(#clip);
fill: #fc8d62;
stroke: #fc8d62;
stroke-width: 2px;
}
|