diff options
| author | Mark Otto <[email protected]> | 2013-12-15 11:16:57 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-15 11:16:57 -0800 |
| commit | fd62247bf8bbb1bce072f5ee03e996dfc4abed94 (patch) | |
| tree | 487766325e03d40c7af16c58873b70d8638a72ba /docs-assets/css/docs.css | |
| parent | fbf31f965e27a6665c7e0f2d97eb74c0df7585d4 (diff) | |
| parent | 2b86e05a6150ef13905519070ea82ce895fbae85 (diff) | |
| download | bootstrap-fd62247bf8bbb1bce072f5ee03e996dfc4abed94.tar.xz bootstrap-fd62247bf8bbb1bce072f5ee03e996dfc4abed94.zip | |
Merge branch 'master' into cover_template
Diffstat (limited to 'docs-assets/css/docs.css')
| -rw-r--r-- | docs-assets/css/docs.css | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/docs-assets/css/docs.css b/docs-assets/css/docs.css index 15b533dd9..8a9f562e5 100644 --- a/docs-assets/css/docs.css +++ b/docs-assets/css/docs.css @@ -598,6 +598,35 @@ h1[id] { /* + * Color swatches + * + * Color swatches and associated values for our grayscale and brand colors. + */ + +.color-swatches { + margin: 0 -5px; + overflow: hidden; /* clearfix */ +} +.color-swatch { + float: left; + width: 100px; + height: 100px; + margin: 0 5px; + border-radius: 3px; +} +.color-swatches .gray-darker { background-color: #222; } +.color-swatches .gray-dark { background-color: #333; } +.color-swatches .gray { background-color: #555; } +.color-swatches .gray-light { background-color: #999; } +.color-swatches .gray-lighter { background-color: #eee; } +.color-swatches .brand-primary { background-color: #428bca; } +.color-swatches .brand-success { background-color: #5cb85c; } +.color-swatches .brand-warning { background-color: #f0ad4e; } +.color-swatches .brand-danger { background-color: #d9534f; } +.color-swatches .brand-info { background-color: #5bc0de; } + + +/* * Team members * * Avatars, names, and usernames for core team. @@ -730,7 +759,7 @@ h1[id] { } /* Typography */ -.bs-example-type .table .info { +.bs-example-type .table .type-info { color: #999; vertical-align: middle; } @@ -750,6 +779,11 @@ h1[id] { margin: 0; } +/* Contextual background colors */ +.bs-example-bg-classes p { + padding: 15px; +} + /* Images */ .bs-example > .img-circle, .bs-example > .img-rounded, @@ -990,6 +1024,7 @@ h1[id] { margin-bottom: 10px; } .responsive-utilities-test span { + display: block; padding: 15px 10px; font-size: 14px; font-weight: bold; |
