Add document title (database name) to top of the browser page.
[online-glom:gwt-glom.git] / mockups / style.css
1 body
2 {
3         font-family: sans-serif;
4         margin: 1em;
5 }
6
7 a
8 {
9         font-weight: bold;
10         color: #333;
11         text-decoration: none;
12 }
13 a:hover
14 {
15         color: #666;
16         text-decoration: underline;
17 }
18
19 #headbox, #footbox
20 {
21         background-color: #eee;
22         border: 1px solid #aaa;
23         padding: 0.2em;
24         border-radius: 3px;
25 }
26
27 div#document-title
28 {
29         color: #333333;
30         font-weight: bold;
31         font-size: x-large;
32         margin-bottom: 0.5em;
33         margin-left: 0.5em;
34 }
35
36 .backlink
37 {
38         float: left;
39         margin: 0.2em 0.5em;
40 }
41 .records
42 {
43         float: left;
44         margin: 0.2em 0.5em;
45         color: #333;
46 }
47 .details-navigation
48 {
49         float: right;
50         margin: 0.2em 0.5em;
51 }
52 .details-navigation a
53 {
54         padding-right: 1em;
55 }
56
57 .tablechooser
58 {
59         float: right;
60 }
61
62 table
63 {
64         border-collapse: collapse;
65 }
66 td
67 {
68         vertical-align: top;
69         padding: 0;
70         padding-right: 2em;
71 }
72
73 /**
74  * List View
75  */
76 table.data-list
77 {
78         width: 100%;
79         margin-top: 1em;
80 }
81 table.data-list th
82 {
83         background-color: #ccc;
84         border: 1px solid #000;
85         text-align: left;
86         font-weight: normal;
87         padding: 0.2em;
88         
89 }
90 table.data-list td
91 {
92         background-color: #fff;
93         border: 1px dotted #aaa;
94         padding: 0.2em;
95 }
96 table.data-list td.details
97 {
98         text-align: right;
99 }
100
101
102 /**
103  * Details View 
104  */
105 .group
106 {
107         margin: 1em 0;
108         background-color: #eee;
109         padding: 0.8em;
110         border-radius: 7px;
111 }
112
113 .group-contents
114 {
115         padding-left: 0.8em;
116 }
117
118 .group table.data-list
119 {
120         margin-bottom: 0.8em;
121 }
122
123 table.columns
124 {
125         width: 100%;
126 }
127
128 h2.group-title
129 {
130         font-size: 100%;
131         padding: 0;
132         margin: 0;
133         margin-bottom: 0.8em;
134         border-bottom: 1px dashed #000;
135 }
136
137 group p
138 {
139         margin-top: 0;
140         margin-bottom: 0.8em;
141 }
142
143 .details-data
144 {
145         color: #333;
146 }
147
148
149