Mercurial > hg > webaudioevaluationtool
annotate interfaces/horizontal-sliders.css @ 2202:61c8e13f1e2e
Merge branch 'master' of https://github.com/BrechtDeMan/WebAudioEvaluationTool
author | www-data <www-data@sucuk.dcs.qmul.ac.uk> |
---|---|
date | Fri, 08 Apr 2016 13:20:54 +0100 |
parents | c0022a09c4f6 |
children | b0b4d264d9a8 |
rev | line source |
---|---|
n@1143 | 1 /* |
n@1143 | 2 * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own! |
n@1143 | 3 * |
n@1143 | 4 */ |
n@1143 | 5 body { |
n@1143 | 6 /* Set the background colour (note US English spelling) to grey*/ |
n@1143 | 7 background-color: #ddd |
n@1143 | 8 } |
n@1143 | 9 |
n@1143 | 10 div.pageTitle { |
n@1143 | 11 width: auto; |
n@1143 | 12 height: 20px; |
n@1143 | 13 margin: 10px 0px; |
n@1143 | 14 } |
n@1143 | 15 |
n@1143 | 16 div.pageTitle span{ |
n@1143 | 17 font-size: 1.5em; |
n@1143 | 18 } |
n@1143 | 19 |
n@1143 | 20 div.testHalt { |
n@1143 | 21 /* Specify any colouring during the test halt for pre/post questions */ |
n@1143 | 22 background-color: rgba(0,0,0,0.5); |
n@1143 | 23 /* Don't mess with this bit */ |
n@1143 | 24 z-index: 2; |
n@1143 | 25 width: 100%; |
n@1143 | 26 height: 100%; |
n@1143 | 27 position: absolute; |
n@1143 | 28 left: 0px; |
n@1143 | 29 top: 0px; |
n@1143 | 30 } |
n@1143 | 31 |
n@1143 | 32 button { |
n@1143 | 33 /* Specify any button structure or style */ |
n@1143 | 34 min-width: 20px; |
n@1143 | 35 background-color: #ddd |
n@1143 | 36 } |
n@1143 | 37 |
n@1143 | 38 div#slider-holder { |
n@1143 | 39 height: inherit; |
n@1143 | 40 position: absolute; |
n@1143 | 41 left: 0px; |
n@1143 | 42 z-index: 3; |
n@1143 | 43 margin-top:25px; |
n@1143 | 44 } |
n@1143 | 45 |
n@1143 | 46 div#scale-holder { |
n@1143 | 47 height: inherit; |
n@1143 | 48 position: absolute; |
n@1143 | 49 left: 0px; |
n@1143 | 50 z-index: 2; |
n@1143 | 51 } |
n@1143 | 52 |
n@1143 | 53 div#scale-text-holder { |
n@1143 | 54 position:relative; |
n@1143 | 55 float: left; |
n@1143 | 56 } |
n@1143 | 57 div.scale-text { |
n@1143 | 58 position: absolute; |
n@1143 | 59 font-size: 1.2em; |
n@1143 | 60 } |
n@1143 | 61 |
n@1143 | 62 canvas#scale-canvas { |
n@1143 | 63 position: relative; |
n@1143 | 64 float: left; |
n@1143 | 65 } |
n@1143 | 66 |
n@1143 | 67 div.track-slider { |
n@1143 | 68 float: left; |
n@1143 | 69 height: 94px; |
n@1143 | 70 border: solid; |
n@1143 | 71 border-width: 1px; |
n@1143 | 72 border-color: black; |
n@1143 | 73 padding:2px; |
n@1143 | 74 margin-left: 94px; |
n@1143 | 75 margin-bottom: 25px; |
n@1143 | 76 } |
n@1143 | 77 |
n@1143 | 78 div.track-slider-title { |
n@1143 | 79 float: left; |
n@1143 | 80 padding-top: 40px; |
n@1143 | 81 width: 100px; |
n@1143 | 82 } |
n@1143 | 83 |
n@1143 | 84 button.track-slider-button { |
n@1143 | 85 float: left; |
n@1143 | 86 width: 100px; |
n@1143 | 87 height: 94px; |
n@1143 | 88 } |
n@1143 | 89 |
n@1143 | 90 |
n@1143 | 91 button.outside-reference { |
n@1143 | 92 width:120px; |
n@1143 | 93 height:20px; |
n@1143 | 94 margin-bottom:5px; |
n@1143 | 95 position: absolute; |
n@1143 | 96 } |
n@1143 | 97 |
n@1143 | 98 div.track-slider-playing { |
n@1143 | 99 background-color: #FFDDDD; |
n@1143 | 100 } |
n@1143 | 101 |
n@1143 | 102 input.track-slider-range { |
n@1143 | 103 float: left; |
n@1147 | 104 margin: 2px 10px; |
n@1143 | 105 } |
n@1143 | 106 |
n@1143 | 107 input[type=range] |
n@1143 | 108 { |
n@1143 | 109 height: 94px; |
n@1147 | 110 padding: 0px; |
n@1143 | 111 color: rgb(255, 144, 144); |
n@1143 | 112 } |
n@1143 | 113 |
n@1143 | 114 input[type=range]::-webkit-slider-runnable-track { |
n@1143 | 115 cursor: pointer; |
n@1143 | 116 background: #fff; |
n@1143 | 117 border-radius: 4px; |
n@1143 | 118 border: 1px solid #000; |
n@1143 | 119 } |
n@1143 | 120 |
n@1143 | 121 input[type=range]::-moz-range-track { |
n@1149 | 122 height: 8px; |
n@1143 | 123 cursor: pointer; |
n@1143 | 124 background: #fff; |
n@1143 | 125 border-radius: 4px; |
n@1143 | 126 border: 1px solid #000; |
n@1143 | 127 } |
n@1143 | 128 |
n@1143 | 129 input.track-slider-not-moved[type=range]::-webkit-slider-runnable-track { |
n@1143 | 130 background: #aaa; |
n@1143 | 131 } |
n@1143 | 132 |
n@1143 | 133 input.track-slider-not-moved[type=range]::-moz-range-track { |
n@1143 | 134 background: #aaa; |
n@1156 | 135 } |
n@1156 | 136 |
n@1156 | 137 div#page-count { |
n@1156 | 138 float: left; |
n@1156 | 139 margin: 0px 5px; |
n@1156 | 140 } |
n@1156 | 141 |
n@1156 | 142 div#master-volume-holder { |
n@1156 | 143 position: absolute; |
n@1156 | 144 top: 10px; |
n@1156 | 145 left: 120px; |
n@1150 | 146 } |