blob: b04452e3f88249ae58781510a2bf85188b46e32b (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
body {
font-family: sans-serif;
font-size: 10pt;
color: #333;
}
a {
color: blue;
}
a:hover {
text-decoration: none;
}
table {
width: 100%;
}
tr:nth-child(even) {
background: #f7f7f7;
}
tr:nth-child(odd) {
background: white;
}
tr:hover {
background: #eee;
}
th {
font-weight: bold;
background-color: white;
}
td {
border: none;
padding: 0.1em 0.5em 0.1em 0.5em;
}
blockquote {
background-color: #ffd;
margin: 8px 40px 14px 18px;
padding: 12px;
border: 1px solid #aa6;
overflow: hidden;
}
textarea {
width: 100%;
height: 200px;
margin-right: 0;
overflow: scroll;
resize: none;
}
.header {
border-bottom: 1px dashed black;
}
|