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