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