1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
/**
* Helioviewer.org Custom Styles
*
* Three-column layout based off of Paul O'Bs design (http://www.pmob.co.uk/temp/3colfixedtest_4.htm).
*
* Adjusting size of layout elements:
* 1. Adjusting size of left & right sidebars
* To adjust the size of either sidebar, add/subtract the desired amount from the width and margin-left/right
* properties of [#outsideBox, #leftCol, and #rightCol].
*
* 2. Adjusting the size of the header and footer elements
* The header is currently broken up and set individually in each of the three columns. The footer, however,
* is stored as a single continuous div.
*/
/* HTML ELEMENTS */
html, body {height:100%;}
h1 {font:normal 20px Verdana,Arial,Helvetica,sans-serif;}
button {cursor:pointer}
strong {font-weight:bold;}
input, select {background-color:#F4F4F4;}
/* THREE-COLUMN FLEXIBLE LAYOUT STRUCTURAL COMPONENTS */
#outsideBox {
margin-left : 280px;
margin-right : 250px;
margin-bottom :-252px;
min-height : 100%;
}
#left-col-header, #middle-col-header, #right-col-header { height:25px; width: 100%; }
#left-col-header {left: -1px; height: 50px;}
#right-col-header {left: 1px}
#left-col {
position:relative;/*ie needs this to show float */
width:280px;
float:left;
margin-left:-279px;/*must be 1px less than width otherwise won't push footer down */
z-index:100;
left:-1px;
}
#right-col {
position:relative;/*ie needs this to show float */
width:250px;
float:right;
margin-right:-249px;/*must be 1px less than width otherwise won't push footer down */
left:1px;
color: #000;
}
#middle-col {
min-width:280px;
}
#footer {
width:100%;
clear:both;
height:250px;
text-align:center;
position:relative;
}
#clearfooter{clear:both;height:252px;}/*needed to make room for footer*/
* > html #clearfooter {float:left;width:100%;}/* ie mac styles */
/* Loading Indicator */
#loading {padding: 3px; font-size: 12px; background-color:#858585; color: #F0F0F0;}
/* Center button */
.center-button {
background: url(../images/blackGlass/transparentBGWhite.png) transparent repeat scroll 0%;
width:50px;
height:16px;
position: absolute;
bottom:0px;
right: 0px;
border-left:1px solid #CFCFCF;
border-top:1px solid #CFCFCF;
text-align:center;
cursor: pointer;
}
.center-button > span {
color: white;
font-weight: bold;
}
/* Coordinates */
#mouse-coords {
background: transparent;
color: white;
font-weight: 600;
width: 160px;
height: 16px;
position: absolute;
top:0px;
right: 0px;
}
/* Message Console */
#message-console {
display: inline;
width:100%;
position: absolute;
height: 17px;
text-align: center;
padding-top: 8px;
font-size:1em;
}
.message-console-link {
text-decoration: none;
font-weight: bold;
color: #3d76e0;
}
.message-console-link:hover {
text-decoration: underline;
color: #e03d76;
}
/* Calendar */
#date {
width:80px;
margin-right: 2px;
}
.ui-datepicker-trigger {
background-color: transparent;
color: transparent;
cursor: pointer;
position: relative;
}
.ui-datepicker {
z-index: 2000;
}
/* Movie Builder */
img#movieBuilder {
position: relative;
cursor: pointer;
margin: 2px;
vertical-align: middle;
top: -4px;
}
/* MISC TEXT-RELATED */
.centered {display: block; margin-left:auto; margin-right: auto;}
/* Usage Tips dialog */
/* updates and to-do list */
.notes {
position:relative;
font-size:95%;
padding:5px;
top:10px;
left: 10px;
width: 190px;
background: url(../images/blackGlass/transparentBG50.png) transparent repeat scroll 0%;
-moz-border-radius:20px;
color: white;
height:300px;
border: 1px solid black;
}
|