-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (87 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
body {
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-size: 12px;
user-select: none;
}
svg {
stroke-width:1;
box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.5);
border-radius: 5px;
display: block;
margin: auto;
border: 1px solid rgba(0,0,0,0.2);
padding: 20px;
}
svg path {
fill: none;
}
svg circle {
fill: blue;
stroke: #aaa;
cursor: move;
}
svg .points-menu g {
opacity: 0.2;
}
svg .points-menu g.active {
cursor: pointer;
opacity: 1;
}
svg .points-menu line {
stroke: #777;
stroke-width: 3;
}
svg .points-menu rect {
fill: white;
}
.sidebar {
display: inline-block;
position: relative;
vertical-align: top;
margin-top: 20px;
color: #444;
}
.sidebar .header {
font-size: 14px;
font-weight: bold;
text-align: right;
color: #aaa;
width: 100%;
}
.menu .item {
padding: 5px;
border: 1px solid #ddd;
margin: 4px 2px;
float: left;
cursor: pointer;
border-radius: 8px;
width: 200px;
text-align: center;
}
.sidebar .info {
float: left;
margin-top: 20px;
line-height: 1.5em;
}
.axis path, .axis line{
stroke: #8f9397;
stroke-width: 0.5px;
}
.axis text{
stroke: #8f9397;
stroke-width: 0.5px;
/* font-weight : bold; */
}
/*
path {
fill: none;
stroke: #000;
stroke-width: 1px;
stroke-linejoin: round;
stroke-linecap: round;
} */
.old {
stroke: lightgrey;
stroke-dasharray: 5;
stroke-dashoffset: 5;
}