54 lines
896 B
CSS
54 lines
896 B
CSS
|
body {
|
||
|
background-color : #fff;
|
||
|
color: #000;
|
||
|
margin: 10px;
|
||
|
font-family : Verdana, Arial, Helvetica, sans-serif;
|
||
|
font-size: 13px;
|
||
|
}
|
||
|
|
||
|
a:link {
|
||
|
color: #000;
|
||
|
text-decoration : underline;
|
||
|
}
|
||
|
a:visited {
|
||
|
color: #aaa;
|
||
|
text-decoration : underline;
|
||
|
}
|
||
|
a:active {
|
||
|
color: #aa0000;
|
||
|
text-decoration : underline;
|
||
|
}
|
||
|
a:hover {
|
||
|
text-decoration : none;
|
||
|
}
|
||
|
img {
|
||
|
border: 0px;
|
||
|
}
|
||
|
textarea,input,select {
|
||
|
border:1px solid lightgray;
|
||
|
background-color: #eee;
|
||
|
}
|
||
|
|
||
|
#binoutput {
|
||
|
background-color: #eee;
|
||
|
font-family:'Consolas',monospace,sans-serif;
|
||
|
font-size: 13px;
|
||
|
overflow:auto;
|
||
|
border:1px solid lightgray;
|
||
|
text-align:left;
|
||
|
padding:3px;
|
||
|
padding-right:20px;
|
||
|
padding-bottom:20px;
|
||
|
background:#f8f8f8;
|
||
|
}
|
||
|
div#header {
|
||
|
font-size: 20px;
|
||
|
padding-bottom:10px;
|
||
|
}
|
||
|
div#sslhinweis {
|
||
|
font-size: 15px;
|
||
|
font-weight: bold;
|
||
|
color: #660000;
|
||
|
margin-top: 30px;
|
||
|
}
|