forked from hiltonbruce/Igreja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollapsible-tables.css
executable file
·86 lines (68 loc) · 1.28 KB
/
collapsible-tables.css
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* --------- 1. defaults --------- */
* {
margin: 0;
padding: 0;
}
body {
padding: 20px;
}
/* --------- 2. fonts ---------- */
html {
font-size: 100%;
}
body {
font: 62.5%/1.5 "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
}
/* ---------- 3. tables ---------- */
table {
border-collapse: collapse;
}
tbody {
display: table-row-group;
}
th, td {
border: 1px solid #bbbbbb;
font-size: 1.2em;
padding: 4px 10px;
line-height: 1.2;
width: 180px !important;
}
tbody td {
border-top: 0;
border-bottom: 0;
}
caption {
font-weight: bold;
font-size: 1.4em;
text-transform: uppercase;
padding: 0 0 5px;
color: #333333;
}
th {
background: #e4e5e4 url(table-heading-background.gif) 0 50% repeat-x;
text-align: left;
}
tfoot {
background-color: #e2e2e2;
color: #555555;
}
tfoot td {
font-size: 1.0em;
text-align: center;
width: 600px !important;
padding: 0 0;
}
tfoot a {
display: none;
}
tbody tr.alt td {
background: #d8ddf0;
}
tbody tr.over td, tbody tr:hover td {
background: #4f70dc;
color: #ffffff;
}
tbody tr.over+tr td {
background-image: url(shadow.png);
background-repeat: repeat-x;
}