~flimm/python-snippets/gtkcrashhandler

« back to all changes in this revision

Viewing changes to webkit/webkit_table-colourful.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
h1 {
 
7
    color: #B90091;
 
8
}
 
9
table {
 
10
    border-collapse: collapse;
 
11
}
 
12
thead {
 
13
    color: white;
 
14
    background-color: #B90091;
 
15
    font-weight: bold;
 
16
}
 
17
thead th {
 
18
    padding: 0 1em;
 
19
}
 
20
tbody {
 
21
    font-size: 80%;
 
22
}
 
23
tbody tr:nth-child(odd) {
 
24
    background: #48DD00;
 
25
}
 
26
tbody tr:nth-child(even) {
 
27
    background: #FFF100;
 
28
}
 
29
td.left {
 
30
    text-align: left;
 
31
}
 
32
td.right {
 
33
    text-align: right;
 
34
}
 
35