Beautification. Added code for forms and submit buttons and updated the warning class.
This commit is contained in:
parent
2e8acce842
commit
91b517050a
1 changed files with 74 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
body {
|
||||
background-image: url(/img/backg.gif);
|
||||
background-image: url(img/backg.gif);
|
||||
background-position: top center;
|
||||
background-attachment: scroll;
|
||||
background-repeat: no-repeat;
|
||||
|
@ -113,7 +113,7 @@ body {
|
|||
padding: 0 1em;
|
||||
line-height: 1.7em;
|
||||
list-style: none;
|
||||
background: url(/img/list.gif) center left no-repeat;
|
||||
background: url(img/list.gif) center left no-repeat;
|
||||
}
|
||||
|
||||
#footer {
|
||||
|
@ -143,10 +143,77 @@ body {
|
|||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
/* --------------------=-=-=- Spezialkram -=-=-=------------------- */
|
||||
|
||||
.warning {
|
||||
background-color: #FF6060;
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
border-style: dashed;
|
||||
color: #00FF80;
|
||||
background-color: #fff;
|
||||
border: 2px dashed #5e5e5e;
|
||||
margin-top: 40px;
|
||||
margin-bottom: 40px;
|
||||
|
||||
line-height: 5em;
|
||||
color: #5e5e5e;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
font-size: 0.9em;
|
||||
|
||||
}
|
||||
|
||||
#content .warning a {
|
||||
line-height: 5em;
|
||||
color: #5e5e5e;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
font-size: 0.9em;
|
||||
|
||||
}
|
||||
/* ----------------------=-=-=- Forms -=-=-=--------------------- */
|
||||
/* nachfolgend die Sachen fuer schoene Formulare und Buttons */
|
||||
input {
|
||||
border: 1px solid #BFBFBF;
|
||||
color: #949494;
|
||||
background: #fff;
|
||||
padding: 2px 5px 1px 5px;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
input:hover {
|
||||
background: #fff;
|
||||
border: 1px solid #ACE149;
|
||||
color: #7DA721;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
textarea {
|
||||
font-family: Arial, Verdana, Helvetica;
|
||||
font-size: 1.1em;
|
||||
border: 1px solid #BFBFBF;
|
||||
color: #949494;
|
||||
padding: 2px 5px 1px 5px;
|
||||
width: 450px;
|
||||
}
|
||||
|
||||
textarea:hover {
|
||||
background: #fff;
|
||||
border: 1px solid #ACE149;
|
||||
color: #7DA721;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: #7fb945;
|
||||
border: 1px solid #5e5e5e;
|
||||
color: #fff;
|
||||
font-size: 0.8em;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
}
|
||||
button:hover {
|
||||
background-color: #fff;
|
||||
border: 1px solid #7fb945;
|
||||
color: #5e5e5e;
|
||||
font-size: 0.8em;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue