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