2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00

move to examples dir

This commit is contained in:
Mark Otto
2013-08-15 16:40:39 -07:00
parent 54670ab64a
commit 3d99a4c15e
40 changed files with 0 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
/*
* Style twaks
* --------------------------------------------------
*/
body {
padding-top: 70px;
}
footer {
padding-left: 15px;
padding-right: 15px;
}
/*
* Off Canvas
* --------------------------------------------------
*/
@media screen and (max-width: 768px) {
.row-offcanvas {
position: relative;
overflow: hidden // Needed for Internet Explorer
-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 {
right: -58.333333333333336%; // 6 columns
}
.row-offcanvas-left
.sidebar-offcanvas {
left: -58.333333333333336%; // 6 columns
}
.row-offcanvas-right.active {
right: 58.333333333333336%; // 6 columns
}
.row-offcanvas-left.active {
left: 58.333333333333336%; // 6 columns
}
.sidebar-offcanvas {
position: absolute;
width: 58.333333333333336%; // 6 columns
}
}