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

38 lines
653 B
CSS
Raw Normal View History

2021-07-17 17:30:03 -04:00
.night-theme {
filter: grayscale(100%) invert(1);
}
.light-theme {
filter: none;
}
2018-09-13 11:03:49 -04:00
.theme-switcher {
z-index: 1000;
position: absolute;
2019-01-19 14:06:26 -05:00
top: 77px;
2018-09-13 11:03:49 -04:00
right: 10px;
float: right;
background: white;
2018-09-13 15:35:27 -04:00
border-radius: 4px;
}
2018-09-13 11:03:49 -04:00
.theme-switcher .btn {
margin: 0;
min-width: 280px;
2018-09-13 11:03:49 -04:00
}
.theme-switcher.night .btn {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
.theme-switcher.night .btn:hover {
color: #343a40;
background-color: transparent;
background-image: none;
border-color: #343a40;
}
2020-02-03 16:16:49 -05:00
@media (max-width: 990px){
.theme-switcher {
visibility: hidden;
}
}