29 lines
634 B
CSS
29 lines
634 B
CSS
/*
|
|
jQuery.mmenu footer addon CSS
|
|
*/
|
|
.mm-footer {
|
|
background: inherit;
|
|
border-top: 1px solid transparent;
|
|
text-align: center;
|
|
line-height: 20px;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 40px;
|
|
padding: 10px 20px;
|
|
position: absolute;
|
|
z-index: 3;
|
|
bottom: 0;
|
|
left: 0;
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
-moz-transform: translate3d(0, 0, 0);
|
|
-ms-transform: translate3d(0, 0, 0);
|
|
-o-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0); }
|
|
|
|
.mm-menu.mm-hasfooter > .mm-panel {
|
|
bottom: 40px; }
|
|
|
|
.mm-menu .mm-footer {
|
|
border-color: rgba(0, 0, 0, 0.1);
|
|
color: rgba(0, 0, 0, 0.3); }
|