summaryrefslogtreecommitdiff
blob: 021695815881a105e9007c8c099a0cae1644a648 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
@charset "UTF-8";
/* CSS Document */

/* Number the h2/h3 -- doesn't work on v4/5 browsers */
h2
{
   counter-increment: h2-count;
   counter-reset:     h3-count;
}

h2:before
{
   content: counter(h2-count) " ";
}

h3
{
   counter-increment: h3-count;
}

h3:before
{
   content: counter(h2-count) "." counter(h3-count) " ";
   
}

/* table formatting hints */

table {
    border-collapse: collapse;
	border: 1px solid #F2F2F2; 
    width: 100%;
}

th, td {
    padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
	background-color: #506B80;
	color: white;
	font-size: 17px;
	border-bottom: 1px solid #F2F2F2;
}

.table-alt {
	border-collapse: collapse;
	border: none;
    width: 100%;
}

th, td {
    padding: 8px;
}