77 lines
948 B
CSS
77 lines
948 B
CSS
|
:root {
|
||
|
--font-size: 12px;
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
font-size: var(--font-size);
|
||
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background-image: url('/img/background.jpg');
|
||
|
}
|
||
|
|
||
|
table {
|
||
|
border-style: none;
|
||
|
padding: 0px;
|
||
|
font-size: var(--font-size);
|
||
|
}
|
||
|
|
||
|
td {
|
||
|
border-style: none;
|
||
|
padding: 3px;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
|
||
|
td.top {
|
||
|
border-bottom: solid 2px black;
|
||
|
}
|
||
|
|
||
|
td.left {
|
||
|
width: 180px;
|
||
|
border-right: solid 2px black;
|
||
|
}
|
||
|
|
||
|
td.right {
|
||
|
width: 180px;
|
||
|
border-left: solid 2px black;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #663300;
|
||
|
text-decoration: none;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #330000;
|
||
|
}
|
||
|
|
||
|
.small {
|
||
|
font: 10px verdana;
|
||
|
}
|
||
|
|
||
|
.highlight {
|
||
|
color: red;
|
||
|
}
|
||
|
|
||
|
.light {
|
||
|
color: #999999;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
border: solid 1px black;
|
||
|
background-color: #eeeeee;
|
||
|
font-weight: bold;
|
||
|
padding: 5px;
|
||
|
margin: 3px;
|
||
|
font-size: 1.2rem;
|
||
|
font-family: 'Times New Roman', Times, serif;
|
||
|
}
|
||
|
|
||
|
.copyright {
|
||
|
border: solid 1px black;
|
||
|
background-color: #eeeeee;
|
||
|
font: 10px verdana;
|
||
|
}
|