Using bootstrap and better view resolution
This commit is contained in:
13
static/css/project.css
Normal file
13
static/css/project.css
Normal file
@@ -0,0 +1,13 @@
|
||||
/* These styles are generated from project.scss. */
|
||||
|
||||
.alert-debug {
|
||||
color: black;
|
||||
background-color: white;
|
||||
border-color: #d6e9c6;
|
||||
}
|
||||
|
||||
.alert-error {
|
||||
color: #b94a48;
|
||||
background-color: #f2dede;
|
||||
border-color: #eed3d7;
|
||||
}
|
0
static/fonts/.gitkeep
Normal file
0
static/fonts/.gitkeep
Normal file
BIN
static/images/favicons/favicon.ico
Normal file
BIN
static/images/favicons/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.2 KiB |
1
static/js/project.js
Normal file
1
static/js/project.js
Normal file
@@ -0,0 +1 @@
|
||||
/* Project specific Javascript goes here. */
|
0
static/sass/custom_bootstrap_vars.scss
Normal file
0
static/sass/custom_bootstrap_vars.scss
Normal file
37
static/sass/project.scss
Normal file
37
static/sass/project.scss
Normal file
@@ -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;
|
||||
}
|
Reference in New Issue
Block a user