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