~flimm/python-snippets/gtkcrashhandler

« back to all changes in this revision

Viewing changes to webkit/webkit_table-business.css

  • Committer: Jono Bacon
  • Date: 2010-04-10 19:51:48 UTC
  • mfrom: (81.5.2 webkit-easter-html)
  • Revision ID: jono@ubuntu.com-20100410195148-z096w3p21ko82ksb
Awesome webkit table example.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
body {
 
2
    color: black;
 
3
    background-color: white;
 
4
    font-size: 80%;
 
5
}
 
6
table {
 
7
    border-collapse: collapse;
 
8
    border-bottom: 2px solid black;
 
9
}
 
10
thead {
 
11
    color: white;
 
12
    background-color: black;
 
13
    font-weight: bold;
 
14
}
 
15
thead th {
 
16
    padding: 0 1em;
 
17
}
 
18
tbody {
 
19
    font-size: 80%;
 
20
}
 
21
tbody tr:nth-child(even) {
 
22
    background: #eee;
 
23
}
 
24
td.left {
 
25
    text-align: left;
 
26
}
 
27
td.right {
 
28
    text-align: right;
 
29
}
 
30