aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/css/docs.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-01-28 18:11:31 -0800
committerMark Otto <[email protected]>2012-01-28 18:11:31 -0800
commit4fa931e403ec3ae2f8f7f690c6c4040365f68ba9 (patch)
treeb1babf3699668256e297aed08d1c3442694d77b9 /docs/assets/css/docs.css
parent06df91ac559686e947c3c1fbfbdd2b7dcfc5a56b (diff)
downloadbootstrap-4fa931e403ec3ae2f8f7f690c6c4040365f68ba9.tar.xz
bootstrap-4fa931e403ec3ae2f8f7f690c6c4040365f68ba9.zip
fix the navbar click and a few jank responsive problems
Diffstat (limited to 'docs/assets/css/docs.css')
-rw-r--r--docs/assets/css/docs.css23
1 files changed, 19 insertions, 4 deletions
diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css
index b06065365..cc7ca0c63 100644
--- a/docs/assets/css/docs.css
+++ b/docs/assets/css/docs.css
@@ -522,6 +522,7 @@ h2 + .row {
/* Example sites showcase */
.example-sites img {
max-width: 100%;
+ margin: 0 auto;
}
.marketing-byline {
margin: -18px 0 27px;
@@ -646,6 +647,10 @@ form.well {
padding: 10px 14px;
margin: 0 auto 10px;
}
+ /* Masthead (home page jumbotron) */
+ .masthead {
+ padding-top: 0;
+ }
/* Don't space out quick links so much */
.quick-links {
@@ -669,8 +674,9 @@ form.well {
display: block;
max-width: 300px;
margin: 0 auto 18px;
+ text-align: center;
}
- .example-sites img {
+ .example-sites .thumbnail > img {
max-width: 270px;
}
@@ -796,11 +802,20 @@ form.well {
/* Unfloat brand */
.navbar-fixed-top .brand {
- float: none;
+ float: left;
margin-left: 0;
- padding-left: 15px;
- padding-right: 15px;
+ padding-left: 10px;
+ padding-right: 10px;
}
}
+/* LARGE DESKTOP SCREENS */
+@media (min-width: 1210px) {
+
+ /* Update subnav container */
+ .subnav-fixed .nav {
+ width: 1168px; /* 2px less to account for left/right borders being removed when in fixed mode */
+ }
+
+}