aboutsummaryrefslogtreecommitdiffstats
path: root/templates/css.html
blob: a918a4be4b77a4c24b60e596d585dd86dd8e39e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<style>
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}
th, td {
    padding: 15px;
}
#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>