LiDa_Search/css/browsingldc.css

126 lines
1.6 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;
}
/* on mouseOver classes */
.Nik_dropdown {
position: relative;
display: inline-block;
}
.Nik_dropdown-content {
display: none;
position: absolute;
top: -60px;
left: 50px;
background-color: rgb(252, 252, 252);
min-width: 270px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
padding: 8px 8px;
color:red;
font-size: 10;
z-index: 1;
float: top;
}
.Nik_dropdown:hover .Nik_dropdown-content {
display: block;
}