1 | 1 | simandl | #mainview { background: #ccc; } |
2 | | | |
3 | | | body { font-family: Gill Sans, Verdana, sans-serif; margin:0; } |
4 | | | #toolbar { font-family: Verdana, sans-serif; } |
5 | | | |
6 | | | |
7 | | | #dlgNodeProperties { display: none; z-index: 2; position: absolute;top: 100px;left: 100px;} |
8 | | | #dlgLinkProperties { display: none; z-index: 3; position: absolute; top: 80px; left: 150px; } |
9 | | | #dlgMapProperties { display: none; z-index: 1; position: absolute;top: 90px; left: 120px;} |
10 | | | #dlgMapStyle { display: none; z-index: 1; position: absolute;top: 40px; left: 50px;} |
11 | | | |
12 | | | #dlgColours { display: none; z-index: 1; position: absolute;top: 140px; left: 90px;} |
13 | | | #dlgImages { display: none; z-index: 1; position: absolute;top: 120px; left: 70px;} |
14 | | | |
15 | | | |
16 | | | /* some fudges for the Welcome screen*/ |
17 | | | #dlgStart { z-index: 1; position: absolute; top: 90px; left: 60px; width: 600px;} |
18 | | | #dlgStart .dlgBody ul { list-style: none; } |
19 | | | #dlgStart .dlgBody ul a { text-decoration: none; color: white; font-weight: bold;} |
20 | | | |
21 | | | #existingdata { border: 0px; } |
22 | | | |
23 | | | #withjs { |
24 | | | display: none; |
25 | | | /* to hide the page until our Javascript is running. Otherwise the whole thing fails really. */ |
26 | | | } |
27 | | | |
28 | | | #nojs { |
29 | | | /* border: 3px dashed red; |
30 | | | background: #fee; |
31 | | | padding: 5px; |
32 | | | /* the warning bit we'll show unless the javascript hides it */ |
33 | | | font-size: 80%; |
34 | | | // padding: 5px; |
35 | | | margin: 25px; |
36 | | | } |
37 | | | |
38 | | | div.dlgTitlebar ul { |
39 | | | float: right; |
40 | | | font-size: 8pt; |
41 | | | font-weight: bold; |
42 | | | font-style: italic; |
43 | | | white-space: nowrap; |
44 | | | } |
45 | | | |
46 | | | div.dlgTitlebar ul li { |
47 | | | display: inline; |
48 | | | } |
49 | | | |
50 | | | a.dlgTitlebar { |
51 | | | padding:3px 3px; |
52 | | | font-size: 8pt; |
53 | | | font-weight: bold; |
54 | | | font-style: italic; |
55 | | | background:#aaa; |
56 | | | color:#fff; |
57 | | | text-decoration:none; |
58 | | | padding: 3px; |
59 | | | border: 1px white dotted; |
60 | | | margin: 2px; |
61 | | | } |
62 | | | |
63 | | | div.dlgTitlebar ul li a { |
64 | | | float:right; |
65 | | | padding:3px 3px; |
66 | | | background:#aaa; |
67 | | | color:#fff; |
68 | | | text-decoration:none; |
69 | | | padding: 3px; |
70 | | | border: 1px white dotted; |
71 | | | margin: 2px; |
72 | | | cursor: pointer; |
73 | | | } |
74 | | | |
75 | | | a.dlgTitlebar { cursor: pointer; } |
76 | | | |
77 | | | div.dlgTitlebar ul li a:hover { |
78 | | | color:#fff; |
79 | | | background:#69c; |
80 | | | } |
81 | | | |
82 | | | a.dlgTitlebar:hover { |
83 | | | color:#fff; |
84 | | | background:#69c; |
85 | | | } |
86 | | | |
87 | | | #toolbar ul { |
88 | | | float:left; |
89 | | | width:100%; |
90 | | | margin:0; |
91 | | | padding:0; |
92 | | | font-size:11px; |
93 | | | color:#fff; |
94 | | | background:#ccc; |
95 | | | background: #1958b7; |
96 | | | margin-bottom: 10px; |
97 | | | } |
98 | | | |
99 | | | #toolbar ul li.tb_help { |
100 | | | font-style: italic; |
101 | | | padding: 2px; |
102 | | | } |
103 | | | |
104 | | | #toolbar ul li { |
105 | | | display:inline; |
106 | | | } |
107 | | | |
108 | | | #toolbar ul li.tb_active { |
109 | | | float:left; |
110 | | | padding:5px 10px; |
111 | | | text-decoration:none; |
112 | | | |
113 | | | border-left: #508fc4 2px solid; |
114 | | | border-right: #1958b7 2px solid; |
115 | | | border-top: #508fc4 2px solid; |
116 | | | border-bottom: #1958b7 2px solid; |
117 | | | |
118 | | | cursor: pointer; |
119 | | | text-align: center; |
120 | | | |
121 | | | background: #2175bc; |
122 | | | color:#fff; |
123 | | | } |
124 | | | |
125 | | | |
126 | | | #toolbar ul li.tb_active:hover { |
127 | | | color:#fff; |
128 | | | background:#2586d7; |
129 | | | } |
130 | | | |
131 | | | .dlgProperties { |
132 | | | width: 400px; |
133 | | | background: #077; |
134 | | | margin: 5px; |
135 | | | font-size: 8pt; |
136 | | | color: white; |
137 | | | } |
138 | | | |
139 | | | .dlgBody { |
140 | | | padding: 5px; |
141 | | | font-size: 12pt; |
142 | | | } |
143 | | | |
144 | | | .comment { font-style: italic; font-size: 80%;} |
145 | | | |
146 | | | .dlgHelp { |
147 | | | font-size: 10pt; |
148 | | | line-height: 12pt; |
149 | | | background: #099; |
150 | | | height: 48pt; |
151 | | | padding: 5px; |
152 | | | } |
153 | | | |
154 | | | .dlgTitlebar { |
155 | | | font-size: 12pt; |
156 | | | font-weight: bold; |
157 | | | background: #099; |
158 | | | padding-left: 5px; |
159 | | | padding-right: 4px; |
160 | | | padding-top: 2px; |
161 | | | padding-bottom: 2px; |
162 | | | } |
163 | | | |
164 | | | .debug { line-height: 2.5; margin: 10px; font-size: 70%; background: yellow; border: 1px dashed black; padding: 4px;} |
165 | | | .debug input { font-size: 80%; } |
166 | | | .debug h1 { font-size: 8pt; border-bottom: 1px solid grey; text-align: left;} |
167 | | | .debug span { position: relative; } |
168 | | | .debug span label {position:absolute; top:-1.5em; left:0; font:bold 100%/1 sans-serif; } |
169 | | | |
170 | | | th { color: white; font-weight: bold; text-align: right; font-size: 8pt;} |
171 | | | td { color: white; font-weight: normal; text-align: left; font-size: 8pt;} |
172 | | | |
173 | | | #xycapture { cursor: crosshair; } |
174 | | | |
175 | | | .alert { |
176 | | | background: #fff6bf url(images/alert.png) center no-repeat; |
177 | | | background-position: 15px 50%; /* x-pos y-pos */ |
178 | | | text-align: left; |
179 | | | padding: 5px 20px 5px 45px; |
180 | | | border-top: 2px solid #ffd324; |
181 | | | border-bottom: 2px solid #ffd324; |
182 | 13 | simandl | } |
183 | | | |
184 | | | .fontsamples { height: 64px; width: 300px; overflow: auto; } |
185 | | | |
186 | | | .cactilink, .cactinode { white-space: nowrap; } |