1.1 --- a/bootstrap-source/bootstrap-3.0.3/examples/offcanvas/offcanvas.css Sat Jan 18 12:34:36 2014 +0100
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,51 +0,0 @@
1.4 -/*
1.5 - * Style tweaks
1.6 - * --------------------------------------------------
1.7 - */
1.8 -html,
1.9 -body {
1.10 - overflow-x: hidden; /* Prevent scroll on narrow devices */
1.11 -}
1.12 -body {
1.13 - padding-top: 70px;
1.14 -}
1.15 -footer {
1.16 - padding: 30px 0;
1.17 -}
1.18 -
1.19 -/*
1.20 - * Off Canvas
1.21 - * --------------------------------------------------
1.22 - */
1.23 -@media screen and (max-width: 767px) {
1.24 - .row-offcanvas {
1.25 - position: relative;
1.26 - -webkit-transition: all 0.25s ease-out;
1.27 - -moz-transition: all 0.25s ease-out;
1.28 - transition: all 0.25s ease-out;
1.29 - }
1.30 -
1.31 - .row-offcanvas-right
1.32 - .sidebar-offcanvas {
1.33 - right: -50%; /* 6 columns */
1.34 - }
1.35 -
1.36 - .row-offcanvas-left
1.37 - .sidebar-offcanvas {
1.38 - left: -50%; /* 6 columns */
1.39 - }
1.40 -
1.41 - .row-offcanvas-right.active {
1.42 - right: 50%; /* 6 columns */
1.43 - }
1.44 -
1.45 - .row-offcanvas-left.active {
1.46 - left: 50%; /* 6 columns */
1.47 - }
1.48 -
1.49 - .sidebar-offcanvas {
1.50 - position: absolute;
1.51 - top: 0;
1.52 - width: 50%; /* 6 columns */
1.53 - }
1.54 -}