Axione-IPE-Viewer/webapp/static/style.css
2023-01-11 15:35:12 +01:00

60 lines
866 B
CSS

body {
margin: 0;
}
#map {
width: 100vw;
height: 100vh;
z-index: 0;
}
#search-addr-autocomplete {
display: float;
top: 0;
z-index: 2;
}
#btn-load-elig-data {
top: 10em;
left: 1em;
position: fixed;
z-index: 1;
padding: .5em;
}
.deployeeAquilenet {
display: inline;
color: green;
}
.deployeeFDN {
display: inline;
color: orange;
}
.deployeeAutres {
display: inline;
color: red;
}
.nonDeployee {
display: inline;
color: brown;
}
.loader {
width: 48px;
height: 48px;
border: 5px solid #1787c2;
border-bottom-color: transparent;
border-radius: 50%;
display: inline-block;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}