mirror of
https://github.com/zombieFox/nightTab.git
synced 2024-11-27 02:24:22 +01:00
15 lines
498 B
CSS
15 lines
498 B
CSS
.edge {
|
|
background-color: rgba(var(--accent), 0.10);
|
|
width: 0;
|
|
height: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
opacity: 0;
|
|
border-radius: calc(var(--radius) * 2);
|
|
box-shadow: inset 0 0 0 var(--line-width) rgb(var(--accent)), inset 0 0 0 calc(var(--line-width) * 2) rgba(var(--accent), 0.25), inset 0 0 0 calc(var(--line-width) * 3) rgba(var(--accent), 0.25);
|
|
z-index: var(--z-index-edge);
|
|
pointer-events: none;
|
|
transition: opacity var(--animation-speed-fast) ease-in-out;
|
|
}
|