annotate mushra.css @ 1404:3b9f0bc523d6

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