You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
427 B
29 lines
427 B
6 years ago
|
body {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
.slideout-menu {
|
||
|
position: fixed;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
right: 0;
|
||
|
z-index: 0;
|
||
|
width: 300px;
|
||
|
overflow-y: auto;
|
||
|
-webkit-overflow-scrolling: touch;
|
||
|
display: none;
|
||
|
}
|
||
|
.slideout-panel {
|
||
|
position:relative;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
.slideout-open,
|
||
|
.slideout-open body,
|
||
|
.slideout-open .slideout-panel {
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
.slideout-open .slideout-menu {
|
||
|
display: block;
|
||
|
}
|