1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Umweltdatenmessung/Webinterface/style.css

66 lines
975 B
CSS
Raw Normal View History

2014-05-15 19:04:17 +02:00
/* Navigationsleiste */
#nav {
width: 100%;
background-color: #98bf21;
position: absolute;
top: 0px;
right: 0px;
padding: 0px;
text-align: center;
}
ul {
list-style-type:none;
padding: 0;
margin: 0;
overflow: hidden;
}
li {
display: inline;
}
2014-05-15 19:04:17 +02:00
li a:link, li a:visited {
transition: 0.5s;
display: inline-block;
width:200px;
font-weight:bold;
color:#FFFFFF;
background-color:#98bf21;
text-align:center;
padding:4px;
text-decoration:none;
}
2014-05-15 19:04:17 +02:00
li a:hover,li a:active {
background-color:#7A991A;
width: 220px;
}
2014-05-15 19:04:17 +02:00
/* Textformatierung */
h1 {
padding-top: 20px;
color: #4B5E10;
font-family: "Verdana",sans-serif;
2014-05-15 19:04:17 +02:00
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;
}
2014-05-15 19:04:17 +02:00
img {
float: right;
}