diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-19 15:57:06 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-19 15:57:06 +0000 |
commit | 9d76a3c52b8310726ec09e0262813f0438c21df6 (patch) | |
tree | 4acf47dce6c3aa75f8ad7c5cb56fe6486c2d64a7 /ctrack/static/sass |
init commit - from cookiecutter
Diffstat (limited to '')
-rw-r--r-- | ctrack/static/sass/custom_bootstrap_vars.scss | 0 | ||||
-rw-r--r-- | ctrack/static/sass/project.scss | 37 |
2 files changed, 37 insertions, 0 deletions
diff --git a/ctrack/static/sass/custom_bootstrap_vars.scss b/ctrack/static/sass/custom_bootstrap_vars.scss new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/ctrack/static/sass/custom_bootstrap_vars.scss diff --git a/ctrack/static/sass/project.scss b/ctrack/static/sass/project.scss new file mode 100644 index 0000000..3c8f261 --- /dev/null +++ b/ctrack/static/sass/project.scss @@ -0,0 +1,37 @@ + + + + +// project specific CSS goes here + +//////////////////////////////// + //Variables// +//////////////////////////////// + +// Alert colors + +$white: #fff; +$mint-green: #d6e9c6; +$black: #000; +$pink: #f2dede; +$dark-pink: #eed3d7; +$red: #b94a48; + +//////////////////////////////// + //Alerts// +//////////////////////////////// + +// bootstrap alert CSS, translated to the django-standard levels of +// debug, info, success, warning, error + +.alert-debug { + background-color: $white; + border-color: $mint-green; + color: $black; +} + +.alert-error { + background-color: $pink; + border-color: $dark-pink; + color: $red; +} |