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-->
<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>
</html>

View file

@ -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;
}