The smokesignal.events web application
at main 32 lines 575 B view raw
1/** 2 * Utility Classes 3 * 4 * Generic utility classes that complement Bulma. 5 */ 6 7/* Alpine.js cloak - hide until Alpine initializes */ 8[x-cloak] { 9 display: none !important; 10} 11 12/* Smooth transitions for hover effects */ 13.transition-all { 14 transition: all 0.2s ease; 15} 16 17/* Map container base styles */ 18.map-container { 19 z-index: 1; 20 border-radius: 6px; 21 overflow: hidden; 22} 23 24/* H3 hexagon base styles */ 25.h3-hex { 26 fill-opacity: var(--smokesignal-map-hex-fill-opacity); 27 stroke-width: var(--smokesignal-map-hex-stroke-width); 28} 29 30.h3-hex-center { 31 stroke-width: 3px; 32}