Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Content/themes/hl/Site.css @ 5072

Last change on this file since 5072 was 5072, checked in by dkahn, 14 years ago

#1198 Created design and modified views to create submenus

File size: 5.6 KB
Line 
1/* Main Layout Styles
2----------------------------------------------------------*/
3
4body {
5  margin: 0;
6  padding: 0;
7  width: 100%;
8  height: 100%;
9  background-color: #FAFAFA;
10  text-align: center;
11  font-size: .75em;
12  font-family: Verdana, Helvetica, Sans-Serif;
13}
14
15img {
16  border: 0px;
17}
18
19h1, h2, h3, h4, h5 {
20  margin: 0px;
21  padding: 0px;
22}
23
24h1 {
25  color: #F7921D;
26  border-bottom: 1px dotted #AAAAAA;
27  font-size: 1.5em;
28  padding-bottom: 2px;
29  margin-bottom: 4px;
30}
31
32h2 {
33  color: #333333;
34  border-bottom: 1px solid #EEEEEE;
35  font-size: 1.2em;
36  padding-bottom: 3px;
37}
38
39h3 {
40  color: #333333;
41  font-size: 1em;
42  padding-bottom: 6px;
43}
44
45#master-page {
46  margin: 0 auto;
47  width: 999px;
48  text-align: left;
49}
50
51#master-header {
52  width: 999px;
53  height: 54px;
54  background-repeat: no-repeat;
55  background-image: url("images/bg_header.png");
56}
57
58#master-header .logo {
59  color: #FFFFFF;
60  display: block;
61  float: left;
62  text-align: left;
63  font-size: 28px;
64  padding-top: 18px;
65  padding-left: 8px;
66}
67
68#master-header .logo a {
69  text-decoration: none;
70  color: #FFFFFF;
71}
72
73#master-header .login {
74  font-size: 1.2em;
75  display: block;
76  text-align: right;
77  margin: 10px;
78  color: #FFFFFF;
79  float: right;
80  margin-top: 28px;
81}
82
83#master-header .login a {
84  background-color: #000000;
85  padding-left: 12px;
86  padding-right: 12px;
87  padding-top: 4px;
88  padding-bottom: 4px;
89  color: #FFFFFF;
90  text-decoration: none;
91  font-weight: bold;
92  border: 1px solid #CCCCCC;
93}
94
95#master-header .login a:hover {
96  color: #AAAAAA;
97}
98
99#master-mainmenu {
100  background-color: #000000;
101  background-repeat: repeat-y;
102  background-image: url("images/bg_mainmenu.png");
103  padding-left: 8px;
104  padding-right: 8px;
105  margin: 0px;
106  color: #FFFFFF;
107  height: 28px;
108}
109
110#master-submenu {
111 
112}
113
114#master-submenu UL {
115  margin: 0px;
116  padding: 0px;
117  margin-left: 5px;
118  margin-right: 6px;
119  border-bottom: 1px dotted #F7921D; 
120  padding: 4px;
121}
122
123#master-submenu UL LI {
124  display: inline;
125  list-style: none;
126  border-right: 1px dotted #333333;
127}
128
129#master-submenu UL LI a {
130  padding: 0px 20px;
131  padding-top: 4px;
132  font-weight: bold;
133  text-decoration: none;
134  line-height: 2.0em;
135  color: #333333; 
136}
137
138#master-submenu UL LI a:hover {
139  color: #F7921D;
140}
141
142#master-main {
143  background-repeat: repeat-y;
144  background-image: url("images/bg_main.png");
145}
146
147#master-MainContent {
148  padding-left: 12px;
149  padding-right: 12px;
150  padding-top: 12px;
151  width: 975px;
152  display: block;
153  float: left;
154}
155
156#master-footer {
157  background-repeat: no-repeat;
158  background-image: url("images/bg_footer.png");
159  width: 999px;
160  height: 64px;
161  clear: both;
162}
163
164#master-footer .logo {
165  display: block;
166  text-align: right;
167  padding-right: 22px;
168  padding-top: 10px;
169}
170
171/* TAB MENU   
172----------------------------------------------------------*/
173ul#menu {
174  padding: 0px;
175  margin: 0px;
176  text-align: left;
177}
178
179ul#menu li {
180  display: inline;
181  list-style: none;
182}
183
184ul#menu li#greeting {
185  padding: 5px 20px;
186  font-weight: bold;
187  text-decoration: none;
188  line-height: 2.8em;
189  color: #fff;
190}
191
192ul#menu li a {
193  padding: 0px 20px;
194  padding-top: 4px;
195  font-weight: bold;
196  text-decoration: none;
197  line-height: 2.5em;
198  color: #FFFFFF;
199}
200
201ul#menu li a:hover {
202  text-decoration: none;
203  color: #AAAAAA;
204}
205
206ul#menu li a:active {
207}
208
209ul#menu li.selected a {
210  color: #F7921D;
211  background-color: #FFFFFF;
212  padding-bottom: 8px;
213}
214
215/* FORM LAYOUT ELEMENTS   
216----------------------------------------------------------*/
217
218fieldset {
219  margin: 1em 0;
220  padding: 1em;
221  border: 1px solid #CCC;
222}
223
224fieldset p {
225  margin: 2px 12px 10px 10px;
226}
227
228legend {
229  font-size: 1.1em;
230  font-weight: 600;
231  padding: 2px 4px 8px 4px;
232}
233
234input[type="text"] {
235  border: 1px solid #CCC;
236}
237
238input[type="password"] {
239  width: 200px;
240  border: 1px solid #CCC;
241}
242
243/* TABLE
244----------------------------------------------------------*/
245
246table {
247  border: solid 1px #e8eef4;
248  border-collapse: collapse;
249}
250
251table td {
252  padding: 5px;
253  border: solid 1px #e8eef4;
254}
255
256table th {
257  padding: 6px 5px;
258  text-align: left;
259  background-color: #e8eef4;
260  border: solid 1px #e8eef4;
261}
262
263/* MISC 
264----------------------------------------------------------*/
265.clear {
266  clear: both;
267}
268
269.error {
270  color: Red;
271}
272
273#menucontainer {
274  margin-top: 40px;
275}
276
277div#title {
278  display: block;
279  float: left;
280  text-align: left;
281}
282
283#logindisplay {
284  font-size: 1.1em;
285  display: block;
286  text-align: right;
287  margin: 10px;
288  color: White;
289}
290
291#logindisplay a:link {
292  color: white;
293  text-decoration: underline;
294}
295
296#logindisplay a:visited {
297  color: white;
298  text-decoration: underline;
299}
300
301#logindisplay a:hover {
302  color: white;
303  text-decoration: none;
304}
305
306/* Styles for validation helpers
307-----------------------------------------------------------*/
308.field-validation-error {
309  color: #ff0000;
310}
311
312.field-validation-valid {
313  display: none;
314}
315
316.input-validation-error {
317  border: 1px solid #ff0000;
318  background-color: #ffeeee;
319}
320
321.validation-summary-errors {
322  font-weight: bold;
323  color: #ff0000;
324}
325
326.validation-summary-valid {
327  display: none;
328}
329
330/* Styles for editor and display helpers
331----------------------------------------------------------*/
332.display-label, .editor-label, .display-field, .editor-field {
333  margin: 0.5em 0;
334}
335
336.text-box {
337  width: 30em;
338}
339
340.text-box.multi-line {
341  height: 6.5em;
342}
343
344.tri-state {
345  width: 6em;
346}
Note: See TracBrowser for help on using the repository browser.