annotate mushra.css @ 1450:bc074d4ee760

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