34 lines
384 B
CSS
34 lines
384 B
CSS
.worldmap {
|
|
position: relative;
|
|
|
|
width: 2037px;
|
|
height: 1018px;
|
|
}
|
|
|
|
.map-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.area {
|
|
fill: rgba(255, 255, 255, 0);
|
|
|
|
cursor: pointer;
|
|
|
|
transition: 0.25s;
|
|
}
|
|
|
|
.area:hover {
|
|
fill: rgba(120, 200, 255, 0.18);
|
|
|
|
stroke: #6ec6ff;
|
|
|
|
stroke-width: 3;
|
|
|
|
filter: drop-shadow(0 0 14px #6ec6ff);
|
|
}
|