blob: db67eb6e423b4c0553b303d50ebfcdd915585d53 (
plain) (
blame)
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
|
html {
background: #f4f4f4;
}
body {
background-color: #ffffff;
border: 2px solid #999999;
border-radius: 5px;
box-shadow: 0px 0px 5px #aaaaaa;
color: #222222;
font-size: 12px;
font-family: monospace,"georgia", "calibri", "sans-serif";
margin: 20px auto;
min-width: 400px;
max-width: 800px;
padding: 10px;
text-align: left;
}
nav, footer {
border-radius: 5px;
margin-top: 10px;
padding: 10px;
text-align: center;
}
table {
counter-reset: item;
list-style: none;
margin: 15px 0px;
padding: 0;
}
table th {
background-color: #e9e9e9;
}
table tr:nth-child(odd)
{
background-color: #f9f9f9;
}
table tr:nth-child(even)
{
}
|