81 lines
737 B
CSS
81 lines
737 B
CSS
@charset "UTF-8";
|
|
/* stylelint-disable selector-list-comma-newline-after, property-no-vendor-prefix */
|
|
|
|
/*
|
|
* Globals
|
|
*/
|
|
|
|
|
|
/*
|
|
* Canto
|
|
*/
|
|
|
|
/*
|
|
* Footer
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
Minimap
|
|
*/
|
|
|
|
|
|
.minimap__container {
|
|
/*position: fixed;*/
|
|
/*top: 160px;*/
|
|
/*left: 600px;*/
|
|
min-width: 20px;
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
|
.minimap__size {
|
|
|
|
position: relative;
|
|
z-index: 5;
|
|
border: 2px solid white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.minimap__viewer {
|
|
|
|
width: 70%;
|
|
|
|
position:absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
transform-origin: 0 0;
|
|
|
|
z-index: 100;
|
|
|
|
/*border: 1px solid #0000009a; */
|
|
border: 1px solid blue;
|
|
|
|
}
|
|
|
|
|
|
.minimap__content {
|
|
position:absolute;
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width:100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: -1;
|
|
|
|
transform-origin: 0 0;
|
|
|
|
border: 1px solid white;
|
|
}
|
|
|