INITIAL
This commit is contained in:
commit
7ba937ef66
66 changed files with 1823 additions and 0 deletions
22
ccdb/static/css/project.css
Normal file
22
ccdb/static/css/project.css
Normal file
|
@ -0,0 +1,22 @@
|
|||
.alert-debug {
|
||||
background-color: #fff;
|
||||
border-color: #d6e9c6;
|
||||
color: #000; }
|
||||
|
||||
.alert-error {
|
||||
background-color: #f2dede;
|
||||
border-color: #eed3d7;
|
||||
color: #b94a48; }
|
||||
|
||||
@media (max-width: 47.9em) {
|
||||
.navbar-nav .nav-item {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
width: 100%; }
|
||||
.navbar-nav .nav-item + .nav-item {
|
||||
margin-left: 0; }
|
||||
.nav.navbar-nav.pull-right {
|
||||
float: none !important; } }
|
||||
|
||||
[hidden][style="display: block;"] {
|
||||
display: block !important; }
|
0
ccdb/static/fonts/.gitkeep
Normal file
0
ccdb/static/fonts/.gitkeep
Normal file
BIN
ccdb/static/images/favicon.ico
Normal file
BIN
ccdb/static/images/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.2 KiB |
1
ccdb/static/js/project.js
Normal file
1
ccdb/static/js/project.js
Normal file
|
@ -0,0 +1 @@
|
|||
/* Project specific Javascript goes here. */
|
51
ccdb/static/sass/project.scss
Normal file
51
ccdb/static/sass/project.scss
Normal file
|
@ -0,0 +1,51 @@
|
|||
// project specific CSS goes here
|
||||
|
||||
// Alert colors
|
||||
|
||||
$white: #fff;
|
||||
$mint-green: #d6e9c6;
|
||||
$black: #000;
|
||||
$pink: #f2dede;
|
||||
$dark-pink: #eed3d7;
|
||||
$red: #b94a48;
|
||||
|
||||
// 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;
|
||||
}
|
||||
|
||||
// This is a fix for the bootstrap4 alpha release
|
||||
|
||||
@media (max-width: 47.9em) {
|
||||
.navbar-nav .nav-item {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.navbar-nav .nav-item + .nav-item {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.nav.navbar-nav.pull-right {
|
||||
float: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
// Display django-debug-toolbar.
|
||||
// See https://github.com/django-debug-toolbar/django-debug-toolbar/issues/742
|
||||
// and https://github.com/pydanny/cookiecutter-django/issues/317
|
||||
|
||||
[hidden][style="display: block;"] {
|
||||
display: block !important;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue