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