6
|
1 html, body {
|
|
2 height: 100%;
|
|
3 margin: 0;
|
|
4 padding: 0;
|
|
5 }
|
|
6
|
|
7 .block {
|
|
8 display: block;
|
|
9 }
|
|
10
|
|
11 .centered {
|
|
12 text-align: center;
|
|
13 }
|
|
14
|
|
15 /********************************* TABLES *************************************/
|
|
16
|
|
17 table.pretty-table
|
|
18 {
|
|
19 border-collapse: collapse;
|
|
20 border: 1px solid #cccccc;
|
|
21 margin: 10px;
|
|
22 }
|
|
23
|
|
24 table.pretty-table td,
|
|
25 table.pretty-table th
|
|
26 {
|
|
27 padding: 3px;
|
|
28 border: 1px solid #c0c0c0;
|
|
29 }
|
|
30
|
|
31 table.pretty-table th
|
|
32 {
|
|
33 background: #e0e0e0;
|
|
34 font-weight: bold;
|
|
35 }
|
|
36
|
|
37 .table-form td,
|
|
38 .table-form th
|
|
39 {
|
|
40 padding: 3px;
|
|
41 }
|
|
42
|
|
43 td.control-label,
|
|
44 th.control-label
|
|
45 {
|
|
46 font-weight: bold;
|
|
47 text-align: right;
|
|
48 } |