60 lines
1016 B
CSS
60 lines
1016 B
CSS
body {
|
|
font-family: Microsoft Sans Serif;
|
|
background-color: #828282;
|
|
}
|
|
|
|
p {
|
|
text-align: center;
|
|
}
|
|
|
|
hr {
|
|
border: 0;
|
|
height: 0;
|
|
border-top: 1px solid #e5e5e5;
|
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
|
border-bottom: 1px solid #ffffff;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
#leiste_div {
|
|
background-color:#bababa;
|
|
height: 49px;
|
|
margin-top: -8px;
|
|
margin-left: -8px;
|
|
margin-right: -8px;
|
|
padding: 0;
|
|
}
|
|
|
|
#form_div {
|
|
background-color: white;
|
|
width: 805px;
|
|
margin: -25px auto;
|
|
padding: 23px;
|
|
}
|
|
|
|
div.submit_button input {
|
|
background-image: url(images/pwz_normal.png);
|
|
width: 195px;
|
|
height: 30px;
|
|
border: none;
|
|
}
|
|
|
|
div.submit_button input:hover {
|
|
background-image: url(images/pwz_mouse_over.png);
|
|
}
|
|
|
|
div.submit_button input:active {
|
|
background-image: url(images/pwz_onclick.png);
|
|
}
|
|
|
|
#ueberschrift {
|
|
margin-left: 61px;
|
|
}
|
|
|
|
.submit_button {
|
|
display: inline;
|
|
position: relative;
|
|
left: 50%;
|
|
margin: 0 -97px;
|
|
}
|