1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-24 12:40:58 +00:00

callout colors

This commit is contained in:
Mark Otto 2013-12-18 13:52:39 -08:00
parent 1d0aa6e45c
commit bc265ac647

View File

@ -633,28 +633,32 @@ h1[id] {
.bs-callout p:last-child { .bs-callout p:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
.bs-callout code {
background-color: #fff;
border-radius: 3px;
}
/* Variations */ /* Variations */
.bs-callout-danger { .bs-callout-danger {
background-color: #fdf7f7; background-color: #fdf7f7;
border-color: #eed3d7; border-color: #d9534f;
} }
.bs-callout-danger h4 { .bs-callout-danger h4 {
color: #b94a48; color: #d9534f;
} }
.bs-callout-warning { .bs-callout-warning {
background-color: #faf8f0; background-color: #fcf8f2;
border-color: #faebcc; border-color: #f0ad4e;
} }
.bs-callout-warning h4 { .bs-callout-warning h4 {
color: #8a6d3b; color: #f0ad4e;
} }
.bs-callout-info { .bs-callout-info {
background-color: #f4f8fa; background-color: #f4f8fa;
border-color: #bce8f1; border-color: #5bc0de;
} }
.bs-callout-info h4 { .bs-callout-info h4 {
color: #34789a; color: #5bc0de;
} }