49 lines
562 B
CSS
49 lines
562 B
CSS
@import "format.css";
|
|
|
|
body {
|
|
max-width: 35em;
|
|
background-color: #eee;
|
|
}
|
|
|
|
h1:first-child {
|
|
background-color: #cc8;
|
|
margin-top: 0;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: "URW Gothic L", sans-serif;
|
|
color: #c17f6f;
|
|
}
|
|
|
|
a {
|
|
color: #2A70E0;
|
|
text-decoration: none;
|
|
}
|
|
a:visited {
|
|
color: #469;
|
|
}
|
|
a:hover {
|
|
color: #bb3;
|
|
}
|
|
|
|
pre {
|
|
background: #ccc;
|
|
}
|
|
|
|
#nav {
|
|
padding: 0;
|
|
text-align: center;
|
|
border-top: solid black 1px;
|
|
}
|
|
#nav li {
|
|
display: inline;
|
|
}
|
|
#nav li + li:before {
|
|
content: " | ";
|
|
}
|
|
|
|
address {
|
|
clear: both;
|
|
font-size: small;
|
|
}
|