-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathplugin.css
More file actions
52 lines (48 loc) · 1.04 KB
/
plugin.css
File metadata and controls
52 lines (48 loc) · 1.04 KB
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
.Sail_InstrumentWidget {
 display: flex;
 flex-direction: row;
height: 10em;
padding: 0;
}
.Sail_InstrumentWidget canvas.widgetData {
width: 100%;
height: 100%;
flex-grow: 1;
}
.Sail_InstrumentInfo {
 display: flex;
 flex-direction: row;
}
.Sail_InstrumentInfo .Sail_InstrumentInfoInner {
font-size: 1 em;
position: relative;
padding-right: 0.3em;
}
.SIcompass {
position: absolute;
width: 100%;
height: 100%;
background-image: url('compass.svg');
background-repeat: no-repeat;
background-size: contain;
background-position: center center;
}
.nightMode .SIcompass {
filter: invert(1) brightness(0.3) sepia(1) saturate(7) hue-rotate(-30deg) brightness(0.9);
}
.SImarker {
position: absolute;
width: 100%;
height: 100%;
background-image: url('marker.svg');
background-repeat: no-repeat;
background-size: contain;
background-position: center center;
}
.SIvalue {
position: absolute;
width: 100%;
xheight: 100%;
text-align: center;
xvertical-align: bottom;
}