From 8bc1b7131eed6df556efd1ffcbe9a92f3f60f161 Mon Sep 17 00:00:00 2001 From: oweissbarth Date: Tue, 11 Mar 2014 13:02:36 +0100 Subject: Changed font to something that hopefully scales better. Made login-form input required. Replaced logo png by svg. Added Logout-message. --- www/static/login.css | 13 +++- www/static/logo.png | Bin 121360 -> 5427 bytes www/static/logo.svg | 181 ++++++++++++++++++++++++++++++++++++++++++++++++ www/static/register.css | 3 +- www/static/style.css | 12 +++- 5 files changed, 203 insertions(+), 6 deletions(-) create mode 100644 www/static/logo.svg (limited to 'www/static') diff --git a/www/static/login.css b/www/static/login.css index 2a81a0d..549e307 100644 --- a/www/static/login.css +++ b/www/static/login.css @@ -1,3 +1,4 @@ +@import url(http://fonts.googleapis.com/css?family=Alegreya+Sans+SC:300); /********************************************************* Login-Form **********************************************************/ @@ -20,7 +21,7 @@ div.login-area{ h1.login-area{ font-size: 32px; - font-weight: 200; + font-weight: normal; display:inline; } @@ -63,5 +64,13 @@ input.login-input:focus{ text-align:right; float:right; line-height: 32px; - outline: 3px solid #1F3D4C; + border: 3px solid #1F3D4C; +} + +#logout-message{ + font-size: 13pt; + text-align:right; + float:right; + line-height: 32px; + border: 3px solid #1F3D4C; } diff --git a/www/static/logo.png b/www/static/logo.png index c1be2fa..cb99923 100644 Binary files a/www/static/logo.png and b/www/static/logo.png differ diff --git a/www/static/logo.svg b/www/static/logo.svg new file mode 100644 index 0000000..86a5c1e --- /dev/null +++ b/www/static/logo.svg @@ -0,0 +1,181 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/www/static/register.css b/www/static/register.css index 58f645d..76f07ac 100644 --- a/www/static/register.css +++ b/www/static/register.css @@ -1,3 +1,4 @@ +@import url(http://fonts.googleapis.com/css?family=Alegreya+Sans+SC:300); /********************************************************* Register-Form **********************************************************/ @@ -19,7 +20,7 @@ div.register-area{ } h1.register-area{ - font-weight: 200; + font-weight: normal; } form.register-form{ diff --git a/www/static/style.css b/www/static/style.css index 65c97f6..b7c00df 100644 --- a/www/static/style.css +++ b/www/static/style.css @@ -1,3 +1,5 @@ +@import url(http://fonts.googleapis.com/css?family=Alegreya+Sans+SC:300); + /*************************************************************** General Page Styling ****************************************************************/ @@ -7,7 +9,10 @@ } html, body{ height: 100%; - font-family: Impact, Charcoal, sans-serif; + font-family: 'Alegreya Sans SC', sans-serif; + -webkit-font-smoothing: antialiased; + -ms-font-smoothing: antialiased; + font-smoothing: antialiased; } @@ -28,7 +33,7 @@ a.logo{ width: 70px; margin-top: 5px; margin-left: 5px; - background-image: url(./logo.png); + background-image: url(./logo.svg); background-repeat:no-repeat; background-size:66px 66px; background-color:#3083D6; @@ -42,7 +47,7 @@ a.logo{ a.logo:hover{ display: block; background:#2669AB; - background-image: url(./logo.png); + background-image: url(./logo.svg); background-repeat:no-repeat; background-size:66px 66px; background-position: center; @@ -93,5 +98,6 @@ footer{ margin-right: 10px; text-align: right; font-size: 12px; + font-weight: normal; color: white; } -- cgit v1.2.3