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

hella examples fixing, mostly navbars and lots of work on grids example

This commit is contained in:
Mark Otto
2013-08-15 17:39:37 -07:00
parent 05ebd5ebf9
commit 024e320e5c
18 changed files with 278 additions and 155 deletions
+6 -6
View File
@@ -17,7 +17,7 @@ footer {
@media screen and (max-width: 768px) {
.row-offcanvas {
position: relative;
overflow: hidden // Needed for Internet Explorer
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;
@@ -25,24 +25,24 @@ footer {
.row-offcanvas-right
.sidebar-offcanvas {
right: -58.333333333333336%; // 6 columns
right: -58.333333333333336%; /* 6 columns */
}
.row-offcanvas-left
.sidebar-offcanvas {
left: -58.333333333333336%; // 6 columns
left: -58.333333333333336%; /* 6 columns */
}
.row-offcanvas-right.active {
right: 58.333333333333336%; // 6 columns
right: 58.333333333333336%; /* 6 columns */
}
.row-offcanvas-left.active {
left: 58.333333333333336%; // 6 columns
left: 58.333333333333336%; /* 6 columns */
}
.sidebar-offcanvas {
position: absolute;
width: 58.333333333333336%; // 6 columns
width: 58.333333333333336%; /* 6 columns */
}
}