twbs--bootstrap/examples/offcanvas/offcanvas.css

51 lines
851 B
CSS
Raw Normal View History

/*
2013-08-25 21:58:01 +00:00
* Style tweaks
* --------------------------------------------------
*/
html {
overflow-x: hidden;
}
body {
padding-top: 70px;
}
footer {
padding: 30px 0;
}
/*
* Off Canvas
* --------------------------------------------------
*/
@media screen and (max-width: 767px) {
.row-offcanvas {
position: relative;
-webkit-transition: all 0.25s ease-out;
-moz-transition: all 0.25s ease-out;
transition: all 0.25s ease-out;
}
.row-offcanvas-right
.sidebar-offcanvas {
2013-08-16 21:12:18 +00:00
right: -50%; /* 6 columns */
}
.row-offcanvas-left
.sidebar-offcanvas {
2013-08-16 21:12:18 +00:00
left: -50%; /* 6 columns */
}
.row-offcanvas-right.active {
2013-08-16 21:12:18 +00:00
right: 50%; /* 6 columns */
}
.row-offcanvas-left.active {
2013-08-16 21:12:18 +00:00
left: 50%; /* 6 columns */
}
.sidebar-offcanvas {
position: absolute;
2013-08-16 21:12:18 +00:00
top: 0;
width: 50%; /* 6 columns */
}
2013-08-25 21:58:01 +00:00
}