Skip to content

Instantly share code, notes, and snippets.

@bbrochier
Created August 9, 2013 11:00
Show Gist options
  • Save bbrochier/6192813 to your computer and use it in GitHub Desktop.
Save bbrochier/6192813 to your computer and use it in GitHub Desktop.
Alerts CSS
.alert {
padding: 15px 35px 15px 15px;
margin-bottom: 20px;
color: #c09853;
background-color: #fcf8e3;
border: 1px solid #fbeed5;
border-radius: 4px;
}
.alert-error {
color: #b94a48;
background-color: #f2dede;
border-color: #eed3d7;
}
.alert-success {
color: #468847;
background-color: #dff0d8;
border-color: #d6e9c6;
}
.alert-info {
color: #3a87ad;
background-color: #d9edf7;
border-color: #bce8f1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment