colouring-montreal/app/src/frontend/map/parcel-switcher.css

38 lines
661 B
CSS
Raw Normal View History

2022-10-12 07:13:59 -04:00
.parcel-theme {
filter: grayscale(100%) invert(1);
}
.parcel-theme {
filter: none;
}
.parcel-switcher {
z-index: 1000;
position: absolute;
2022-11-04 10:50:09 -04:00
top: 157px;
2022-10-12 07:13:59 -04:00
right: 10px;
float: right;
background: white;
border-radius: 4px;
}
.parcel-switcher .btn {
margin: 0;
min-width: 280px;
}
.parcel-switcher.night .btn {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
.parcel-switcher.night .btn:hover {
color: #343a40;
background-color: transparent;
background-image: none;
border-color: #343a40;
}
@media (max-width: 990px){
.parcel-switcher {
visibility: hidden;
}
}