~oly/python-snippets/interactive-python-textview

« back to all changes in this revision

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