blob: 9de76ae05b21524509596d3b69dad8e93f12592d (
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
|
<style>
body {
font-family: monospace, Times, serif;
margin: 2em auto;
max-width: 800px;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
td,th {
padding: 6px;
vertical-align: top;
word-wrap: break-word
}
#t01 {
width: 100%;
background-color: #f6c177;
}
#t01 tr:nth-child(even) {
background-color: #31748f;
}
#t01 tr:nth-child(odd) {
background-color: #9ccfd8;
}
#t01 th {
color: #e0def4;
background-color: #26233a;
}
</style>
|