nightTab/css/shade.css

12 lines
252 B
CSS
Raw Normal View History

2018-12-28 15:26:32 +01:00
.shade {
2018-12-26 08:45:53 +01:00
background-color: rgba(var(--accent), 0.5);
position: fixed;
top: -1em;
left: -1em;
width: calc(100% + 2em);
height: calc(100% + 2em);
opacity: 0;
2018-12-26 08:45:53 +01:00
z-index: 1000;
transition: opacity var(--animation-speed-fast) ease-in-out;
2018-12-26 08:45:53 +01:00
}