dok/public/css/launcher.css
2026-03-11 17:51:55 +00:00

30 lines
445 B
CSS

.worldmap {
position: relative;
width: 100%;
height: 100vh;
background: url("/images/dok_bg.png") center / cover no-repeat;
}
.map-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.area {
fill: rgba(255, 255, 255, 0);
cursor: pointer;
transition: all 0.25s;
}
.area:hover {
fill: rgba(255, 255, 255, 0.2);
stroke: #6ec6ff;
stroke-width: 3;
filter: drop-shadow(0 0 10px #6ec6ff);
}