2022-11-06 17:12:56 +01:00
|
|
|
@charset "UTF-8";
|
|
|
|
/* stylelint-disable selector-list-comma-newline-after, property-no-vendor-prefix */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Globals
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Canto
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Footer
|
|
|
|
*/
|
|
|
|
|
2022-12-05 11:41:58 +01:00
|
|
|
|
2022-11-08 10:44:20 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Minimap
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2022-12-05 11:41:58 +01:00
|
|
|
.minimap__container {
|
2022-11-15 10:41:16 +01:00
|
|
|
/*position: fixed;*/
|
2022-11-17 16:37:08 +01:00
|
|
|
/*top: 160px;*/
|
|
|
|
/*left: 600px;*/
|
2022-11-17 10:15:29 +01:00
|
|
|
min-width: 20px;
|
2022-11-08 10:44:20 +01:00
|
|
|
z-index: 100;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-12-05 11:41:58 +01:00
|
|
|
|
|
|
|
.minimap__size {
|
2022-11-08 10:44:20 +01:00
|
|
|
|
|
|
|
position: relative;
|
|
|
|
z-index: 5;
|
|
|
|
border: 2px solid white;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-12-05 11:41:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
.minimap__viewer {
|
2022-11-08 10:44:20 +01:00
|
|
|
|
2022-12-05 11:41:58 +01:00
|
|
|
width: 70%;
|
2022-11-08 10:44:20 +01:00
|
|
|
|
|
|
|
position:absolute;
|
|
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
|
|
transform-origin: 0 0;
|
|
|
|
|
|
|
|
z-index: 100;
|
|
|
|
|
2022-11-11 22:11:22 +01:00
|
|
|
/*border: 1px solid #0000009a; */
|
|
|
|
border: 1px solid blue;
|
2022-11-10 15:41:43 +01:00
|
|
|
|
2022-11-08 10:44:20 +01:00
|
|
|
}
|
|
|
|
|
2022-12-05 11:41:58 +01:00
|
|
|
|
|
|
|
.minimap__content {
|
2022-11-08 10:44:20 +01:00
|
|
|
position:absolute;
|
|
|
|
top: 0;
|
|
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
|
|
width:100%;
|
|
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
z-index: -1;
|
|
|
|
|
|
|
|
transform-origin: 0 0;
|
|
|
|
|
|
|
|
border: 1px solid white;
|
|
|
|
}
|
|
|
|
|