| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,281 @@ |
| 1 |
+/* Some definitions used everywhere */ |
|
| 2 |
+body {
|
|
| 3 |
+ margin: 0px; |
|
| 4 |
+ padding: 0px; |
|
| 5 |
+ background-color: #BDCC6D; |
|
| 6 |
+ color: #3B4325; |
|
| 7 |
+ line-height: 1.2em; |
|
| 8 |
+ font-family: verdana, arial, san-serif; |
|
| 9 |
+ font-size: 90%; |
|
| 10 |
+} |
|
| 11 |
+ |
|
| 12 |
+/* links */ |
|
| 13 |
+a {
|
|
| 14 |
+ color: #333; |
|
| 15 |
+ font-weight: bold; |
|
| 16 |
+ text-decoration: underline; |
|
| 17 |
+} |
|
| 18 |
+/* hovering links */ |
|
| 19 |
+a:hover {
|
|
| 20 |
+ text-decoration: underline; |
|
| 21 |
+} |
|
| 22 |
+ |
|
| 23 |
+/*small fonts */ |
|
| 24 |
+.small {font-size: 80%;}
|
|
| 25 |
+ |
|
| 26 |
+/*rounded top corners used in various places */ |
|
| 27 |
+.tl {background: #758F39 url(images/tl.gif) no-repeat top left;}
|
|
| 28 |
+.tr {background: url(images/tr.gif) no-repeat top right;}
|
|
| 29 |
+ |
|
| 30 |
+/* Left and right floats used in some blocks */ |
|
| 31 |
+.left {float: left; width: 55%; text-align: left;}
|
|
| 32 |
+.right {float: right; width: 30%; text-align: right;}
|
|
| 33 |
+.clear {clear: both;}
|
|
| 34 |
+ |
|
| 35 |
+/* the background of the banner. this allows us to make the banner fit the width of the page, no matter how wide */ |
|
| 36 |
+#bannerback {
|
|
| 37 |
+ height: 150px; |
|
| 38 |
+ margin: 0px; |
|
| 39 |
+ background: #B5C9BA url('images/back.gif') repeat top left;
|
|
| 40 |
+} |
|
| 41 |
+ |
|
| 42 |
+/* the image in the banner */ |
|
| 43 |
+#banner {
|
|
| 44 |
+ height: 150px; |
|
| 45 |
+ margin: 0px; |
|
| 46 |
+ background: url('images/elegance.jpg') no-repeat top left;
|
|
| 47 |
+} |
|
| 48 |
+ |
|
| 49 |
+/* search engines like headings so we will use them for sitename and |
|
| 50 |
+slogan, but we don't want them to appear on the page and mess up our banner */ |
|
| 51 |
+ #banner h1, #banner h2 {display: none;}
|
|
| 52 |
+ |
|
| 53 |
+/* The location of the div containing the skin change drop menu in the banner area */ |
|
| 54 |
+#skin {
|
|
| 55 |
+ position: absolute; |
|
| 56 |
+ right: 50px; |
|
| 57 |
+ top: 25px; |
|
| 58 |
+} |
|
| 59 |
+/* The location of the div containing the RSS link in the banner area */ |
|
| 60 |
+#rss {
|
|
| 61 |
+ position: absolute; |
|
| 62 |
+ right: 50px; |
|
| 63 |
+ top: 55px; |
|
| 64 |
+} |
|
| 65 |
+ |
|
| 66 |
+/* the following defines your menu below the banner div */ |
|
| 67 |
+#menu {
|
|
| 68 |
+ position: absolute; |
|
| 69 |
+ top: 98px; |
|
| 70 |
+ right: 0px; |
|
| 71 |
+ text-align: right; |
|
| 72 |
+ color: #517059; |
|
| 73 |
+ font-weight: bold; |
|
| 74 |
+ font-size: 95%; |
|
| 75 |
+} |
|
| 76 |
+ |
|
| 77 |
+/*The rounded off left edge image.*/ |
|
| 78 |
+#menu ul {
|
|
| 79 |
+ margin: 0px; |
|
| 80 |
+ background: #758F39 url(images/bl.gif) no-repeat bottom left; padding: 5px; |
|
| 81 |
+} |
|
| 82 |
+ |
|
| 83 |
+#menu ul li {display: inline; padding: 1px;}
|
|
| 84 |
+ |
|
| 85 |
+/* links in the menu */ |
|
| 86 |
+#menu a {
|
|
| 87 |
+ color: #CEDCAE; |
|
| 88 |
+ font-weight: bold; |
|
| 89 |
+ font-size: 95%; |
|
| 90 |
+ text-decoration: none; |
|
| 91 |
+ text-transform: uppercase; |
|
| 92 |
+ border-right: 1px solid #CEDCAE; |
|
| 93 |
+ padding: 0px 5px; |
|
| 94 |
+} |
|
| 95 |
+ |
|
| 96 |
+/* Hovered links in the menu */ |
|
| 97 |
+#menu a:hover {
|
|
| 98 |
+ color: #CEDCAE; |
|
| 99 |
+ background: #93B348; |
|
| 100 |
+ border-right: 1px solid #CEDCAE; |
|
| 101 |
+} |
|
| 102 |
+ |
|
| 103 |
+/* The link for the currently displayed page in the menu */ |
|
| 104 |
+#menu #current {text-decoration: underline;}
|
|
| 105 |
+ |
|
| 106 |
+/* end menu setup */ |
|
| 107 |
+ |
|
| 108 |
+ |
|
| 109 |
+/* the footer box at the bottom of the page */ |
|
| 110 |
+#footer {
|
|
| 111 |
+ padding: 0px; |
|
| 112 |
+ border-top: 5px solid #758F39; |
|
| 113 |
+ text align: center; |
|
| 114 |
+ clear: both; |
|
| 115 |
+} |
|
| 116 |
+ |
|
| 117 |
+/* End universal page setup */ |
|
| 118 |
+ |
|
| 119 |
+ |
|
| 120 |
+/*Index page*/ |
|
| 121 |
+/*left and right columns--line-height fixes a disappearing float IE bug */ |
|
| 122 |
+#leftindex {
|
|
| 123 |
+ width: 25%; |
|
| 124 |
+ float: left; |
|
| 125 |
+ line-height: 1.3em; |
|
| 126 |
+} |
|
| 127 |
+ |
|
| 128 |
+#rightindex {
|
|
| 129 |
+ width: 25%; |
|
| 130 |
+ float: right; |
|
| 131 |
+ line-height: 1.3em; |
|
| 132 |
+} |
|
| 133 |
+ |
|
| 134 |
+#middleindex {margin: 3px 26%;}
|
|
| 135 |
+ |
|
| 136 |
+/* This controls the look of the blocks on a few pages */ |
|
| 137 |
+/* The box around the block */ |
|
| 138 |
+.block {margin: 0px 0px 15px 0px;}
|
|
| 139 |
+ |
|
| 140 |
+/* The block's title */ |
|
| 141 |
+.block .title {
|
|
| 142 |
+ color: #CEDCAE; |
|
| 143 |
+ font-weight: bold; |
|
| 144 |
+ text-align: center; |
|
| 145 |
+ padding: 4px; |
|
| 146 |
+} |
|
| 147 |
+ |
|
| 148 |
+.block .newstitle, .block .storytitle {
|
|
| 149 |
+ color: #CEDCAE; |
|
| 150 |
+ font-weight: bold; |
|
| 151 |
+ text-align: left; |
|
| 152 |
+ padding: 4px 7px 0px 7px; |
|
| 153 |
+} |
|
| 154 |
+ |
|
| 155 |
+/* The block's content */ |
|
| 156 |
+.block .content {
|
|
| 157 |
+ background: #FFFFFF; |
|
| 158 |
+ border-top: 5px solid #758F39; |
|
| 159 |
+ border-right: 1px solid #758F39; |
|
| 160 |
+ border-bottom: 5px solid #758F39; |
|
| 161 |
+ border-left: 1px solid #758F39; |
|
| 162 |
+ padding: 5px; |
|
| 163 |
+} |
|
| 164 |
+ |
|
| 165 |
+.block .bottom {
|
|
| 166 |
+ color: #CEDCAE; |
|
| 167 |
+ background: #758F39; |
|
| 168 |
+ padding: 2px 5px; |
|
| 169 |
+ font-weight: bold; |
|
| 170 |
+ font-size: 80%; |
|
| 171 |
+} |
|
| 172 |
+ |
|
| 173 |
+ |
|
| 174 |
+ |
|
| 175 |
+/*main content on the page */ |
|
| 176 |
+#mainpage {margin: 0px 2%;}
|
|
| 177 |
+ |
|
| 178 |
+ |
|
| 179 |
+ |
|
| 180 |
+ |
|
| 181 |
+ |
|
| 182 |
+#pagetitle, .sectionheader {
|
|
| 183 |
+ text-align: center; |
|
| 184 |
+ font-weight: bold; |
|
| 185 |
+ font-size: 105%; |
|
| 186 |
+ margin: 10px; |
|
| 187 |
+} |
|
| 188 |
+ |
|
| 189 |
+/* Where there's a list of alphabet links #alphabet controls their look. Just to make things simpler #pagelinks controls the look of the links at the bottom of multi-page results and will be set here too. Generally, they look alike.*/ |
|
| 190 |
+#alphabet, #pagelinks {
|
|
| 191 |
+ text-align: center; |
|
| 192 |
+ font-size: 13px; |
|
| 193 |
+ margin: 1em 0; |
|
| 194 |
+ line-height: 25px; |
|
| 195 |
+} |
|
| 196 |
+ |
|
| 197 |
+#alphabet a, #pagelinks a {
|
|
| 198 |
+ background: #758F39; |
|
| 199 |
+ border: 1px solid #000; |
|
| 200 |
+ padding: 2px 4px; |
|
| 201 |
+ margin: 0; |
|
| 202 |
+ text-decoration: none; |
|
| 203 |
+ color: #CEDCAE; |
|
| 204 |
+} |
|
| 205 |
+ |
|
| 206 |
+#alphabet a:hover, #pagelinks a:hover {
|
|
| 207 |
+ background: #CEDCAE; |
|
| 208 |
+ border: 1px solid #000; |
|
| 209 |
+ padding: 2px 4px; |
|
| 210 |
+ margin: 0; |
|
| 211 |
+ text-decoration: none; |
|
| 212 |
+ color: #758F39; |
|
| 213 |
+} |
|
| 214 |
+ |
|
| 215 |
+#alphabet #currentletter, #pagelinks #currentpage {
|
|
| 216 |
+ background: #CEDCAE; |
|
| 217 |
+ color: #758F39; |
|
| 218 |
+ border: 1px solid #000; |
|
| 219 |
+ padding: 2px 4px; |
|
| 220 |
+ margin: 0; |
|
| 221 |
+ text-decoration: none; |
|
| 222 |
+ font-weight: bold; |
|
| 223 |
+} |
|
| 224 |
+ |
|
| 225 |
+#sortform {text-align: center; margin: 10px;}
|
|
| 226 |
+ |
|
| 227 |
+/* To center column divs so they don't look so off-balance. This is for 2 columns. You'll want to play with the width if you have more */ |
|
| 228 |
+#columncontainer {
|
|
| 229 |
+ margin: 5px auto; |
|
| 230 |
+ width: 60%; |
|
| 231 |
+ min-width: 60%; |
|
| 232 |
+ text-align: center; |
|
| 233 |
+} |
|
| 234 |
+html>body #columncontainer {text-align: left;}
|
|
| 235 |
+ |
|
| 236 |
+.jumpmenu, #sort {margin: 5px;}
|
|
| 237 |
+ |
|
| 238 |
+.notes {margin: 5px auto; width: 65%; min-width: 65%; text-align: center;}
|
|
| 239 |
+html>body .notes {text-align: left;}
|
|
| 240 |
+ |
|
| 241 |
+#story {padding: 0px 10px;}
|
|
| 242 |
+ |
|
| 243 |
+The following declarations control the tabs */ |
|
| 244 |
+#tabs {
|
|
| 245 |
+ margin: 0; |
|
| 246 |
+ padding: 0; |
|
| 247 |
+ background: #758F39; |
|
| 248 |
+ margin-bottom: 1em; |
|
| 249 |
+} |
|
| 250 |
+ |
|
| 251 |
+ |
|
| 252 |
+#tabs ul {
|
|
| 253 |
+ padding: 3px 0; margin: 0; |
|
| 254 |
+ border-bottom: 1px solid #000; |
|
| 255 |
+ font: bold 12px Verdana, sans-serif; |
|
| 256 |
+} |
|
| 257 |
+ |
|
| 258 |
+#tabs li {
|
|
| 259 |
+ list-style: none; |
|
| 260 |
+ margin: 0; |
|
| 261 |
+ display: inline; |
|
| 262 |
+} |
|
| 263 |
+ |
|
| 264 |
+#tabs li a {
|
|
| 265 |
+ padding: 3px 0.5em; |
|
| 266 |
+ margin-left: 3px; |
|
| 267 |
+ border: 1px solid #000; |
|
| 268 |
+ border-bottom: none; |
|
| 269 |
+ background: #214263; |
|
| 270 |
+ text-decoration: none; |
|
| 271 |
+ color: #CEDCAE; |
|
| 272 |
+} |
|
| 273 |
+ |
|
| 274 |
+#tabs li a:hover {
|
|
| 275 |
+ color: #000000; |
|
| 276 |
+ background: #369; |
|
| 277 |
+ border-color: #000; |
|
| 278 |
+} |
|
| 279 |
+ |
|
| 280 |
+#tabs #active a {background:#BDCC6D; color: #758F39;}
|
|
| 281 |
+ |