mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-12-04 07:24:04 +03:00
33 lines
595 B
CSS
33 lines
595 B
CSS
/*! project specific CSS goes here. */
|
|
|
|
/* bootstrap alert CSS, translated to the django-standard levels of
|
|
** debug, info, success, warning, error */
|
|
.alert-debug {
|
|
color: black;
|
|
background-color: white;
|
|
border-color: #d6e9c6;
|
|
}
|
|
|
|
.alert-info {
|
|
color: #3a87ad;
|
|
background-color: #d9edf7;
|
|
border-color: #bce8f1;
|
|
}
|
|
|
|
.alert-success {
|
|
color: #468847;
|
|
background-color: #dff0d8;
|
|
border-color: #d6e9c6;
|
|
}
|
|
|
|
.alert-warning {
|
|
color: black;
|
|
background-color: orange;
|
|
border-color: #d6e9c6;
|
|
}
|
|
|
|
.alert-error {
|
|
color: #b94a48;
|
|
background-color: #f2dede;
|
|
border-color: #eed3d7;
|
|
} |