107 lines
1.2 KiB
CSS
107 lines
1.2 KiB
CSS
@charset "UTF-8";
|
|
/* stylelint-disable selector-list-comma-newline-after, property-no-vendor-prefix */
|
|
|
|
/*
|
|
* Globals
|
|
*/
|
|
|
|
|
|
/*
|
|
* Canto
|
|
*/
|
|
|
|
.blog-main{
|
|
font-size: 13px;
|
|
font-family: -apple-system, BlinkMacSystemFont, “Helvetica Neue”,
|
|
“Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”,
|
|
“Fira Sans”, “Droid Sans”,
|
|
sans-serif;
|
|
}
|
|
|
|
/*
|
|
* Footer
|
|
*/
|
|
|
|
#displaycanto span:hover {
|
|
color: red;
|
|
}
|
|
/*
|
|
Popover properties
|
|
*/
|
|
|
|
.popover-header {
|
|
color: blue;
|
|
font-size: 13px;
|
|
}
|
|
.popover-body {
|
|
color: red;
|
|
font-size: 12px;
|
|
}
|
|
.popover-footer {
|
|
color: gray;
|
|
font-size: 10px;
|
|
}
|
|
|
|
/*
|
|
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;
|
|
}
|
|
|