File size: 1,181 Bytes
27867f1 |
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
:root {
--window-inset-top: 0px;
--window-inset-bottom: 0px;
--window-inset-left: 0px;
--window-inset-right: 0px;
}
html {
line-height: 1.618;
}
body,
html {
margin: 0 !important;
padding: 0 !important;
height: 100%;
overflow-x: hidden;
overflow-anchor: none;
}
.noScrollY {
overflow-y: hidden;
}
.backgroundContainer {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
contain: strict;
}
.mainAnimatedPages {
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
contain:layout style size;
}
.page {
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
contain:layout style size;
}
.backdropContainer-withfulldrawer, .skinBody-withFullDrawer {
left: 18.6em;
}
@media all and (min-width: 20em) {
.backdropContainer-withfulldrawer, .skinBody-withFullDrawer {
left: 13em;
}
}
@media all and (min-width: 40em) {
.backdropContainer-withfulldrawer, .skinBody-withFullDrawer {
left: 30%;
}
}
@media all and (min-width: 55em) {
.backdropContainer-withfulldrawer, .skinBody-withFullDrawer {
left: 18.6em;
}
}
|