diff options
author | Kevin Chabowski <kevin@kch42.de> | 2013-09-01 13:58:22 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2013-09-01 13:58:22 +0200 |
commit | 0829fda06733674abdc340ec17c0fbfb4fd778ae (patch) | |
tree | 13bb6ba85f89b59d9bd1abbbb9757010213e4f79 /static | |
parent | ef002c79acbade33272cf9b524ce561d990df2bf (diff) | |
download | mailremind-0829fda06733674abdc340ec17c0fbfb4fd778ae.tar.gz mailremind-0829fda06733674abdc340ec17c0fbfb4fd778ae.tar.bz2 mailremind-0829fda06733674abdc340ec17c0fbfb4fd778ae.zip |
Began designing the interface.
* A simple stylesheet added
* Templates modified
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..9ae1858 --- /dev/null +++ b/static/style.css @@ -0,0 +1,71 @@ +* { + font-family: sans-serif; +} + +body, html { + padding: 0px; + margin: 0px; +} + +#main { + width: 85%; + margin: 7.5mm auto 10mm; + padding: 0px; + border: 1px solid black; + border-top: none; +} + +#nav, #footer { + color: white; + background-color: black; + font-size: 10pt; +} + +#nav a, #footer a { + color: white; +} + +#content { + margin: 1mm 2mm 1mm; +} + +#footer { + text-align: center; +} + +#nav a { + text-decoration: none; +} + +.fullwidth { + width: 100%; +} + +.emptytab { + text-align: center; + font-style: italic; +} + +#nav { + position: relative; +} + +#nav ul { + position: absolute; + top: 0px; + right: 0px; + list-style: none; +} + +#nav ul li { + float: right; + padding: 0px 2mm 0px; +} + +#nav ul li:hover { + background-color: white; +} + +#nav ul li:hover a { + color: black; +}
\ No newline at end of file |