n@472: /* n@472: * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own! n@472: * n@472: */ n@472: body { n@472: /* Set the background colour (note US English spelling) to grey*/ n@472: background-color: #ddd n@472: } n@472: n@472: div.pageTitle { n@472: width: auto; n@472: height: 20px; n@472: margin: 10px 0px; n@472: } n@472: n@472: div.pageTitle span{ n@472: font-size: 1.5em; n@472: } n@472: n@472: div.testHalt { n@472: /* Specify any colouring during the test halt for pre/post questions */ n@472: background-color: rgba(0,0,0,0.5); n@472: /* Don't mess with this bit */ n@472: z-index: 2; n@472: width: 100%; n@472: height: 100%; n@472: position: absolute; n@472: left: 0px; n@472: top: 0px; n@472: } n@472: n@472: button { n@472: /* Specify any button structure or style */ n@472: min-width: 20px; n@472: background-color: #ddd n@472: } n@472: n@472: div#slider-holder { n@472: height: inherit; n@472: position: absolute; n@472: left: 0px; n@472: z-index: 3; n@472: margin-top:25px; n@472: } n@472: n@472: div#scale-holder { n@472: height: inherit; n@472: position: absolute; n@472: left: 0px; n@472: z-index: 2; n@472: } n@472: n@472: div#scale-text-holder { n@472: position:relative; n@472: float: left; n@472: } n@472: div.scale-text { n@472: position: absolute; n@472: font-size: 1.2em; n@472: } n@472: n@472: canvas#scale-canvas { n@472: position: relative; n@472: float: left; n@472: } n@472: n@472: div.track-slider { n@472: float: left; n@472: height: 94px; n@472: border: solid; n@472: border-width: 1px; n@472: border-color: black; n@472: padding:2px; n@472: margin-left: 94px; n@472: margin-bottom: 25px; n@472: } n@472: n@472: div.track-slider-title { n@472: float: left; n@472: padding-top: 40px; n@472: width: 100px; n@472: } n@472: n@472: button.track-slider-button { n@472: float: left; n@472: width: 100px; n@472: height: 94px; n@472: } n@472: n@472: n@472: button.outside-reference { n@472: width:120px; n@472: height:20px; n@472: margin-bottom:5px; n@472: position: absolute; n@472: } n@472: n@472: div.track-slider-playing { n@472: background-color: #FFDDDD; n@472: } n@472: n@472: input.track-slider-range { n@472: float: left; n@472: margin: 2px 0px; n@472: } n@472: n@472: input[type=range] n@472: { n@472: height: 94px; n@472: padding: 0 10px; n@472: color: rgb(255, 144, 144); n@472: } n@472: n@472: input[type=range]::-webkit-slider-runnable-track { n@472: width: 8px; n@472: cursor: pointer; n@472: background: #fff; n@472: border-radius: 4px; n@472: border: 1px solid #000; n@472: } n@472: n@472: input[type=range]::-moz-range-track { n@472: width: 8px; n@472: cursor: pointer; n@472: background: #fff; n@472: border-radius: 4px; n@472: border: 1px solid #000; n@472: } n@472: n@472: input.track-slider-not-moved[type=range]::-webkit-slider-runnable-track { n@472: background: #aaa; n@472: } n@472: n@472: input.track-slider-not-moved[type=range]::-moz-range-track { n@472: background: #aaa; n@472: } n@472: n@472: n@472: input[type=range]::-moz-range-thumb { n@472: margin-left: -7px; n@472: cursor: pointer; n@472: margin-top: -1px; n@472: box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; n@472: } n@472: n@472: input[type=range]::-webkit-slider-thumb { n@472: cursor: pointer; n@472: margin-top: -1px; n@472: margin-left: -4px; n@472: }