annotate mushra.css @ 1482:81e2a7162d18

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