-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (101 loc) · 1.51 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
font-family: Arial, sans-serif;
line-height: 1.6em;
height: 100%;
}
circle.vectora {
fill: rgba(255, 255, 255, 0.1);
stroke: #000;
stroke-width: 0.2px;
}
circle.vectorb {
fill: rgba(255, 255, 255, 0.1);
stroke: #000;
stroke-width: 0.2px;
}
circle.vectorc {
fill: rgba(255, 255, 255, 0.1);
stroke: #000;
stroke-width: 0.2px;
}
polyline {
stroke-width: 5px;
}
polyline.vectora {
stroke: #dc143c;
stroke-width: 4.5px;
stroke-linecap: round;
}
polyline.vectorb {
stroke: gold;
stroke-width: 4.5px;
stroke-linecap: round;
}
polyline.vectorc {
stroke: blue;
stroke-width: 4.5px;
stroke-linecap: round;
}
text.vectora {
fill: #dc143c;
font-size: 24px;
font-weight: bold;
}
text.vectorb {
fill: gold;
font-size: 24px;
font-weight: bold;
}
text.vectorc {
fill: blue;
font-size: 24px;
font-weight: bold;
}
polyline.vector2 {
stroke: magenta;
stroke-width: 3px;
}
.NegativeSequence {
stroke:magenta
}
polyline.vector1 {
stroke: limegreen;
stroke-width: 3px;
}
.PositiveSequence {
stroke:limegreen
}
polyline.vector0 {
stroke: darkgrey;
stroke-width: 3px;
}
.ZeroSequence {
stroke:darkgrey
}
#mark2 {
fill: magenta;
}
#mark1 {
fill: limegreen;
}
#mark0 {
fill: darkgrey;
}
marker {
fill: black;
}
#marka {
fill: #dc143c;
}
#markb {
fill: gold;
}
#markc {
fill: blue;
}