equal
deleted
inserted
replaced
|
1 body { |
|
2 background: snow; |
|
3 font-family: Helvetica, Arial, sans-serif; |
|
4 } |
|
5 |
|
6 .error { |
|
7 color: red; |
|
8 font-weight: bold; |
|
9 } |
|
10 |
|
11 .ok { |
|
12 color: green; |
|
13 font-weight: bold; |
|
14 } |
|
15 |
|
16 .x-small { |
|
17 color: green; |
|
18 font-size: x-small; |
|
19 } |
|
20 |
|
21 div#main_title { |
|
22 background-color: #d60029; |
|
23 color: #fff; |
|
24 font-size: 22px; |
|
25 font-weight: bold; |
|
26 padding: 5px; |
|
27 } |
|
28 |
|
29 /* Main Menu */ |
|
30 #main_menu { |
|
31 background-color: cornsilk; |
|
32 color: #000; |
|
33 font-size: 16px; |
|
34 padding: 5px 0px 5px 5px; |
|
35 } |
|
36 |
|
37 #main_menu ul { |
|
38 margin: 0px; |
|
39 padding: 0px; |
|
40 } |
|
41 |
|
42 #main_menu li { |
|
43 display: inline; |
|
44 padding-right: 10px; |
|
45 } |
|
46 |
|
47 #main_menu a { |
|
48 font-weight: bold; |
|
49 color: #000; |
|
50 |
|
51 } |
|
52 |
|
53 #main_menu a:hover { |
|
54 font-weight: bold; |
|
55 color: #000; |
|
56 } |
|
57 |
|
58 /* Sub Menu */ |
|
59 |
|
60 #sub_menu { |
|
61 background-color: lightslategray; |
|
62 color: #000; |
|
63 font-size: 12px; |
|
64 padding: 2px 0px 2px 5px; |
|
65 } |
|
66 |
|
67 #sub_menu ul { |
|
68 margin: 0px; |
|
69 padding: 0px; |
|
70 } |
|
71 |
|
72 #sub_menu li { |
|
73 display: inline; |
|
74 padding-right: 10px; |
|
75 } |
|
76 |
|
77 #sub_menu a { |
|
78 font-weight: bold; |
|
79 color: #000; |
|
80 } |
|
81 |
|
82 /* Navigation Point*/ |
|
83 #nav_point { |
|
84 background-color: #d60029; |
|
85 color: #fff; |
|
86 font-size: 10px; |
|
87 font-weight: bold; |
|
88 padding: 5px; |
|
89 } |
|
90 |
|
91 /* Content */ |
|
92 |
|
93 #content { |
|
94 background-color: cornsilk; |
|
95 color: #000; |
|
96 font-size: 16px; |
|
97 padding: 5px; |
|
98 } |
|
99 |
|
100 span.required { |
|
101 color: red; |
|
102 font-weight: bold; |
|
103 } |
|
104 |
|
105 span.attention { |
|
106 color: red; |
|
107 font-weight: bold; |
|
108 } |
|
109 |
|
110 span.bold { |
|
111 font-weight: bold; |
|
112 } |
|
113 |
|
114 .button { |
|
115 border: 1px solid #000; |
|
116 } |
|
117 |
|
118 /* checkbox */ |
|
119 |
|
120 input.vertrag { |
|
121 margin: 0px; |
|
122 } |
|
123 |
|
124 /* Tables */ |
|
125 td#view { |
|
126 padding: 0px 10px 0px 10px; |
|
127 } |
|
128 |
|
129 td.done { |
|
130 background-color: green; |
|
131 text-align: center; |
|
132 } |
|
133 |
|
134 td.done_vertrag { |
|
135 background-color: yellow; |
|
136 text-align: center; |
|
137 } |
|
138 |
|
139 td.nodone { |
|
140 text-align: center; |
|
141 } |
|
142 |
|
143 td.nowrap { |
|
144 white-space: nowrap; |
|
145 } |
|
146 |
|
147 td.nowrap_r { |
|
148 white-space: nowrap; |
|
149 text-align: right; |
|
150 } |
|
151 |
|
152 td.nowrap_c { |
|
153 white-space: nowrap; |
|
154 text-align: center; |
|
155 } |
|
156 |
|
157 #content a { |
|
158 font-weight: bold; |
|
159 color: #000; |
|
160 |
|
161 } |
|
162 |
|
163 #content a:hover { |
|
164 font-weight: bold; |
|
165 color: #000; |
|
166 } |
|
167 |