mirror of
https://github.com/zombieFox/nightTab.git
synced 2024-11-26 10:03:42 +01:00
20 lines
384 B
CSS
20 lines
384 B
CSS
.m-shade {
|
|
background-color: rgba(var(--accent), 0.5);
|
|
position: fixed;
|
|
top: -1em;
|
|
left: -1em;
|
|
width: calc(100% + 2em);
|
|
height: calc(100% + 2em);
|
|
opacity: 0.5;
|
|
z-index: 1000;
|
|
transition: opacity var(--animation-speed-slow);
|
|
}
|
|
|
|
@media (min-width: $screen-sm) {}
|
|
|
|
@media (min-width: $screen-md) {}
|
|
|
|
@media (min-width: $screen-lg) {}
|
|
|
|
@media (min-width: $screen-xl) {}
|