aboutsummaryrefslogtreecommitdiffstats
path: root/templates/css.html
blob: 4a2ac7b633b7d6736d0880cc40461b8e02f01f97 (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
<style>

body {
    font-family: monospace, Times, serif;
    margin: 2em auto;
    max-width: 800px;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}
th, td {
    padding: 10px;
}
#t01 {
    width: 100%;
    background-color: #fbf1c7;
}
#t01 tr:nth-child(even) {
    background-color: #a89984;
}
#t01 tr:nth-child(odd) {
    background-color: #f9f5d7;
}
#t01 th {
    color: #fbf1c7;
    background-color: #282828;
}
</style>