mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-12-02 14:34:05 +03:00
f79314ea2b
* Livereload server. * Auto compile scss files. * Heroku python buildpack needs to be specified explicitly to avoid auto detections of the app as a `Node` app due to presence of `Package.json`.
34 lines
588 B
SCSS
34 lines
588 B
SCSS
// 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;
|
|
}
|