nickjillings@1392: /* nickjillings@1392: * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own! nickjillings@1392: * nickjillings@1392: */ nickjillings@1392: body { nickjillings@1392: /* Set the background colour (note US English spelling) to grey*/ nickjillings@1392: background-color: #ddd nickjillings@1392: } nickjillings@1392: nickjillings@1392: div.pageTitle { nickjillings@1392: width: auto; nickjillings@1392: height: 20px; nickjillings@1392: margin-top: 20px; nickjillings@1392: } nickjillings@1392: nickjillings@1392: div.pageTitle span{ nickjillings@1392: font-size: 1.5em; nickjillings@1392: } nickjillings@1392: nickjillings@1392: div.testHalt { nickjillings@1392: /* Specify any colouring during the test halt for pre/post questions */ nickjillings@1392: background-color: rgba(0,0,0,0.5); nickjillings@1392: /* Don't mess with this bit */ nickjillings@1392: z-index: 2; nickjillings@1392: width: 100%; nickjillings@1392: height: 100%; nickjillings@1392: position: absolute; nickjillings@1392: left: 0px; nickjillings@1392: top: 0px; nickjillings@1392: } nickjillings@1392: nickjillings@1392: button { nickjillings@1392: /* Specify any button structure or style */ nickjillings@1392: min-width: 20px; nickjillings@1392: background-color: #ddd nickjillings@1392: } nickjillings@1392: nickjillings@1439: div#slider-holder { nickjillings@1439: height: inherit; nickjillings@1439: position: absolute; nickjillings@1439: top: 125px; nickjillings@1439: left: 0px; nickjillings@1439: z-index: 2; nickjillings@1439: } nickjillings@1439: nickjillings@1439: div#scale-holder { nickjillings@1439: height: inherit; nickjillings@1439: position: absolute; nickjillings@1439: top: 125px; nickjillings@1439: left: 0px; nickjillings@1439: z-index: 3; nickjillings@1439: } nickjillings@1392: nickjillings@1392: div.track-slider { nickjillings@1392: float: left; nickjillings@1392: width: 94px; nickjillings@1392: border: solid; nickjillings@1392: border-width: 1px; nickjillings@1392: border-color: black; nickjillings@1392: padding:2px; nickjillings@1439: margin-left: 50px; nickjillings@1392: } nickjillings@1392: nickjillings@1393: div.track-slider-playing { nickjillings@1393: background-color: #FFDDDD; nickjillings@1393: } nickjillings@1393: nickjillings@1393: input.track-slider-range { nickjillings@1437: margin: 2px 0px; nickjillings@1393: } nickjillings@1393: nickjillings@1392: input[type=range][orient=vertical] nickjillings@1392: { nickjillings@1392: writing-mode: bt-lr; /* IE */ nickjillings@1392: -webkit-appearance: slider-vertical; /* WebKit */ nickjillings@1392: width: 8px; nickjillings@1392: padding: 0 5px; nickjillings@1396: color: rgb(255, 144, 144); nickjillings@1437: } nickjillings@1437: nickjillings@1437: input[type=range]::-webkit-slider-runnable-track { nickjillings@1437: width: 8px; nickjillings@1437: cursor: pointer; nickjillings@1437: background: #fff; nickjillings@1437: border-radius: 4px; nickjillings@1437: border: 1px solid #000; nickjillings@1437: } nickjillings@1437: nickjillings@1437: input[type=range]::-moz-range-track { nickjillings@1437: width: 8px; nickjillings@1437: cursor: pointer; nickjillings@1437: background: #fff; nickjillings@1437: border-radius: 4px; nickjillings@1437: border: 1px solid #000; nickjillings@1437: } nickjillings@1437: nickjillings@1437: input.track-slider-not-moved[type=range]::-webkit-slider-runnable-track { nickjillings@1437: background: #aaa; nickjillings@1437: } nickjillings@1437: nickjillings@1437: input.track-slider-not-moved[type=range]::-moz-range-track { nickjillings@1437: background: #aaa; nickjillings@1437: } nickjillings@1437: nickjillings@1437: input[type=range]::-moz-range-thumb { nickjillings@1437: margin-left: -7px; nickjillings@1437: cursor: pointer; nickjillings@1437: margin-top: -1px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */ nickjillings@1437: box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */ nickjillings@1437: } nickjillings@1437: nickjillings@1437: input[type=range]::-webkit-slider-thumb { nickjillings@1437: margin-left: -7px; nickjillings@1437: cursor: pointer; nickjillings@1437: margin-top: -1px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */ nickjillings@1437: box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */ nickjillings@1392: }