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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
|
/*------------------------------------------------*/
/* */
/* WWWOFFLE Version 2.9 - Style Sheet */
/* */
/* Using CSS2 - (Cascading Style Sheets, level 2) */
/* */
/*------------------------------------------------*/
/*-------------------------*/
/* Generic HTML formatting */
/*-------------------------*/
/* Do not use any totally generic HTML formatting. It will apply to
all web pages when the HTMLModify add-cache-info option is used. */
/*----------------------------------*/
/* WWWOFFLE generic HTML formatting */
/*----------------------------------*/
/* The WWWOFFLE internal messages are all contained within a BODY
element with an id of "wwwoffle-message". Formatting of the HTML
should therefore be only for elements contained within such a body.
Use 'BODY.wwwoffle-message P { ... }' instead of 'P { ... }'. */
BODY.wwwoffle-message /* default values */
{
background-color: white;
color: black;
}
/*-----------------------------------*/
/* WWWOFFLE specific HTML formatting */
/*-----------------------------------*/
/* WWWOFFLE header at the top of internal pages */
DIV.wwwoffle-header /* default values */
{
font-family: sans-serif;
font-style: normal;
font-weight: bold;
font-size: large;
padding: 5px;
border-bottom: solid;
margin: 5px;
}
DIV.wwwoffle-header B /* Letters that spell out WWWOFFLE */
{
font-weight: bolder;
font-size: x-large;
}
HR.wwwoffle-header /* Horizontal rule, not needed, see DIV */
{
display: none;
}
/* WWWOFFLE footer at the bottom of internal pages */
DIV.wwwoffle-footer /* default values */
{
font-family: sans-serif;
font-style: normal;
font-weight: bold;
font-size: large;
padding: 5px;
border-top: solid;
margin: 5px;
}
DIV.wwwoffle-footer A /* Links are always blue */
{
color: blue;
}
HR.wwwoffle-footer /* Horizontal rule, not needed, see DIV */
{
display: none;
}
/* WWWOFFLE buttons at the top of the index pages */
DIV.wwwoffle-index-buttons-top /* default values */
{
text-align: center;
padding-bottom: 5px;
font-family: sans-serif;
font-style: normal;
font-size: medium;
}
DIV.wwwoffle-index-buttons-top A /* Unselected options (links) are always blue */
{
color: blue;
font-weight: normal;
}
DIV.wwwoffle-index-buttons-top STRONG /* Selected options are bold */
{
font-weight: bold;
}
HR.wwwoffle-index-buttons-top /* Horizontal rule, not needed, see DIV */
{
display: none;
}
/* WWWOFFLE buttons at the bottom of the index pages */
DIV.wwwoffle-index-buttons-bottom /* default values */
{
text-align: center;
padding-top: 5px;
font-family: sans-serif;
font-style: normal;
font-size: medium;
}
DIV.wwwoffle-index-buttons-bottom A /* Unselected options (links) are always blue */
{
color: blue;
font-weight: normal;
}
DIV.wwwoffle-index-buttons-bottom STRONG /* Selected options are bold */
{
font-weight: bold;
}
HR.wwwoffle-index-buttons-bottom /* Horizontal rule, not needed, see DIV */
{
display: none;
}
/* WWWOFFLE messages and sub-parts within web pages */
DIV.wwwoffle-message /* Style for main part of message */
{
text-align: center;
}
DIV.wwwoffle-nav /* Navigation links */
{
margin: 0.5em;
}
P.wwwoffle-url /* Style for URLs in messages */
{
font-family: monospace;
font-weight: bold;
font-size: large;
padding: 0.25em;
margin: 0.25em;
}
P.wwwoffle-error /* Style for Errors in messages */
{
font-family: monospace;
font-weight: bold;
font-size: large;
padding: 0.25em;
margin: 0.25em;
}
/* WWWOFFLE help messages within web pages */
H2.wwwoffle-inline-help /* Style of heading */
{
font-style: italic
}
DIV.wwwoffle-inline-help /* default values for body text */
{
font-style: italic
}
/* WWWOFFLE footer added at the bottom of web pages by HTML modify options */
DIV.wwwoffle-addinfo /* default values */
{
/* Undo any box manipulation CSS inherited from page (CSS 2.0 section 8) */
margin: 0;
padding: 0;
border: 0;
/* Undo any visual formatting CSS inherited from page (CSS 2.0 section 9) */
display: block;
position: static;
float: none;
clear: both;
z-index: 999;
direction: ltr;
unicode-bidi: normal;
/* Undo any visual formatting CSS inherited from page (CSS 2.0 section 10) */
width: auto;
height: auto;
line-height: normal;
vertical-align: baseline;
/* Undo any color manipulation CSS inherited from page (CSS 2.0 section 14) */
color: black;
background: white;
/* Undo any font manipulation CSS inherited from page (CSS 2.0 section 15) */
font-family: sans-serif;
font-style: normal;
font-variant: normal;
font-weight: normal;
font-stretch: normal;
font-size: small;
font-size-adjust: none;
/* Undo any text manipulation CSS inherited from page (CSS 2.0 section 16) */
text-indent: 0;
text-align: center;
text-decoration: none;
text-shadow: none;
letter-spacing: normal;
word-spacing: normal;
text-transform: none;
white-space: normal;
/* Undo any user interface manipulation CSS inherited from page (CSS 2.0 section 16) */
outline: none;
/* Border to make it stand out */
border: solid;
padding: 0.25em;
/* Fixed position at the bottom of each screen */
/*
margin-bottom: 0;
position: fixed;
height: 2em;
top: auto;
right: 0;
bottom: 0;
left: 0;
*/
}
DIV.wwwoffle-addinfo A /* Links are always blue */
{
/* Undo any box manipulation CSS inherited from page (CSS 2.0 section 8) */
margin: 0;
padding: 0;
border: 0;
/* Undo any color manipulation CSS inherited from page (CSS 2.0 section 14) */
color: blue;
background: white;
/* Undo any font manipulation CSS inherited from page (CSS 2.0 section 15) */
font-family: sans-serif;
font-style: normal;
font-variant: normal;
font-weight: normal;
font-stretch: normal;
font-size: small;
font-size-adjust: none;
/* Undo any text manipulation CSS inherited from page (CSS 2.0 section 16) */
text-indent: 0;
text-align: center;
text-decoration: none;
text-shadow: none;
letter-spacing: normal;
word-spacing: normal;
text-transform: none;
white-space: normal;
}
DIV.wwwoffle-addinfo A:hover, DIV.wwwoffle-addinfo A:focus, DIV.wwwoffle-addinfo A:visited, DIV.wwwoffle-addinfo A:link
{
/* Undo any color manipulation CSS inherited from page (CSS 2.0 section 14) */
color: blue;
background: white;
}
HR.wwwoffle-addinfo /* Horizontal rule, not needed, see DIV */
{
display: none;
}
|