diff options
| author | Mark Otto <[email protected]> | 2013-05-16 19:13:58 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-05-16 19:13:58 -0700 |
| commit | e5d6a40a7781daea884dc4472e5eb3f1705a8498 (patch) | |
| tree | 36cde06ada440fca9ad8672328500d5b2a05a61a /docs/assets/css/docs.css | |
| parent | bdd50228331128668be6e9cd68e1f6794b620243 (diff) | |
| download | bootstrap-e5d6a40a7781daea884dc4472e5eb3f1705a8498.tar.xz bootstrap-e5d6a40a7781daea884dc4472e5eb3f1705a8498.zip | |
Redo the responsive utilities stuff
* Update docs language
* Enforce display: block; on all utilities for now
* Fix up docs CSS for the tests
Diffstat (limited to 'docs/assets/css/docs.css')
| -rw-r--r-- | docs/assets/css/docs.css | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 3cc4d97ec..fd40cdafb 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -510,16 +510,14 @@ body { position: relative; float: left; width: 25%; - height: 43px; + padding: 15px 10px; font-size: 14px; font-weight: bold; - line-height: 43px; + line-height: 1.1; color: #999; text-align: center; border: 1px solid #ddd; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; + border-radius: 4px; } .responsive-utilities-test li + li { margin-left: 10px; @@ -530,9 +528,8 @@ body { left: -1px; right: -1px; bottom: -1px; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; + padding: 15px 10px; + border-radius: 4px; } .responsive-utilities-test span { color: #468847; @@ -646,6 +643,10 @@ input.focused { margin-bottom: 5px; } +/* Hide the top link initially */ +.bs-top { + display: none; +} /* Responsive variations @@ -673,6 +674,7 @@ input.focused { /* Back to top link */ .bs-top { + display: block; /* Unhide */ float: left; padding: 7px 15px; font-weight: 500; |
