1
0
Fork 0

Webinterface: leicht verbessert

This commit is contained in:
Findus23 2014-05-15 19:04:17 +02:00
parent e929db9eb5
commit f5bebd98cc
2 changed files with 34 additions and 2 deletions

View file

@ -19,5 +19,9 @@
<!--Ende Navigationsleiste--> <!--Ende Navigationsleiste-->
<h1>Umweltdatenmessung mit dem Raspberry Pi</h1> <h1>Umweltdatenmessung mit dem Raspberry Pi</h1>
<img src="images/logo.svg" width="15%" alt="Logo">
<h3>Herzlich willkommen!</h3>
<p>Dies ist die Webseite des VWA-Projekts von Lukas Winkler.</p>
<p>Hier kann man sich die aktuellen Messdaten anzeigen lassen, die bisherigen Messdaten grafisch darstellen oder mehr über mein Projekt erfahren.</p>
</body> </body>
</html> </html>

View file

@ -1,3 +1,4 @@
/* Navigationsleiste */
#nav { #nav {
width: 100%; width: 100%;
background-color: #98bf21; background-color: #98bf21;
@ -16,7 +17,7 @@ ul {
li { li {
display: inline; display: inline;
} }
a:link,a:visited { li a:link, li a:visited {
transition: 0.5s; transition: 0.5s;
display: inline-block; display: inline-block;
width:200px; width:200px;
@ -27,12 +28,39 @@ li {
padding:4px; padding:4px;
text-decoration:none; text-decoration:none;
} }
a:hover,a:active { li a:hover,li a:active {
background-color:#7A991A; background-color:#7A991A;
width: 220px; width: 220px;
} }
/* Textformatierung */
h1 { h1 {
padding-top: 20px; padding-top: 20px;
color: #4B5E10; color: #4B5E10;
font-family: "Verdana",sans-serif; 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;
} }