diff options
| author | Mark Otto <[email protected]> | 2012-12-20 20:52:20 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-12-20 20:52:20 -0800 |
| commit | 7b7581d44abd3cc4cffb42cfe099ca018871a45a (patch) | |
| tree | c7c600072b1791408a62457ded498d4137a77faf /docs/assets/css/bootstrap.css | |
| parent | 69f6149489d13868ccdc3195476096c1f70499bb (diff) | |
| download | bootstrap-7b7581d44abd3cc4cffb42cfe099ca018871a45a.tar.xz bootstrap-7b7581d44abd3cc4cffb42cfe099ca018871a45a.zip | |
Finish migrating to Normalize 2:
* Port print styles from reset.less to scaffolding.less
* Port responsive image styles from reset.less to scaffolding.less
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 873673227..44581d473 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -228,6 +228,19 @@ a:hover { text-decoration: underline; } +a:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +img { + width: auto\9; + height: auto; + max-width: 100%; + vertical-align: middle; +} + .img-rounded { border-radius: 6px; } @@ -245,6 +258,58 @@ a:hover { border-radius: 500px; } +@media print { + * { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + .ir a:after, + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + @page { + margin: 0.5cm; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } +} + .container { max-width: 940px; margin-right: auto; |
