6
|
1 html, body {
|
|
2 height: 100%;
|
|
3 margin: 0;
|
|
4 padding: 0;
|
|
5 }
|
|
6
|
8
|
7 a {
|
|
8 transition: all 0.5s;
|
|
9 color: inherit;
|
|
10 font-weight: bold;
|
|
11 }
|
|
12
|
6
|
13 .block {
|
|
14 display: block;
|
|
15 }
|
|
16
|
|
17 .centered {
|
|
18 text-align: center;
|
|
19 }
|
|
20
|
10
|
21 .float-left {
|
|
22 float: left;
|
|
23 }
|
|
24
|
|
25 .float-right {
|
|
26 float: right;
|
|
27 }
|
|
28
|
8
|
29 /********************************* MENUS **************************************/
|
|
30
|
|
31 ul.menu-bar {
|
|
32 padding: 0;
|
|
33 margin: 0;
|
|
34 list-style: none;
|
|
35 }
|
|
36
|
|
37 ul.menu-bar li {
|
|
38 display: inline-block;
|
|
39 line-height: 100%;
|
|
40 }
|
|
41
|
10
|
42 ul.menu-bar li.menu-item {
|
|
43 padding: 5px;
|
|
44 text-decoration: none;
|
|
45 padding-bottom: 8px;
|
|
46 }
|
|
47
|
8
|
48 .menu-bar a {
|
9
|
49 padding: 5px;
|
|
50 display: block;
|
|
51 text-decoration: none;
|
10
|
52 border-bottom: 3px solid;
|
8
|
53 }
|
|
54
|
6
|
55 /********************************* TABLES *************************************/
|
|
56
|
|
57 table.pretty-table
|
|
58 {
|
|
59 border-collapse: collapse;
|
|
60 border: 1px solid #cccccc;
|
|
61 margin: 10px;
|
|
62 }
|
|
63
|
|
64 table.pretty-table td,
|
|
65 table.pretty-table th
|
|
66 {
|
|
67 padding: 3px;
|
|
68 border: 1px solid #c0c0c0;
|
|
69 }
|
|
70
|
|
71 table.pretty-table th
|
|
72 {
|
|
73 background: #e0e0e0;
|
|
74 font-weight: bold;
|
|
75 }
|
|
76
|
|
77 .table-form td,
|
|
78 .table-form th
|
|
79 {
|
|
80 padding: 3px;
|
|
81 }
|
|
82
|
|
83 td.control-label,
|
|
84 th.control-label
|
|
85 {
|
|
86 font-weight: bold;
|
|
87 text-align: right;
|
|
88 } |