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
|
/*
OpenDb 0.51-dev3+ Orange theme style sheet
*/
/* OpenDb statistics specific options - these are not CSS options, but
will be parsed by OpenDb when generating the stats graphs */
.OpendbStatsGraphs { image-size: 175; font-size: 2; transparent: true; }
/* Defaults for Headings and Body, of which OpenDb uses quite a bit */
BODY { background-color:#FFD000; color:#000090 }
H1 { color: #0000FF; font-weight:bold; font-style: italic; font-family:Verdana, Arial; font-size:xx-large }
H2 { color: #0000FF; font-weight:bold; font-style: italic; font-family:Verdana, Arial; font-size:x-large }
H3 { color: #0000FF; font-style: italic; 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:#0000FF }
A:hover { text-decoration:underline; }
/* 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:#FFFF00; }
.top2 { background-color:#ADD8E6; }
/* Used in listings to format the listing links (Refresh,Edit,Delete, etc) */
.smlink { color:#0000FF; font-family:Verdana, Arial; font-size:small }
/* Various messages */
.success { color:#FFFF00; font-weight:bold; font-family:Verdana, Arial }
/* Details of successful completion */
.smsuccess { color:#FFFF00; 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:#0000FF; font-family:Verdana, Arial; font-size:x-small }
/* Input field prompt cell definition */
.prompt { color:#FF0000; background-color:#FFFF00; font-weight:bold;font-family:Verdana }
/* Input field data cell definition */
.data { background-color:#ADD8E6; font-family:Verdana; font-size:small }
/* For headers in pages, which might include order_by links, etc */
.navbar { background-color:#FFC000; color:#0000FF; font-weight:bold; font-family:Verdana; text-align:center}
.menubar,.menutext { background-color:#FFC000; }
.menutext { color:#0000FF; font-family:Verdana, Arial }
select.menutext,input.menutext { font-weight:bold; color:#0000FF }
/* input.menutext:hover { text-decoration: underline; } */
/* Navigation links - such as Next / Previous and Page numbers, and other nav links */
.footer { color:#0000FF; font-family:Verdana, Arial; font-size:x-small }
select.footer { background-color:#FFD000; }
/* All help text */
.help { color:#0000FF; font-family:Verdana, Arial; font-size:x-small }
/* Used to display small text for messages, etc */
.fineprint { color:#0000FF; font-family:Verdana, Arial; font-size:xx-small }
/* Most text not defined otherwise uses this class to display */
.colortext { color:#0000FF; font-family:Verdana, Arial }
/* Stats images */
/* img.graph { border-width: 0 } */
|