style.css
ASCII text
1
@import "/static/efficient-ui/MASTER.css";
2
3
:root {
4
--gap-navbar: 1rem;
5
--width-navbar-button: 0;
6
--text-soft: #000000C0;
7
--text-softer: #0000009A;
8
--text-faint: #00000066;
9
}
10
11
p {
12
color: var(--text-soft);
13
}
14
15
iconify-icon {
16
display: inline-block;
17
width: 1em;
18
height: 1em;
19
}
20
21
:is(#shape-selector, #shape-options) > button > iconify-icon {
22
font-size: 2rem;
23
}
24
25
#annotation-zone {
26
position: relative;
27
}
28
29
#annotation-zone > svg {
30
z-index: 1;
31
position: absolute;
32
top: 0;
33
left: 0;
34
width: 100%;
35
height: 100%;
36
}
37
38
.annotation-ruler {
39
z-index: 2;
40
position: absolute;
41
top: 0;
42
left: 0;
43
background: var(--color-accent);
44
display: none;
45
}
46
47
#annotation-ruler-horizontal, #annotation-ruler-horizontal-secondary {
48
height: 1px;
49
width: 100%;
50
}
51
52
#annotation-ruler-vertical, #annotation-ruler-vertical-secondary {
53
width: 1px;
54
height: 100%;
55
}
56
57
.shape {
58
stroke: var(--color-accent);
59
fill: var(--color-accent);
60
fill-opacity: 0.1;
61
stroke-width: 2px;
62
vector-effect: non-scaling-stroke;
63
pointer-events: auto;
64
}
65
66
.shape-polyline {
67
fill: none;
68
}
69
70
.shape.selected {
71
fill-opacity: 0.2;
72
stroke-width: 4px;
73
}
74
75
.shape-container {
76
pointer-events: none;
77
}
78
79
#annotation-helper-message {
80
min-height: 2lh;
81
}
82