Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 11x | .container {
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
overflow: hidden;
}
.default {
background-color: var(--zdt_freezelayer_default_bg);
}
.dark {
background-color: var(--zdt_freezelayer_dark_bg);
}
.darkLight {
background-color: var(--zdt_freezelayer_darklight_bg);
}
.plain {
background-color: var(--zdt_freezelayer_plain_bg);
}
.snow {
background-color: var(--zdt_freezelayer_snow_bg);
}
.index3 {
z-index: 3;
}
.index5 {
z-index: 5;
}
.index7 {
z-index: 7;
}
.index10 {
z-index: 10;
}
.delay {
transition-delay: var(--zd_transition2);
}
|