/* ** OSSP mct - Multiple Choice Test ** Copyright (c) 2002 Ralf S. Engelschall ** Copyright (c) 2002 The OSSP Project ** Copyright (c) 2002 Cable & Wireless Deutschland ** ** This file is part of OSSP mct, a multiple choice test engine ** which can be found at http://www.ossp.org/pkg/tool/mct/. ** ** Permission to use, copy, modify, and distribute this software for ** any purpose with or without fee is hereby granted, provided that ** the above copyright notice and this permission notice appear in all ** copies. ** ** THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED ** WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF ** MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ** IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR ** CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF ** USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ** ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, ** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT ** OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ** SUCH DAMAGE. ** ** mct.css: multiple choice test cascading style sheet (language: CSS1) */ /* the outer border */ TD.mct-border { background: #000000; } /* the header area */ .mct-header { background: #000000; color: #ffffff; font-family: helvetica,lucida,arial,sans-serif; font-weight: bold; font-size: 150%; } .mct-header A { text-decoration: none; font-weight: bold; } .mct-header A:link { color: #ffffe0; } .mct-header A:visited { color: #ffffe0; } .mct-header A:hover { color: #ffffe0; text-decoration: underline; } /* the hint texts */ .mct-hint { color: #333366; font-family: helvetica,lucida,arial,sans-serif; font-weight: bold; } .mct-hint A { text-decoration: none; font-weight: bold; } .mct-hint A:link { color: #666699; } .mct-hint A:visited { color: #666699; } .mct-hint A:hover { color: #666699; text-decoration: underline; } /* the question area */ .mct-qt { font-family: helvetica,lucida,arial,sans-serif; font-size: 125%; } .mct-qt CODE { font-family: courier,courier-new,terminal,fixed,monospace; } .mct-qt A { text-decoration: none; } .mct-qt A:link { color: #666699; } .mct-qt A:visited { color: #666699; } .mct-qt A:hover { color: #666699; text-decoration: underline; } /* the choice area */ .mct-qc { font-family: helvetica,lucida,arial,sans-serif; } .mct-qc A { text-decoration: none; } .mct-qc A:link { color: #666699; } .mct-qc A:visited { color: #666699; } .mct-qc A:hover { color: #666699; text-decoration: underline; } /* the question and choice area background/foreground colors */ .mct-qt0 { background: #f0f0f0; } .mct-qt1 { background: #e0e0f0; } .mct-qc00 { background: #f0f0f0; } .mct-qc01 { background: #f8f8f8; } .mct-qc10 { background: #e0e0f0; } .mct-qc11 { background: #e8e8f8; } .mct-qcBAD { background: #cc3333; color: #ffffff; } .mct-qcCHEAT { background: #339933; color: #ffffff; } /* the action button area */ .mct-button { background: #000000; } .mct-button-switchnotes INPUT { background: #666666; border-color: #666666; color: #cccccc; } .mct-button-sendnotes INPUT { background: #666666; border-color: #666666; color: #cccccc; } .mct-button-hints INPUT { background: #666666; border-color: #666666; color: #cccccc; } .mct-button-bookmark INPUT { background: #666666; border-color: #666666; color: #cccccc; } .mct-button-mail INPUT { background: #666666; border-color: #666666; color: #cccccc; } .mct-button-restart INPUT { background: #666666; border-color: #666666; color: #cccccc; } .mct-button-undo INPUT { background: #666666; border-color: #666666; color: #cccccc; } .mct-button-rate INPUT { background: #c0c0f0; border-color: #c0c0f0; color: #000000; } /* the result text area */ .mct-result { background: #000000; color: #ffffff; font-family: helvetica,lucida,arial,sans-serif; font-size: 150%; } .mct-result-percent { color: #ccccff; font-weight: bold; } .mct-result A { text-decoration: none; font-weight: bold; } .mct-result A:link { color: #ffffe0; } .mct-result A:visited { color: #ffffe0; } .mct-result A:hover { color: #ffffe0; text-decoration: underline; } /* the footer area (program name and version) */ .mct-footer { background: #000000; color: #c0c0c0; font-family: helvetica,lucida,arial,sans-serif; font-weight: normal; } .mct-footer A { text-decoration: none; } .mct-footer A:hover { text-decoration: underline; } .mct-footer A:link { color: #c0c0c0; } .mct-footer A:visited { color: #c0c0c0; }