diff options
| author | Mark Otto <[email protected]> | 2013-02-17 19:04:38 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-02-17 19:04:38 -0800 |
| commit | 42488cbb456d24ed0dca7b6d2a44333730a0bd56 (patch) | |
| tree | f10bf194637bcc2a242155fc50dae47965fd79a1 | |
| parent | 9f279c60777532855a8e8ff681a6a494817dc383 (diff) | |
| download | bootstrap-42488cbb456d24ed0dca7b6d2a44333730a0bd56.tar.xz bootstrap-42488cbb456d24ed0dca7b6d2a44333730a0bd56.zip | |
more narrow jumbotron example fixes in the mobile first arena
| -rw-r--r-- | jumbotron-narrow.html | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/jumbotron-narrow.html b/jumbotron-narrow.html index c39b5397b..b9a26c757 100644 --- a/jumbotron-narrow.html +++ b/jumbotron-narrow.html @@ -50,10 +50,7 @@ title: Narrow page template /* Main marketing message and sign up button */ .jumbotron { text-align: center; - } - .jumbotron h1 { - font-size: 72px; - line-height: 1; + border-bottom: 1px solid #e5e5e5; } .jumbotron .btn { font-size: 21px; @@ -81,6 +78,10 @@ title: Narrow page template .header { margin-bottom: 30px; } + /* Remove the bottom border on the jumbotron for visual effect */ + .jumbotron { + border-bottom: 0; + } } </style> @@ -97,7 +98,7 @@ title: Narrow page template </div> <div class="jumbotron"> - <h1>Super awesome marketing speak!</h1> + <h1>Jumbotron heading</h1> <p class="lead">Cras justo odio, dapibus ac facilisis in, egestas eget quam. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</p> <p><a class="btn btn-large btn-success" href="#">Sign up today</a></p> </div> |
