diff options
| author | Mark Otto <[email protected]> | 2011-12-11 01:58:06 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-12-11 01:58:06 -0800 |
| commit | 401f84a7ec65996a8573671b2c17077f85e63e6f (patch) | |
| tree | 6ffecfe7c2b10ba92e2dd3d5dbb377570b9ea379 /docs/assets/css/docs.css | |
| parent | 95048c271eb4166a4e22ab1f0ff6d69bade7d62b (diff) | |
| download | bootstrap-401f84a7ec65996a8573671b2c17077f85e63e6f.tar.xz bootstrap-401f84a7ec65996a8573671b2c17077f85e63e6f.zip | |
center example sites in docs on mobile
Diffstat (limited to 'docs/assets/css/docs.css')
| -rw-r--r-- | docs/assets/css/docs.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 73e619d29..9324f9990 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -323,6 +323,11 @@ h2 + table { -------------------------------------------------- */ @media (max-width: 480px) { + /* Reduce padding above jumbotron */ + body { + padding-top: 70px; + } + /* Change up some type stuff */ h1 small { display: block; @@ -362,6 +367,21 @@ h2 + table { .quick-links { margin: 40px 0 0; } + /* hide the bullets on mobile since our horizontal space is limited */ + .quick-links .divider { + display: none; + } + + /* center example sites */ + .example-sites { + margin-left: 0; + } + .example-sites a { + float: none; + display: block; + max-width: 300px; + margin: 0 auto 18px; + } } |
