-
Notifications
You must be signed in to change notification settings - Fork 0
/
DcduInstrument.scss
75 lines (62 loc) · 1.37 KB
/
DcduInstrument.scss
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
@font-face {
font-family: "Roboto";
src: url("/Fonts/RobotoMono-Medium.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Roboto-Light";
src: url("/Fonts/RobotoMono-Light.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
.dcdu-lines {
position: absolute;
left: 10px !important;
top: 10px !important;
width: 492px;
height: 364px;
background: radial-gradient(
ellipse at center,
rgba(4, 4, 5, 1) 0%,
rgb(4, 4, 5) 100%
);
visibility: visible !important;
font-family: Roboto;
path {
stroke: white;
stroke-width: 3;
}
}
.text-wrapper {
position: absolute;
left: 10px !important;
top: 10px !important;
width: 492px;
height: 364px;
background: radial-gradient(
ellipse at center,
rgba(4, 4, 5, 1) 0%,
rgba(4, 4, 5, 1) 100%
);
text {
fill: green;
font-size: 35px;
text-anchor: middle;
font-family: Roboto-Light;
}
}
.inop-wrapper {
position: absolute;
left: 10px !important;
top: 10px !important;
width: 492px;
height: 364px;
visibility: hidden;
text {
fill: white;
font-size: 36px;
text-anchor: middle;
font-family: Roboto-Light;
}
}