From: Gavin L. v. a. <we...@ma...> - 2005-12-21 23:24:16
|
Log Message: ----------- Gateway update: add a gateway.css style file for gateway styles Added Files: ----------- webwork2/htdocs/css: gateway.css Revision Data ------------- --- /dev/null +++ htdocs/css/gateway.css @@ -0,0 +1,60 @@ +/******************/ +/* gateway styles */ +/******************/ + +/* update margins to reflect missing left column */ +#breadcrumbs { margin-left: .5em } +#content { margin-left: .5em } +#footer { margin-left: .5em } + +div.gwMessage { background-color:#dddddd; color: black; } +div.gwTiming { + background-color:#ddddff; + color: black; + margin-top: 10px; + margin-bottom: 0px; +} +div.gwWarning { background-color:#ffffdd; color: black; } + +span.resultsWithError { background-color: #ffcccc; color: black; } +span.resultsWithoutError { background-color: #66ff99; color: black; } +div.gwCorrect { background-color: #66ff99; color: black; } +div.gwIncorrect { background-color: #ff9999; color: black; } + +div.gwProblem { + clear: both; + background-color: #E0E0E0; + color: black; + padding: 3px; + border: solid black 1px; +} +div.gwSoln { +/* background-color: #e0e0ff; */ + background-color: transparent; + color: black; +/* padding: 2px; */, +/* border: dashed black 1px; */ +} +div.gwSoln b { color: navy; } + +p.gwPreview { + font-size: smaller; + text-align: right; + margin-top: 0px; + margin-bottom: 0px; +} + +table.gwAttemptResults { + border-width: 0px; +} +table.gwAttemptResults td.label { + font-weight: bold; + background-color: transparent; + color: navy; +} +table.gwAttemptResults td.output { + padding: 2px; + border: solid black 1px; + background-color: #eeeeee; +} + |