36 lines
445 B
CSS
36 lines
445 B
CSS
body {
|
|
padding:20px;
|
|
background-color: #1a1a1a;
|
|
color: #e0e0e0;
|
|
font-family:"Arial";
|
|
font-size:16px;
|
|
line-height:140%
|
|
}
|
|
|
|
a:link {
|
|
color:#cccccc;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
color:#aaaaaa;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color:#ffffff;
|
|
}
|
|
|
|
a:active {
|
|
color:#ffffff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
table td:first-child {
|
|
text-align: left;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
table td {
|
|
text-align: right;
|
|
} |