annotate mushra.css @ 1511:68ed6e4ed3de

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