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; 27} 28 29.annotation-ruler { 30z-index: 2; 31position: absolute; 32top: 0; 33left: 0; 34background: var(--color-accent); 35display: none; 36} 37 38#annotation-ruler-horizontal, #annotation-ruler-horizontal-secondary { 39height: 1px; 40width: 100%; 41} 42 43#annotation-ruler-vertical, #annotation-ruler-vertical-secondary { 44width: 1px; 45height: 100%; 46} 47 48.shape-bbox { 49stroke: var(--color-accent); 50stroke-width: 2px; 51} 52