aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/css/docs.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-03-01 00:18:10 -0800
committerMark Otto <[email protected]>2013-03-01 00:18:10 -0800
commit492c249537d7cdce6148ac8a1c056c4d89451fb2 (patch)
tree36c60b125e21fa1ac70c432f0327b209b637069f /docs/assets/css/docs.css
parent2e3ba4afe633eb9ea820f1b506e4e3840e2e2ecc (diff)
downloadbootstrap-492c249537d7cdce6148ac8a1c056c4d89451fb2.tar.xz
bootstrap-492c249537d7cdce6148ac8a1c056c4d89451fb2.zip
improve navbar toggle and hide code snippets on mobile devices for now
Diffstat (limited to 'docs/assets/css/docs.css')
-rw-r--r--docs/assets/css/docs.css10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css
index baf022d03..196cacb0f 100644
--- a/docs/assets/css/docs.css
+++ b/docs/assets/css/docs.css
@@ -592,6 +592,16 @@ input.focused {
/* Responsive variations
-------------------------------------------------- */
+/* Hide code snippets on mobile devices */
+@media screen and (max-width: 480px) {
+ .bs-docs-example {
+ border-radius: 4px;
+ }
+ .highlight {
+ display: none;
+ }
+}
+
/* Tablets and up */
@media screen and (min-width: 768px) {