annotate mushra.css @ 1418:6d47c4ed0e67

Scripts: generate_report.py fix (wrong directory passed on to score_plot.py)
author Brecht De Man <b.deman@qmul.ac.uk>
date Tue, 08 Dec 2015 22:13:14 +0100
parents 1de4c0257fa4
children 6e01da7f9f92
rev   line source
b@1402 1 /*
b@1402 2 * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own!
b@1402 3 *
b@1402 4 */
b@1402 5 body {
b@1402 6 /* Set the background colour (note US English spelling) to grey*/
b@1402 7 background-color: #ddd
b@1402 8 }
b@1402 9
b@1402 10 div.pageTitle {
b@1402 11 width: auto;
b@1402 12 height: 20px;
b@1402 13 margin-top: 20px;
b@1402 14 }
b@1402 15
b@1402 16 div.pageTitle span{
b@1402 17 font-size: 1.5em;
b@1402 18 }
b@1402 19
b@1402 20 div.testHalt {
b@1402 21 /* Specify any colouring during the test halt for pre/post questions */
b@1402 22 background-color: rgba(0,0,0,0.5);
b@1402 23 /* Don't mess with this bit */
b@1402 24 z-index: 2;
b@1402 25 width: 100%;
b@1402 26 height: 100%;
b@1402 27 position: absolute;
b@1402 28 left: 0px;
b@1402 29 top: 0px;
b@1402 30 }
b@1402 31
b@1402 32 button {
b@1402 33 /* Specify any button structure or style */
b@1402 34 min-width: 20px;
b@1402 35 background-color: #ddd
b@1402 36 }
b@1402 37
b@1402 38
b@1402 39 div.track-slider {
b@1402 40 float: left;
b@1402 41 width: 94px;
b@1402 42 border: solid;
b@1402 43 border-width: 1px;
b@1402 44 border-color: black;
b@1402 45 padding:2px;
b@1402 46 }
b@1402 47
b@1402 48 input[type=range][orient=vertical]
b@1402 49 {
b@1402 50 writing-mode: bt-lr; /* IE */
b@1402 51 -webkit-appearance: slider-vertical; /* WebKit */
b@1402 52 width: 8px;
b@1402 53 height: 175px;
b@1402 54 padding: 0 5px;
b@1402 55 }