49 lines
611 B
CSS
49 lines
611 B
CSS
|
.index {
|
||
|
font-family: "Source Serif Pro", "Linux Libertine", monospace;
|
||
|
}
|
||
|
|
||
|
.db-table > h3 {
|
||
|
font-variant: small-caps;
|
||
|
}
|
||
|
|
||
|
h1, nav {
|
||
|
font-variant: small-caps;
|
||
|
font-family: "Inconsolata", monospace;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
font-variant: small-caps;
|
||
|
}
|
||
|
|
||
|
th {
|
||
|
font-variant: small-caps;
|
||
|
}
|
||
|
|
||
|
header {
|
||
|
background-color: black;
|
||
|
}
|
||
|
|
||
|
.ft {
|
||
|
background-color: black;
|
||
|
}
|
||
|
|
||
|
form input[type="submit"] {
|
||
|
background-color: black;
|
||
|
}
|
||
|
|
||
|
a:link {
|
||
|
color: #404040;
|
||
|
}
|
||
|
|
||
|
a:visited {
|
||
|
color: darkgrey;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: black;
|
||
|
}
|
||
|
|
||
|
.rows-and-columns > tbody > tr:nth-child(even) {
|
||
|
background-color: #F5F5F5;
|
||
|
}
|