diff options
Diffstat (limited to 'static/style/default.css')
| -rw-r--r-- | static/style/default.css | 97 | 
1 files changed, 97 insertions, 0 deletions
diff --git a/static/style/default.css b/static/style/default.css new file mode 100644 index 0000000..871e072 --- /dev/null +++ b/static/style/default.css @@ -0,0 +1,97 @@ +html { +    margin: 0px; +    padding: 0px; +} + +body { +    font-family: serif; +    margin: 0px; +    padding: 0px; +} + +a { +    text-decoration: none; +} + +h1 { +    text-align: center; +} + +hr { +    height: 2px; +    background-color: black; +    padding: 0px; +    width: 100%; +    border: none;  +} + +.righty_content { +    margin: 3px; +    padding: 1px; +    float: right; +    width: 30%; +} + +.lefty_content { +    margin: 3px; +    padding: 1px; +    float: left; +    width: 30%; +} + +.lefty { +    float: left; +} + +.righty { +    float: right; +} + +.content { +    margin-left: 4%; +    width: 700px; +} + +.content_footer { +    margin-left: 4%; +    width: 700px; +    font-size: small; +    font-style: italic; +    font-family: courier; +    text-align: center; +    width: 700px; +    margin-bottom: 5px; +    margin-top: 0px; +    padding-top: 0px; +} + +#top_bar { +    height: 22px; +    background-color: #993333; +    margin: 0px; +    padding: 0px;  +} + +#top_bar_content { +    background-color: #993333; +    height: 20px; +    font-family: courier; +    font-size: smaller; +    color: #EEEEEE; +    float: center; +    width: 700px; +    margin-left: 4%; +    padding-top: 2px; +    padding-bottom: 0px; +    margin-bottom: 0px; +    margin-top:0px; +} + +#top_bar_content a { +    font-weight: bold; +    color: #FFFFFF; +    text-decoration: none; +} + +#main_content { +}  | 
