* Fixed the paleblue theme CSS
[django-tables2.git] / django_tables / static / django_tables / themes / paleblue / css / screen.css
1 table.paleblue {
2     border-collapse: collapse;
3     border-color: #CCC;
4     border: 1px solid #DDD;
5     font-family: 'Lucida Grande', Verdana, Arial, sans-serif;
6 }
7
8 table.paleblue a:link,
9 table.paleblue a:visited {
10     color: #5B80B2;
11     text-decoration: none;
12     font-weight: bold;
13 }
14
15 table.paleblue a:hover {
16     color: #036;
17 }
18
19 table.paleblue td,
20 table.paleblue th {
21     padding: 5px;
22     line-height: 13px;
23     border-bottom: 1px solid #EEE;
24     border-left: 1px solid #DDD;
25 }
26
27 table.paleblue thead th:first-child,
28 table.paleblue thead td:first-child {
29     border-left: none !important;
30 }
31
32 table.paleblue thead th,
33 table.paleblue thead td {
34     background: #FCFCFC url(../img/nav-bg.gif) top left repeat-x;
35     border-bottom: 1px solid #DDD;
36     padding: 2px 5px;
37     font-size: 11px;
38     vertical-align: middle;
39     white-space: nowrap;
40     color: #666;
41 }
42
43 table.paleblue thead th > a:link,
44 table.paleblue thead th > a:visited {
45     color: #666;
46     display: block;
47 }
48
49 table.paleblue tr.odd {
50     background-color: #EDF3FE;
51 }
52
53 table.paleblue tr.even {
54     background-color: white;
55 }