74 lines
1005 B
CSS
74 lines
1005 B
CSS
:root {
|
|
--font-size: 14px;
|
|
}
|
|
|
|
html {
|
|
font-size: var(--font-size);
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-image: url('/img/backgrounds/classic.jpg');
|
|
padding: 2rem;
|
|
}
|
|
table {
|
|
border-style: none;
|
|
padding: 0px;
|
|
}
|
|
tr:nth-child(even) {
|
|
background-color: white;
|
|
}
|
|
td {
|
|
border-style: none;
|
|
padding: 3px;
|
|
vertical-align: top;
|
|
}
|
|
td.top {
|
|
border-bottom: solid 2px black;
|
|
}
|
|
td.left {
|
|
width: 150px;
|
|
border-right: solid 2px black;
|
|
}
|
|
td.right {
|
|
width: 150px;
|
|
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;
|
|
}
|
|
.copyright {
|
|
border: solid 1px black;
|
|
background-color: #eeeeee;
|
|
font: 10px verdana;
|
|
}
|
|
|
|
footer {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
font-size: 0.8rem;
|
|
padding: 0.5rem;
|
|
margin-top: 2rem;
|
|
}
|