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