1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-25 02:28:51 +02:00
blog/_src/assets/less/alerts.less

41 lines
626 B
Plaintext
Raw Normal View History

2014-07-10 17:03:41 +02:00
/////////////////////////////////////
// Alerts
/////////////////////////////////////
.alert {
2014-07-10 17:03:41 +02:00
font-size: @font-size-small;
padding: .5em 1em;
color: #8a6d3d;
2014-07-10 17:03:41 +02:00
background: #fcf8e3;
border: 1px solid #d7cab9;
border-radius: 4px;
}
.alert-success {
color: #468847;
2014-07-10 17:03:41 +02:00
background: #dff0d8;
border-color: #b5c6a8;
}
.alert-danger,
.alert-error {
color: #b94a48;
2014-07-10 17:03:41 +02:00
background: #f2dede;
border-color: #dcc5ca;
}
.alert-info {
color: #3a87ad;
2014-07-10 17:03:41 +02:00
background: #d9edf7;
border-color: #a6ced8;
}
.alert-block {
padding-top: 1em;
padding-bottom: 1em;
2014-07-10 17:03:41 +02:00
> p,
> ul { margin-bottom: 0; }
2014-07-10 17:03:41 +02:00
p + p { margin-top: 5px; }
}