annotate mushra.css @ 755:c73996a0fb21

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