annotate mushra.css @ 425:1ba2d8685c47 Dev_main

MUSHRA: Beginning work for scale options
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Fri, 18 Dec 2015 13:20:09 +0000
parents c08af4b5c9f3
children d9c7263cb871 8540d153caec
rev   line source
n@281 1 /*
n@281 2 * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own!
n@281 3 *
n@281 4 */
n@281 5 body {
n@281 6 /* Set the background colour (note US English spelling) to grey*/
n@281 7 background-color: #ddd
n@281 8 }
n@281 9
n@281 10 div.pageTitle {
n@281 11 width: auto;
n@281 12 height: 20px;
n@281 13 margin-top: 20px;
n@281 14 }
n@281 15
n@281 16 div.pageTitle span{
n@281 17 font-size: 1.5em;
n@281 18 }
n@281 19
n@281 20 div.testHalt {
n@281 21 /* Specify any colouring during the test halt for pre/post questions */
n@281 22 background-color: rgba(0,0,0,0.5);
n@281 23 /* Don't mess with this bit */
n@281 24 z-index: 2;
n@281 25 width: 100%;
n@281 26 height: 100%;
n@281 27 position: absolute;
n@281 28 left: 0px;
n@281 29 top: 0px;
n@281 30 }
n@281 31
n@281 32 button {
n@281 33 /* Specify any button structure or style */
n@281 34 min-width: 20px;
n@281 35 background-color: #ddd
n@281 36 }
n@281 37
n@425 38 div#slider-holder {
n@425 39 height: inherit;
n@425 40 position: absolute;
n@425 41 top: 125px;
n@425 42 left: 0px;
n@425 43 z-index: 2;
n@425 44 }
n@425 45
n@425 46 div#scale-holder {
n@425 47 height: inherit;
n@425 48 position: absolute;
n@425 49 top: 125px;
n@425 50 left: 0px;
n@425 51 z-index: 3;
n@425 52 }
n@281 53
n@281 54 div.track-slider {
n@281 55 float: left;
n@281 56 width: 94px;
n@281 57 border: solid;
n@281 58 border-width: 1px;
n@281 59 border-color: black;
n@281 60 padding:2px;
n@425 61 margin-left: 50px;
n@281 62 }
n@281 63
nicholas@415 64 div.track-slider-playing {
nicholas@415 65 background-color: #FFDDDD;
nicholas@415 66 }
nicholas@415 67
nicholas@415 68 input.track-slider-range {
n@423 69 margin: 2px 0px;
nicholas@415 70 }
nicholas@415 71
n@281 72 input[type=range][orient=vertical]
n@281 73 {
n@281 74 writing-mode: bt-lr; /* IE */
n@281 75 -webkit-appearance: slider-vertical; /* WebKit */
n@281 76 width: 8px;
n@281 77 padding: 0 5px;
nicholas@418 78 color: rgb(255, 144, 144);
n@423 79 }
n@423 80
n@423 81 input[type=range]::-webkit-slider-runnable-track {
n@423 82 width: 8px;
n@423 83 cursor: pointer;
n@423 84 background: #fff;
n@423 85 border-radius: 4px;
n@423 86 border: 1px solid #000;
n@423 87 }
n@423 88
n@423 89 input[type=range]::-moz-range-track {
n@423 90 width: 8px;
n@423 91 cursor: pointer;
n@423 92 background: #fff;
n@423 93 border-radius: 4px;
n@423 94 border: 1px solid #000;
n@423 95 }
n@423 96
n@423 97 input.track-slider-not-moved[type=range]::-webkit-slider-runnable-track {
n@423 98 background: #aaa;
n@423 99 }
n@423 100
n@423 101 input.track-slider-not-moved[type=range]::-moz-range-track {
n@423 102 background: #aaa;
n@423 103 }
n@423 104
n@423 105 input[type=range]::-moz-range-thumb {
n@423 106 margin-left: -7px;
n@423 107 cursor: pointer;
n@423 108 margin-top: -1px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
n@423 109 box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
n@423 110 }
n@423 111
n@423 112 input[type=range]::-webkit-slider-thumb {
n@423 113 margin-left: -7px;
n@423 114 cursor: pointer;
n@423 115 margin-top: -1px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
n@423 116 box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
n@281 117 }