22 lines
334 B
CSS
22 lines
334 B
CSS
|
html,body {
|
||
|
background-color : gray;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
border : none;
|
||
|
}
|
||
|
|
||
|
table {
|
||
|
border : none;
|
||
|
}
|
||
|
|
||
|
a:link {color: black; text-decoration:none;}
|
||
|
a:visited {color: black; text-decoration:none;}
|
||
|
a:hover {color:#9c093a; text-decoration:underline;}
|
||
|
|
||
|
p,ul,li,td {
|
||
|
font-size : 12px;
|
||
|
font-family : Arial, Helvetica, sans-serif;
|
||
|
color : black;
|
||
|
}
|