Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Content/themes/default/Site.css @ 5991

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

#1198 Created design and modified views to create submenus

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