blob: 792e24bd1ee66125f8963a9821cab8cc11a32970 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
body {
background-color: #ffffea;
color: black;
font-family: sans-serif;
}
::selection { background: #eeee9e; }
h1 { text-align: center; }
a {
color: black;
text-decoration: none;
font-size: 2em;
}
img#cover {
width: 348px;
height: 512px;
border: 4px solid #99994c;
}
table, th, td {
border: 2px solid #8888cc;
border-collapse: collapse;
background-color: #eaffff;
}
table ::selection { background: #9eeeee; }
td { padding: .5em; }
td:first-child { font-weight: bold; }
td a {
text-decoration: underline dotted;
font-size: 1em;
}
|