diff options
| author | Mark Otto <[email protected]> | 2011-10-22 22:49:37 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-10-22 22:49:37 -0700 |
| commit | b4c0d2a6b2fe1bc92c3635cda71b63ee08a05be4 (patch) | |
| tree | 5e2d407e9a7e861a42fb5b996ecd448cca7548f9 /docs | |
| parent | fb7fbdb278cc76c597acb69de5cd3a5d6eb77b00 (diff) | |
| download | bootstrap-b4c0d2a6b2fe1bc92c3635cda71b63ee08a05be4.tar.xz bootstrap-b4c0d2a6b2fe1bc92c3635cda71b63ee08a05be4.zip | |
tweaks to the responsive layout to improve type
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/assets/css/docs.css | 30 | ||||
| -rw-r--r-- | docs/index.html | 6 |
2 files changed, 30 insertions, 6 deletions
diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index b618c44b8..0a31ac998 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -21,6 +21,8 @@ section { /* Tweak topbar brand link to be super sleek -------------------------------------------------- */ body > .navbar-fixed .brand { + padding-right: 0; + padding-left: 0; float: right; font-weight: bold; color: #000; @@ -316,16 +318,24 @@ h2 + table { -------------------------------------------------- */ @media (max-width: 480px) { + /* Hide the nav for now */ body > .navbar-fixed .nav { display: none; } - .large-bird { - display: none; + /* Change up some type stuff */ + h1 small { + display: block; + line-height: 20px; } + /* Adjust the jumbotron */ + .jumbotron h1, + .jumbotron p { + margin-right: 0; + } .jumbotron h1 { - font-size: 36px; + font-size: 45px; margin-right: 0; } .jumbotron p { @@ -338,6 +348,20 @@ h2 + table { width: auto; margin: 36px 0; } + .jumbotron .btn { + font-size: 18px; + padding: 10px 14px; + } + + /* Popovers */ + .large-bird { + display: none; + } + .popover-well .popover-wrapper { + margin-left: 0; + } + + } @media (min-width: 768px) and (max-width: 940px) { diff --git a/docs/index.html b/docs/index.html index 49e6d0431..2cb5eb8e4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -630,7 +630,7 @@ <p>To include a blockquote, wrap <code><blockquote></code> around <code><p></code> and <code><small></code> tags. Use the <code><small></code> element to cite your source and you'll get an em dash <code>&mdash;</code> before it.</p> <blockquote> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis dapibus posuere velit aliquet.</p> - <small>Dr. Julius Hibbert</small> + <small>Someone famous</small> </blockquote> </div> <div class="span7"> @@ -2140,7 +2140,7 @@ Lorem ipsum dolar sit amet illo error <a href="#" title="below">ipsum</a> verita <td>Javascript</td> <td> <p><a href="http://lesscss.org/">Download the latest Less.js</a> and include the path to it (and Bootstrap) in the <code>head</code>.</p> -<pre class="prettyprint linenums"> +<pre class="prettyprint"> <link rel="stylesheet/less" href="/path/to/bootstrap.less"> <script src="/path/to/less.js"></script> </pre> @@ -2156,7 +2156,7 @@ Lorem ipsum dolar sit amet illo error <a href="#" title="below">ipsum</a> verita </td> </tr> <tr> - <td>Less Mac app</td> + <td>Mac app</td> <td> <p><a href="http://incident57.com/less/">The unofficial Mac app</a> watches directories of .less files and compiles the code to local files after every save of a watched .less file.</p> <p>If you like, you can toggle preferences in the app for automatic minifying and which directory the compiled files end up in.</p> |
