colouring-montreal/app/src/frontend/map/creative-switcher.css
2022-12-08 20:45:33 +01:00

38 lines
675 B
CSS

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