UNPKG

770 BCSSView Raw
1.next-sr-only {
2 position: absolute;
3 width: 1px;
4 height: 1px;
5 padding: 0;
6 overflow: hidden;
7 clip: rect(0, 0, 0, 0);
8 white-space: nowrap;
9 border: 0;
10 top: 0;
11 margin: -1px; }
12
13.next-overlay-wrapper .next-overlay-inner {
14 z-index: 1001; }
15
16.next-overlay-wrapper .next-overlay-backdrop {
17 position: fixed;
18 z-index: 1001;
19 top: 0;
20 left: 0;
21 width: 100%;
22 height: 100%;
23 background-color: rgba(0, 0, 0, 0.2);
24 background-color: var(--color-calculate-mask-background, rgba(0, 0, 0, 0.2));
25 transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
26 transition: opacity var(--motion-duration-standard, 300ms) var(--motion-default, cubic-bezier(0.4, 0, 0.2, 1));
27 opacity: 0; }
28
29.next-overlay-wrapper.opened .next-overlay-backdrop {
30 opacity: 1; }