colouring-montreal/app/src/frontend/map/flood-switcher.css
2022-12-08 20:42:56 +01:00

38 lines
654 B
CSS

.flood-theme {
filter: grayscale(100%) invert(1);
}
.flood-theme {
filter: none;
}
.flood-switcher {
z-index: 1000;
position: absolute;
top: 237px;
right: 10px;
float: right;
background: white;
border-radius: 4px;
}
.flood-switcher .btn {
margin: 0;
min-width: 280px;
}
.flood-switcher.night .btn {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
.flood-switcher.night .btn:hover {
color: #343a40;
background-color: transparent;
background-image: none;
border-color: #343a40;
}
@media (max-width: 990px){
.flood-switcher {
visibility: hidden;
}
}