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
|
/*
OpenDb 0.51-dev3+ default theme style sheet
*/
/* Defaults for Headings and Body, of which OpenDb uses quite a bit */
BODY { background-color:#FFFFFF; color:#000000 }
H1 { color: #D0DCE0; font-weight:bold;font-family:Verdana, Arial; font-size:xx-large }
H2 { color: #6D78AB; font-weight:bold;font-family:Verdana, Arial; font-size:x-large }
H3 { color: #6D78AB; font-family:Verdana, Arial; font-size:large }
/* Hack for IE to get rid of newline after form closes */
form { display: inline; }
/* Defaults for Links */
A:link,A:visited,A:active { text-decoration:none; color:#004080 }
A:hover { text-decoration:underline; color:#FF0000 }
/* Include underline for item_display attribute list links */
A.listlink,A.whatsnew,A.popuplink { text-decoration:underline; }
/* These two are for the listings, where the colors alternate. */
.top { background-color:#6D78AB }
.top2 { background-color:#8E9DE0 }
/* Used in listings to format the listing links (Refresh,Edit,Delete, etc) */
.smlink { color:#123456; font-family:Verdana, Arial; font-size:small }
/* Various messages */
.success { color:#6D78AB; font-weight:bold; font-family:Verdana, Arial }
/* Details of success ful completion */
.smsuccess { color:#123456; font-family:Verdana, Arial; font-size:small }
/* All error messages are displayed using this class */
.error { color:#FF0000; font-weight:bold; font-family:Verdana, Arial }
/* Details of errors are displayed with this class */
.smerror { color:#FF0000; font-weight:bold; font-family:Verdana, Arial; font-size:small }
/* OpenDb Alphalist link style */
.alphalist { color:#123456; font-family:Verdana, Arial; font-size:x-small }
/* Input field, prompt cell definition */
.prompt { color:#FFFFFF; background-color: #6D78AB; font-weight:bold; font-family:Verdana }
/* Input field data cell definition */
.data { background-color:#8E9DE0; font-family:Verdana; font-size:small }
/* For headers in pages, which might include order_by links, etc */
.navbar { background-color:#D0DCE0; color:#000000; font-weight:bold; font-family:Verdana; text-align:center }
.menubar,.menutext { background-color:#D0DCE0; }
.menutext { color:#000000; font-family:Verdana, Arial }
select.menutext,input.menutext { font-weight:bold; color:#004080; }
/* input.menutext:hover { text-decoration: underline; color:#FF0000; } */
/* Navigation links - such as Next / Previous and Page numbers, and other nav links */
.footer { color:#123456; font-family:Verdana, Arial; font-size:x-small }
/* All help text */
.help { color:#123456; font-family:Verdana, Arial; font-size:x-small }
/* Used to display small text for messages, etc */
.fineprint { color:#000080; font-family:Verdana, Arial; font-size:xx-small }
/* Most text not defined otherwise uses this class to display */
.colortext { color:#6D78AB; font-family:Verdana, Arial }
/* Stats images - Netscape 4.x does not work very well with this attribute! */
/* img.graph { border-width: 0 } */
|