Add static files
This commit is contained in:
parent
4b29603d79
commit
825d57a222
5 changed files with 213 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,4 @@
|
||||||
*.pyc
|
*.pyc
|
||||||
local_settings.py
|
local_settings.py
|
||||||
static
|
|
||||||
.toudou
|
.toudou
|
||||||
test.db
|
test.db
|
||||||
|
|
13
static/css/login.css
Normal file
13
static/css/login.css
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
.form-row label {
|
||||||
|
float: left;
|
||||||
|
width: 9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.errornote {
|
||||||
|
margin: 0;
|
||||||
|
color: #CC0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.errorlist {
|
||||||
|
color: #CC0000;
|
||||||
|
}
|
200
static/css/main.css
Normal file
200
static/css/main.css
Normal file
|
@ -0,0 +1,200 @@
|
||||||
|
* {
|
||||||
|
border : 0;
|
||||||
|
margin : 0;
|
||||||
|
padding : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color : #FFC000;
|
||||||
|
text-decoration : none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration : underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color : #FF8A00;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color : #000000;
|
||||||
|
color : #000000;
|
||||||
|
font-family : sans, sans-serif;
|
||||||
|
padding-left : 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
dd {
|
||||||
|
margin-left: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin : 1em 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
margin : 1em 0;
|
||||||
|
padding-left : 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#body {
|
||||||
|
background-color : #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container {
|
||||||
|
margin : 20px auto;
|
||||||
|
width : 700px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container #footer {
|
||||||
|
background-color : #0C191C;
|
||||||
|
color : #EEEEEC;
|
||||||
|
font-size : 10px;
|
||||||
|
padding-left : 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container #header {
|
||||||
|
border-top-left-radius : 30px;
|
||||||
|
border-top-right-radius : 30px;
|
||||||
|
-moz-border-radius-topleft : 30px;
|
||||||
|
-moz-border-radius-topright : 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content {
|
||||||
|
margin-left : 100px;
|
||||||
|
padding-bottom : 1px;
|
||||||
|
padding-left : 20px;
|
||||||
|
padding-right : 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content .container {
|
||||||
|
color : #EEEEEC;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content .container .header {
|
||||||
|
background-color : transparent;
|
||||||
|
padding-bottom : 5px;
|
||||||
|
padding-left : 0;
|
||||||
|
padding-top : 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content .container .header a {
|
||||||
|
color : inherit;
|
||||||
|
text-decoration : none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content .container .header span.tagline {
|
||||||
|
color: #EEEEEC;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content .container .header span.title {
|
||||||
|
background-color : #2E3436;
|
||||||
|
left : -5px;
|
||||||
|
padding : 5px;
|
||||||
|
position : relative;
|
||||||
|
top : -5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header {
|
||||||
|
background-color : #252A2B;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logo {
|
||||||
|
float : left;
|
||||||
|
height : 100px;
|
||||||
|
margin : -13px 20px 23px 5px;
|
||||||
|
width : 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#ryu {
|
||||||
|
color : #F57900;
|
||||||
|
}
|
||||||
|
|
||||||
|
#slash {
|
||||||
|
position: relative;
|
||||||
|
top: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#menu {
|
||||||
|
margin-left : -5px;
|
||||||
|
float : left;
|
||||||
|
width : 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#menu a {
|
||||||
|
color : #FFC000;
|
||||||
|
text-decoration : none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#title {
|
||||||
|
color : #EEEEEC;
|
||||||
|
height : 100px;
|
||||||
|
line-height : 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#title sup {
|
||||||
|
font-size : 11px;
|
||||||
|
position : relative;
|
||||||
|
top : 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.activity_even {
|
||||||
|
background-color : #2E3436;
|
||||||
|
}
|
||||||
|
|
||||||
|
.activity_even, .activity_uneven {
|
||||||
|
border-bottom : 1px solid #444444;
|
||||||
|
color : #EEEEEC;
|
||||||
|
font-size : 12px;
|
||||||
|
margin: 0 20px;
|
||||||
|
padding : 2px 0 2px 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.activity_last {
|
||||||
|
border-bottom : none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.activity_uneven {
|
||||||
|
background-color : #0C191C;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
background-color : #0C191C;
|
||||||
|
border : 1px solid #2E3436;
|
||||||
|
margin-bottom : 20px;
|
||||||
|
padding : 2px 5px;
|
||||||
|
padding-left : 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clear {
|
||||||
|
clear : both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clearleft {
|
||||||
|
clear : left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container .header {
|
||||||
|
background-color : #2E3436;
|
||||||
|
color : #F57900;
|
||||||
|
font-weight : bold;
|
||||||
|
margin : -2px -5px 0 -10px;
|
||||||
|
padding-left : 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container .footer {
|
||||||
|
background-color : #2E3436;
|
||||||
|
color : #0C191C;
|
||||||
|
font-size : 10px;
|
||||||
|
margin : 0 -5px -2px -10px;
|
||||||
|
padding-left : 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navigation a {
|
||||||
|
color : #FFC000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navigation a.next {
|
||||||
|
float : right;
|
||||||
|
}
|
BIN
static/img/logo.png
Normal file
BIN
static/img/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
BIN
static/img/logo_big.png
Normal file
BIN
static/img/logo_big.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 70 KiB |
Loading…
Reference in a new issue