share/style.css: Add some basic styles for the table layout.
[collection4.git] / share / style.css
1 body
2 {
3         font-family: sans-serif;
4 }
5
6 #layout-table
7 {
8         width: 100%;
9 }
10
11 #layout-top-left,
12 #layout-middle-left,
13 #layout-bottom-left
14 {
15         width: 10%;
16         min-width: 250px;
17 }
18
19 #layout-top-center,
20 #layout-middle-center,
21 #layout-bottom-center
22 {
23 }
24
25 #layout-top-right,
26 #layout-middle-right,
27 #layout-bottom-right
28 {
29         width: 10%;
30         min-width: 300px;
31 }
32
33 #layout-middle td
34 {
35         vertical-align: top;
36 }
37
38 ul.graph_list
39 {
40         margin: 0;
41         padding: 1ex;
42 }
43
44 li.graph
45 {
46         display: block;
47         border: 1px solid gray;
48         margin-top: 1ex;
49
50         background-color: rgb(245,245,255);
51 }
52
53 ul.instance_list
54 {
55         margin: 0;
56         padding: 1ex;
57         border-top: 1px solid gray;
58
59         background-color: rgb(252,252,252);
60 }
61
62 li.instance
63 {
64         display: block;
65
66         font-size: 90%;
67 }