1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-27 15:19:52 +02:00

more callout tweaks

This commit is contained in:
Mark Otto
2014-05-22 21:34:24 -07:00
parent abbf6da6aa
commit 64bb8be707
2 changed files with 9 additions and 7 deletions

View File

@@ -670,9 +670,11 @@ h1[id] {
/* Common styles for all types */ /* Common styles for all types */
.bs-callout { .bs-callout {
padding: 5px 20px; padding: 20px;
margin: 20px 0; margin: 20px 0;
border-left: 5px solid #eee; border: 1px solid #eee;
border-left-width: 5px;
border-radius: 3px;
} }
.bs-callout h4 { .bs-callout h4 {
margin-top: 0; margin-top: 0;
@@ -688,24 +690,24 @@ h1[id] {
/* Tighten up space between multiple callouts */ /* Tighten up space between multiple callouts */
.bs-callout + .bs-callout { .bs-callout + .bs-callout {
margin-top: -10px; margin-top: -5px;
} }
/* Variations */ /* Variations */
.bs-callout-danger { .bs-callout-danger {
border-color: #d9534f; border-left-color: #d9534f;
} }
.bs-callout-danger h4 { .bs-callout-danger h4 {
color: #d9534f; color: #d9534f;
} }
.bs-callout-warning { .bs-callout-warning {
border-color: #f0ad4e; border-left-color: #f0ad4e;
} }
.bs-callout-warning h4 { .bs-callout-warning h4 {
color: #f0ad4e; color: #f0ad4e;
} }
.bs-callout-info { .bs-callout-info {
border-color: #5bc0de; border-left-color: #5bc0de;
} }
.bs-callout-info h4 { .bs-callout-info h4 {
color: #5bc0de; color: #5bc0de;

File diff suppressed because one or more lines are too long