pointsight/static/css/mainMap.css

107 lines
1.5 KiB
CSS
Raw Normal View History

2022-03-06 18:36:36 +01:00
body,
html {
background-color: white;
height: 100%;
margin: 0px;
}
.inspector {
margin: 0px;
height: 100vh;
width: 29%;
float: right;
position: fixed;
right: 0px;
top: 0px;
border: 1px solid rgba(97, 97, 97, 0.486);
border-radius: 2px;
margin: 5px;
padding: 4px;
overflow-y: scroll;
}
.fullheight {
height: 100%;
}
.map {
margin: 0px;
height: 100%;
width: 100%;
z-index: 1;
padding: 0px;
/*float: left;*/
}
.lds-ripple {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
}
.lds-ripple div {
position: absolute;
border: 4px solid #fed;
opacity: 1;
border-radius: 50%;
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
animation-delay: -0.5s;
}
@keyframes lds-ripple {
0% {
top: 36px;
left: 36px;
width: 0;
height: 0;
opacity: 1;
}
100% {
top: 0px;
left: 0px;
width: 72px;
height: 72px;
opacity: 0;
}
}
.dropdown:hover .dropdown-menu {
display: block;
}
.reportBtn {
cursor: pointer;
font-size: 16px;
}
.animate-right {
position: relative;
animation: animateright 0.6s;
}
.animate-right-back {
position: relative;
animation: animaterightBack 0.6s;
}
@keyframes animateright {
from {
right: -300px;
opacity: 0;
}
to {
right: 0;
opacity: 1;
}
}
@keyframes animaterightBack {
from {
right: 0;
opacity: 1;
}
to {
right: -300px;
opacity: 0;
}
}