aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/css
diff options
context:
space:
mode:
Diffstat (limited to 'docs/assets/css')
-rw-r--r--docs/assets/css/bootstrap.css18
-rw-r--r--docs/assets/css/docs.css36
2 files changed, 48 insertions, 6 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index df389af9c..5525614d6 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -3686,15 +3686,21 @@ input[type="submit"].btn.btn-mini {
}
.nav-tabs.nav-stacked > li:first-child > a {
- -webkit-border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- border-radius: 4px 4px 0 0;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -moz-border-radius-topleft: 4px;
}
.nav-tabs.nav-stacked > li:last-child > a {
- -webkit-border-radius: 0 0 4px 4px;
- -moz-border-radius: 0 0 4px 4px;
- border-radius: 0 0 4px 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -moz-border-radius-bottomleft: 4px;
}
.nav-tabs.nav-stacked > li > a:hover {
diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css
index 4f55f268a..ff7d48ae4 100644
--- a/docs/assets/css/docs.css
+++ b/docs/assets/css/docs.css
@@ -29,6 +29,9 @@ h3 code {
body > .navbar-fixed-top {
font-size: 13px;
+ -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.15);
+ -moz-box-shadow: 0 5px 15px rgba(0,0,0,.15);
+ box-shadow: 0 5px 15px rgba(0,0,0,.15);
}
/* Change the docs' brand */
@@ -407,6 +410,8 @@ hr.soften {
/* Custom, larger checkbox labels */
.download .checkbox {
padding: 6px 10px 6px 25px;
+ font-size: 13px;
+ line-height: 18px;
color: #555;
background-color: #f9f9f9;
-webkit-border-radius: 3px;
@@ -964,3 +969,34 @@ form.bs-docs-example {
width: auto;
}
}
+
+@media (min-width: 979px) {
+ .masthead,
+ .subhead {
+ position: fixed;
+ top: 40px;
+ right: 0;
+ left: 0;
+ }
+ .masthead {
+ height: 380px;
+ }
+ .subhead {
+ height: 130px; /* +80px pdding */
+ }
+ .bs-docs-canvas {
+ position: absolute;
+ width: 100%;
+ z-index: 10;
+ background-color: #fff;
+ -webkit-box-shadow: 0 -5px 15px rgba(0,0,0,.15);
+ -moz-box-shadow: 0 -5px 15px rgba(0,0,0,.15);
+ box-shadow: 0 -5px 15px rgba(0,0,0,.15);
+ }
+ .masthead + .bs-docs-canvas {
+ top: 530px;
+ }
+ .subhead + .bs-docs-canvas {
+ top: 250px;
+ }
+} \ No newline at end of file