Mercurial > hg > webaudioevaluationtool
annotate mushra.css @ 410:6be81817d142 Dev_main
Specification document handles optional loudness control.
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Wed, 16 Dec 2015 14:00:11 +0000 |
parents | 7e9c38fa7499 |
children | 6e01da7f9f92 |
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@281 | 38 |
n@281 | 39 div.track-slider { |
n@281 | 40 float: left; |
n@281 | 41 width: 94px; |
n@281 | 42 border: solid; |
n@281 | 43 border-width: 1px; |
n@281 | 44 border-color: black; |
n@281 | 45 padding:2px; |
n@281 | 46 } |
n@281 | 47 |
n@281 | 48 input[type=range][orient=vertical] |
n@281 | 49 { |
n@281 | 50 writing-mode: bt-lr; /* IE */ |
n@281 | 51 -webkit-appearance: slider-vertical; /* WebKit */ |
n@281 | 52 width: 8px; |
n@281 | 53 height: 175px; |
n@281 | 54 padding: 0 5px; |
n@281 | 55 } |