37 lines
789 B
CSS
37 lines
789 B
CSS
/*
|
|
jQuery.mmenu widescreen extension CSS
|
|
|
|
To use on widescreens only, include it using a mediaquery:
|
|
<link type="text/css" href="mmenu-widescreen.css" media="all and (min-width: 900px)"/>
|
|
*/
|
|
html,
|
|
body {
|
|
overflow: auto !important; }
|
|
|
|
body {
|
|
position: relative; }
|
|
|
|
#mm-blocker {
|
|
display: none !important; }
|
|
|
|
.mm-slideout {
|
|
-webkit-transform: none !important;
|
|
-moz-transform: none !important;
|
|
-ms-transform: none !important;
|
|
-o-transform: none !important;
|
|
transform: none !important;
|
|
width: 70% !important;
|
|
margin-left: 30% !important; }
|
|
|
|
.mm-page {
|
|
background: inherit;
|
|
box-sizing: border-box;
|
|
min-height: 100vh; }
|
|
|
|
.mm-menu.mm-widescreen {
|
|
display: block;
|
|
width: 30% !important;
|
|
min-width: none !important;
|
|
max-width: none !important;
|
|
z-index: 0; }
|