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