blob: 5b3995d93e5faeccdc2d3e3ac8b55487faf43b33 (
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
|
h1 {
font-family: sans-serif;
}
table {
border-collapse: collapse;
border: 2px solid gray;
margin: 1rem 0px;
}
tr {
background-color: white;
}
tbody>tr:nth-of-type(odd) {
background-color: cornsilk;
}
th,
td {
border: 1px solid darkslateblue;
padding: 2px 3px;
}
thead th {
background-color: darksalmon;
}
th {
text-align: left;
padding: 4px 6px;
white-space: nowrap;
}
th.ttitle {
text-align: center;
}
|