forked from angle-meter/angle-meter.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles-dark.css
52 lines (43 loc) · 849 Bytes
/
styles-dark.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
@media (prefers-color-scheme: dark) {
body {
background-color: #333;
color: #CCC;
}
.svg {
background-color: black;
}
.svg-aux-circle {
stroke: #888888;
stroke-width: 0.5;
}
.svg-aux-line {
stroke: #888888;
stroke-width: 0.5;
}
.svg-pointer-line {
stroke: #0088FF;
}
.svg-scale-text {
fill: #888;
}
.svg-scale-circle-outer {
stroke: #333;
stroke-width: 0.5;
}
.svg-scale-circle-middle {
stroke: #111;
stroke-width: 20;
}
.svg-scale-circle-inner {
stroke: #222;
stroke-width: 0.5;
}
.info img, .sample {
border: solid 1px #666;
border-radius: 5px;
box-shadow: 1px 1px 10px #111;
}
a {
color: #08F;
}
}