32 lines
451 B
CSS
32 lines
451 B
CSS
/* ================================================
|
||
launcher-dev.css – Map Developer Tool
|
||
Dynasty of Knights
|
||
================================================ */
|
||
|
||
body {
|
||
margin: 0;
|
||
background: #000;
|
||
display: flex;
|
||
justify-content: center;
|
||
}
|
||
|
||
.wrapper {
|
||
position: relative;
|
||
}
|
||
|
||
img {
|
||
display: block;
|
||
}
|
||
|
||
svg {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
}
|
||
|
||
polygon {
|
||
fill: rgba(255, 0, 0, 0.35);
|
||
stroke: red;
|
||
stroke-width: 2;
|
||
}
|