|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+/* css Zen Garden default style v1.02 */
|
|
|
2
|
+/* css released under Creative Commons License - http://creativecommons.org/licenses/by-nc-sa/1.0/ */
|
|
|
3
|
+
|
|
|
4
|
+/* This file based on 'Tranquille' by Dave Shea */
|
|
|
5
|
+/* You may use this file as a foundation for any new work, but you may find it easier to start from scratch. */
|
|
|
6
|
+/* Not all elements are defined in this file, so you'll most likely want to refer to the xhtml as well. */
|
|
|
7
|
+
|
|
|
8
|
+/* Your images should be linked as if the CSS file sits in the same folder as the images. ie. no paths. */
|
|
|
9
|
+
|
|
|
10
|
+
|
|
|
11
|
+/* basic elements */
|
|
|
12
|
+html {
|
|
|
13
|
+ margin: 0;
|
|
|
14
|
+ padding: 0;
|
|
|
15
|
+ }
|
|
|
16
|
+body {
|
|
|
17
|
+ font: 75% georgia, sans-serif;
|
|
|
18
|
+ line-height: 1.88889;
|
|
|
19
|
+ color: #555753;
|
|
|
20
|
+ background: #fff url(blossoms.jpg) no-repeat bottom right;
|
|
|
21
|
+ margin: 0;
|
|
|
22
|
+ padding: 0;
|
|
|
23
|
+ }
|
|
|
24
|
+p {
|
|
|
25
|
+ margin-top: 0;
|
|
|
26
|
+ text-align: justify;
|
|
|
27
|
+ }
|
|
|
28
|
+h3 {
|
|
|
29
|
+ font: italic normal 1.4em georgia, sans-serif;
|
|
|
30
|
+ letter-spacing: 1px;
|
|
|
31
|
+ margin-bottom: 0;
|
|
|
32
|
+ color: #7D775C;
|
|
|
33
|
+ }
|
|
|
34
|
+a:link {
|
|
|
35
|
+ font-weight: bold;
|
|
|
36
|
+ text-decoration: none;
|
|
|
37
|
+ color: #B7A5DF;
|
|
|
38
|
+ }
|
|
|
39
|
+a:visited {
|
|
|
40
|
+ font-weight: bold;
|
|
|
41
|
+ text-decoration: none;
|
|
|
42
|
+ color: #D4CDDC;
|
|
|
43
|
+ }
|
|
|
44
|
+a:hover, a:active {
|
|
|
45
|
+ text-decoration: underline;
|
|
|
46
|
+ color: #9685BA;
|
|
|
47
|
+ }
|
|
|
48
|
+acronym {
|
|
|
49
|
+ border-bottom: none;
|
|
|
50
|
+ }
|
|
|
51
|
+
|
|
|
52
|
+
|
|
|
53
|
+/* specific divs */
|
|
|
54
|
+#container {
|
|
|
55
|
+ background: url(zen-bg.jpg) no-repeat top left;
|
|
|
56
|
+ padding: 0 175px 0 110px;
|
|
|
57
|
+ margin: 0;
|
|
|
58
|
+ position: relative;
|
|
|
59
|
+ }
|
|
|
60
|
+
|
|
|
61
|
+#form {
|
|
|
62
|
+ padding: 0 175px 0 110px;
|
|
|
63
|
+ font: 10pt/22pt georgia;
|
|
|
64
|
+ }
|
|
|
65
|
+
|
|
|
66
|
+#intro {
|
|
|
67
|
+ min-width: 470px;
|
|
|
68
|
+ }
|
|
|
69
|
+
|
|
|
70
|
+#result {
|
|
|
71
|
+ padding: 0 175px 0 110px;
|
|
|
72
|
+ font: italic 10pt/22pt georgia;
|
|
|
73
|
+ text-align:right;
|
|
|
74
|
+ }
|
|
|
75
|
+#currentLocation{
|
|
|
76
|
+ font: bold 10pt/22pt georgia;
|
|
|
77
|
+ position: relative;
|
|
|
78
|
+ }
|
|
|
79
|
+#result table{
|
|
|
80
|
+ text-align:left;
|
|
|
81
|
+ font: 10pt/22pt georgia;
|
|
|
82
|
+ }
|
|
|
83
|
+
|
|
|
84
|
+/* using an image to replace text in an h1. This trick courtesy Douglas Bowman, http://www.stopdesign.com/articles/css/replace-text/ */
|
|
|
85
|
+#pageHeader h1 {
|
|
|
86
|
+ background: transparent url(h1.gif) no-repeat top left;
|
|
|
87
|
+ margin-top: 10px;
|
|
|
88
|
+ width: 219px;
|
|
|
89
|
+ height: 87px;
|
|
|
90
|
+ float: left;
|
|
|
91
|
+ }
|
|
|
92
|
+#pageHeader h1 span {
|
|
|
93
|
+ display:none
|
|
|
94
|
+ }
|
|
|
95
|
+#pageHeader h2 {
|
|
|
96
|
+ background: transparent url(h2.gif) no-repeat top left;
|
|
|
97
|
+ margin-top: 58px;
|
|
|
98
|
+ margin-bottom: 40px;
|
|
|
99
|
+ width: 200px;
|
|
|
100
|
+ height: 18px;
|
|
|
101
|
+ float: right;
|
|
|
102
|
+ }
|
|
|
103
|
+#pageHeader h2 span {
|
|
|
104
|
+ display:none
|
|
|
105
|
+ }
|
|
|
106
|
+#pageHeader {
|
|
|
107
|
+ padding-top: 20px;
|
|
|
108
|
+}
|
|
|
109
|
+
|
|
|
110
|
+#quickSummary {
|
|
|
111
|
+ clear:both;
|
|
|
112
|
+ margin: 20px 20px 20px 10px;
|
|
|
113
|
+ width: 160px;
|
|
|
114
|
+ float: left;
|
|
|
115
|
+ }
|
|
|
116
|
+#quickSummary p {
|
|
|
117
|
+ font: italic 10pt/22pt georgia;
|
|
|
118
|
+ text-align:center;
|
|
|
119
|
+ }
|
|
|
120
|
+
|
|
|
121
|
+#preamble {
|
|
|
122
|
+ clear: right;
|
|
|
123
|
+ padding: 0px 10px 0 10px;
|
|
|
124
|
+ }
|
|
|
125
|
+#supportingText {
|
|
|
126
|
+ padding-left: 10px;
|
|
|
127
|
+ margin-bottom: 40px;
|
|
|
128
|
+ }
|
|
|
129
|
+
|
|
|
130
|
+#footer {
|
|
|
131
|
+ text-align: center;
|
|
|
132
|
+ }
|
|
|
133
|
+#footer a:link, #footer a:visited {
|
|
|
134
|
+ margin-right: 20px;
|
|
|
135
|
+ }
|
|
|
136
|
+
|
|
|
137
|
+#linkList {
|
|
|
138
|
+ margin-left: 600px;
|
|
|
139
|
+ position: absolute;
|
|
|
140
|
+ top: 0;
|
|
|
141
|
+ right: 0;
|
|
|
142
|
+ }
|
|
|
143
|
+#linkList2 {
|
|
|
144
|
+ font: 10px verdana, sans-serif;
|
|
|
145
|
+ background: transparent url(paper-bg.jpg) top left repeat-y;
|
|
|
146
|
+ padding: 10px;
|
|
|
147
|
+ margin-top: 150px;
|
|
|
148
|
+ width: 130px;
|
|
|
149
|
+ }
|
|
|
150
|
+#linkList h3.select {
|
|
|
151
|
+ background: transparent url(h3.gif) no-repeat top left;
|
|
|
152
|
+ margin: 10px 0 5px 0;
|
|
|
153
|
+ width: 97px;
|
|
|
154
|
+ height: 16px;
|
|
|
155
|
+ }
|
|
|
156
|
+#linkList h3.select span {
|
|
|
157
|
+ display:none
|
|
|
158
|
+ }
|
|
|
159
|
+#linkList h3.favorites {
|
|
|
160
|
+ background: transparent url(h4.gif) no-repeat top left;
|
|
|
161
|
+ margin: 25px 0 5px 0;
|
|
|
162
|
+ width: 60px;
|
|
|
163
|
+ height: 18px;
|
|
|
164
|
+ }
|
|
|
165
|
+#linkList h3.favorites span {
|
|
|
166
|
+ display:none
|
|
|
167
|
+ }
|
|
|
168
|
+#linkList h3.archives {
|
|
|
169
|
+ background: transparent url(h5.gif) no-repeat top left;
|
|
|
170
|
+ margin: 25px 0 5px 0;
|
|
|
171
|
+ width:57px;
|
|
|
172
|
+ height: 14px;
|
|
|
173
|
+ }
|
|
|
174
|
+#linkList h3.archives span {
|
|
|
175
|
+ display:none
|
|
|
176
|
+ }
|
|
|
177
|
+#linkList h3.resources {
|
|
|
178
|
+ background: transparent url(h6.gif) no-repeat top left;
|
|
|
179
|
+ margin: 25px 0 5px 0;
|
|
|
180
|
+ width:63px;
|
|
|
181
|
+ height: 10px;
|
|
|
182
|
+ }
|
|
|
183
|
+#linkList h3.resources span {
|
|
|
184
|
+ display:none
|
|
|
185
|
+ }
|
|
|
186
|
+
|
|
|
187
|
+
|
|
|
188
|
+#linkList ul {
|
|
|
189
|
+ margin: 0;
|
|
|
190
|
+ padding: 0;
|
|
|
191
|
+ }
|
|
|
192
|
+#linkList li {
|
|
|
193
|
+ line-height: 2.5ex;
|
|
|
194
|
+ background: transparent url(cr1.gif) no-repeat top center;
|
|
|
195
|
+ display: block;
|
|
|
196
|
+ padding-top: 5px;
|
|
|
197
|
+ margin-bottom: 5px;
|
|
|
198
|
+ list-style-type: none;
|
|
|
199
|
+ }
|
|
|
200
|
+#linkList li a:link {
|
|
|
201
|
+ color: #988F5E;
|
|
|
202
|
+ }
|
|
|
203
|
+#linkList li a:visited {
|
|
|
204
|
+ color: #B3AE94;
|
|
|
205
|
+ }
|
|
|
206
|
+
|
|
|
207
|
+
|
|
|
208
|
+#extraDiv1 {
|
|
|
209
|
+ background: transparent url(cr2.gif) top left no-repeat;
|
|
|
210
|
+ position: absolute;
|
|
|
211
|
+ top: 40px;
|
|
|
212
|
+ right: 0;
|
|
|
213
|
+ width: 148px;
|
|
|
214
|
+ height: 110px;
|
|
|
215
|
+ }
|
|
|
216
|
+.accesskey {
|
|
|
217
|
+ text-decoration: underline;
|
|
|
218
|
+ }
|