-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (73 loc) · 1.08 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
svg {
width: 100vw;
height: 100vh;
}
/* Common wire style */
.wire {
stroke: var(--grey); /* Black color for all wires */
stroke-width: 8;
}
.CLKwire {
stroke: var(--grey); /* Black color for all wires */
stroke-width: 8;
}
.trail{
stroke-width: 8;
}
/* Specific trail styles */
.trail.color-1 {
stroke: #F9D98E;
}
.trail.color-2 {
stroke: #E62D69;
}
.trail.color-3 {
stroke: #9B0044;
}
.trail.color-4 {
stroke: #F38821;
}
.trail.color-5 {
stroke: #E62D68;
}
.trail.color-6 {
stroke: #9B0043;
}
.trail.color-7 {
stroke: #268A81;
}
.Me {
font-weight: 800;
font-size: 40px;
font-family: var(--font);
fill: #FFFFFF;
}
.labelID {
font-weight: 800;
font-size: 30px;
font-family: var(--font);
}
.label.color-1 {
fill: #F9D987;
}
.label.color-2 {
fill: #E62D69;
}
.label.color-3 {
fill: #9B0044;
}
.label.color-4 {
fill: #F38821;
}
.labelID.color-1{
fill: #CD8C3A;
}
.labelID.color-2{
fill: #AF033E;
}
.labelID.color-3{
fill: #F783AE;
}
.labelID.color-4{
fill: #FFD57C;
}