annotate mushra.css @ 821:e266584705fc

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