/* ----------------------------------------------------------------------------- * MAIN LAYOUT */ * { color: #E7E1CC; font-family: sans-serif; } body { background-color: #1A1A1A } #main-table { width: 100%; height: 100%; padding: 10px; } #top-row { height: 30pt; padding: 0px; } #main-row { height: 100%; } #main-cell { background-color: #252424; padding: 5pt; } #main-frame { border: none; height: 100%; width: 100%; } #logo { font-size: 16pt; font-weight: bold; } /* ----------------------------------------------------------------------------- * GROUP HEADERS */ /* A group button at the top */ .header { background-color: #3D2C2C; padding: 4pt 6pt; font-size: 8pt; font-weight: bold; -moz-border-radius: 3pt; cursor: pointer; margin-right: 5pt; } /* Our sample header (which gets copied for each group) is hidden */ #header-template { visibility: hidden; } /* ----------------------------------------------------------------------------- * GRAPHS/FRAME */ body.in-frame { background-color: #252424; } img.graph { margin: 7px; } #zoom { cursor: crosshair; position: absolute; background-color: red; display: none; top: 0px; left: 0px; width: 10px; height: 10px; filter: alpha(opacity=40); -moz-opacity: 0.5; -khtml-opacity: 0.5; opacity: 0.5; } /* ----------------------------------------------------------------------------- * ACTION BAR */ #actions { background-color: #252424; position: absolute; left: 50px; top: 50px; height: 120px; display: none; } .action { margin: 3px; cursor: pointer; /* COMPAT: IE doesn't support :hover on anything but links so transparency has no use whatsover */ -moz-opacity: 0.75; -khtml-opacity: 0.75; opacity: 0.75; } img.action:hover { -moz-opacity: 1; -khtml-opacity: 1; opacity: 1; } #goto { position: absolute; padding: 10px; top: 0px; left: 0px; background-color: #252424; display: none; } #goto-select { border: 1px solid black; font-size: 8pt; font-weight: normal; width: 120px; background-color: #252424; } /* ----------------------------------------------------------------------------- * MISC */ .error { background-color: #F3BDBD; border: 1px solid red; padding: 3pt; font-size: 8pt; color: black; }