From f5bebd98ccb7f0e1e51d593e87b0c861ec994fa7 Mon Sep 17 00:00:00 2001 From: Findus23 Date: Thu, 15 May 2014 19:04:17 +0200 Subject: [PATCH] Webinterface: leicht verbessert --- Webinterface/index.html | 4 ++++ Webinterface/style.css | 32 ++++++++++++++++++++++++++++++-- 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/Webinterface/index.html b/Webinterface/index.html index 6313f27..6cb6b6a 100644 --- a/Webinterface/index.html +++ b/Webinterface/index.html @@ -19,5 +19,9 @@

Umweltdatenmessung mit dem Raspberry Pi

+Logo +

Herzlich willkommen!

+

Dies ist die Webseite des VWA-Projekts von Lukas Winkler.

+

Hier kann man sich die aktuellen Messdaten anzeigen lassen, die bisherigen Messdaten grafisch darstellen oder mehr über mein Projekt erfahren.

\ No newline at end of file diff --git a/Webinterface/style.css b/Webinterface/style.css index 478e844..04c9b46 100644 --- a/Webinterface/style.css +++ b/Webinterface/style.css @@ -1,3 +1,4 @@ +/* Navigationsleiste */ #nav { width: 100%; background-color: #98bf21; @@ -16,7 +17,7 @@ ul { li { display: inline; } - a:link,a:visited { +li a:link, li a:visited { transition: 0.5s; display: inline-block; width:200px; @@ -27,12 +28,39 @@ li { padding:4px; text-decoration:none; } -a:hover,a:active { +li a:hover,li a:active { background-color:#7A991A; width: 220px; } + +/* Textformatierung */ h1 { padding-top: 20px; color: #4B5E10; font-family: "Verdana",sans-serif; + text-align: center; } +h2 { + margin: 20px +} +h3 { + font-family: "Verdana",sans-serif; + color: #3F4F0D; +} +p { + font-size: medium; + font-family: "Verdana",sans-serif; + margin:20px 20px 0 20px; +} +#text { + width: 70%; + margin-left: auto; + margin-right: auto; + background-color: white; +} +html { + background-color: #E0FFE0; +} +img { +float: right; +} \ No newline at end of file