aboutsummaryrefslogtreecommitdiff
path: root/offcanvas/offcanvas.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-07-26 20:43:22 -0700
committerMark Otto <[email protected]>2013-07-26 20:43:22 -0700
commitc3e662641135b9fadeff589682e85eb4ace4bce6 (patch)
tree06eafabcd7293083dea7d35f9ec11156aab29c5a /offcanvas/offcanvas.css
parent4b849e5fd7e5df575ffc64be75816a16b2fef27f (diff)
parent9c13af8cb10f6e16322c50dfc82ae9263d99b82a (diff)
downloadbootstrap-c3e662641135b9fadeff589682e85eb4ace4bce6.tar.xz
bootstrap-c3e662641135b9fadeff589682e85eb4ace4bce6.zip
Merge branch 'example-named-files'
Conflicts: .gitignore
Diffstat (limited to 'offcanvas/offcanvas.css')
-rw-r--r--offcanvas/offcanvas.css100
1 files changed, 100 insertions, 0 deletions
diff --git a/offcanvas/offcanvas.css b/offcanvas/offcanvas.css
new file mode 100644
index 000000000..6dcd5ece1
--- /dev/null
+++ b/offcanvas/offcanvas.css
@@ -0,0 +1,100 @@
+body {
+ padding-top: 80px;
+}
+footer {
+ padding-left: 15px;
+ padding-right: 15px;
+}
+
+/*
+ * Off canvas
+ * -------------------------------------------------- */
+
+.row-offcanvas {
+ position: relative;
+ overflow: hidden;
+ -webkit-transition: all 0.25s ease-out;
+ -moz-transition: all 0.25s ease-out;
+ transition: all 0.25s ease-out;
+}
+.row-offcanvas.active {
+ overflow: visible;
+}
+.row-offcanvas-right .sidebar-offcanvas {
+ right: -210px; /* 60px * 3.5 = very small phones like 240x320 HTC Wildfire */
+}
+.row-offcanvas-left .sidebar-offcanvas {
+ left: -210px; /* 60px * 3.5 = very small phones like 240x320 HTC Wildfire */
+}
+.row-offcanvas-right.active {
+ right: 210px; /* 60px * 3.5 = very small phones like 240x320 HTC Wildfire */
+}
+.row-offcanvas-left.active {
+ left: 210px; /* 60px * 3.5 = very small phones like 240x320 HTC Wildfire */
+}
+.sidebar-offcanvas {
+ position: absolute;
+ top: 0;
+}
+
+@media screen and (max-width: 319px) {
+ /* This is here instead of being outside the media queries because when
+ * we exit "mobile land", the sidebar needs to be able to restore its
+ * originally authored ".col-lg-X" width. */
+ .sidebar-offcanvas {
+ width: 210px; /* 60px * 3.5 = very small phones like 240x320 HTC Wildfire */
+ }
+}
+
+@media screen and (min-width: 320px) and (max-width: 480px) {
+ .row-offcanvas-right .sidebar-offcanvas {
+ right: -270px; /* 60px * 4.5 = average iPhones and Android phones */
+ }
+ .row-offcanvas-left .sidebar-offcanvas {
+ left: -270px; /* 60px * 4.5 = average iPhones and Android phones */
+ }
+ .row-offcanvas-right.active {
+ right: 270px; /* 60px * 4.5 = average iPhones and Android phones */
+ }
+ .row-offcanvas-left.active {
+ left: 270px; /* 60px * 4.5 = average iPhones and Android phones */
+ }
+ .sidebar-offcanvas {
+ width: 270px; /* 60px * 4.5 = average iPhones and Android phones */
+ }
+}
+
+/* Landscape phone to tablets
+ * -------------------------- */
+@media screen and (min-width: 481px) and (max-width: 767px) {
+ .row-offcanvas-right .sidebar-offcanvas {
+ right: -480px; /* 60px * 8 = Tablets and wider */
+ }
+ .row-offcanvas-left .sidebar-offcanvas {
+ left: -480px; /* 60px * 8 = Tablets and wider */
+ }
+ .row-offcanvas-right.active {
+ right: 480px; /* 60px * 8 = Tablets and wider */
+ }
+ .row-offcanvas-left.active {
+ left: 480px; /* 60px * 8 = Tablets and wider */
+ }
+ .sidebar-offcanvas {
+ width: 480px; /* 60px * 8 = Tablets and wider */
+ }
+}
+
+/* Tablets & above
+ * ---------------- */
+@media screen and (min-width: 768px) {
+ .row-offcanvas {
+ position: static;
+ overflow: visible;
+ }
+ .sidebar-offcanvas {
+ position: static;
+ }
+ .btn-offcanvas {
+ display: none;
+ }
+} \ No newline at end of file