Mercurial > hg > webaudioevaluationtool
annotate mushra.css @ 1186:fd5390509d52
Added tag 1.1.0 for changeset 63c4163fc705
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Wed, 23 Dec 2015 14:48:48 +0000 |
parents | 56ee920d5d85 |
children |
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@751 | 64 div.outside-reference { |
nicholas@751 | 65 width:120px; |
nicholas@751 | 66 padding-left: 55px; |
nicholas@751 | 67 margin-left: 100px; |
nicholas@751 | 68 height:20px; |
nicholas@751 | 69 margin-bottom:5px; |
nicholas@751 | 70 background-color: rgb(100,200,100); |
nicholas@751 | 71 } |
nicholas@751 | 72 |
nicholas@756 | 73 div.track-slider-playing { |
nicholas@756 | 74 background-color: #FFDDDD; |
nicholas@756 | 75 } |
nicholas@756 | 76 |
nicholas@756 | 77 input.track-slider-range { |
n@800 | 78 margin: 2px 0px; |
nicholas@756 | 79 } |
nicholas@756 | 80 |
nicholas@755 | 81 input[type=range][orient=vertical] |
nicholas@755 | 82 { |
nicholas@755 | 83 writing-mode: bt-lr; /* IE */ |
nicholas@755 | 84 -webkit-appearance: slider-vertical; /* WebKit */ |
nicholas@755 | 85 width: 8px; |
nicholas@755 | 86 padding: 0 5px; |
nicholas@759 | 87 color: rgb(255, 144, 144); |
n@800 | 88 } |
n@800 | 89 |
n@800 | 90 input[type=range]::-webkit-slider-runnable-track { |
n@800 | 91 width: 8px; |
n@800 | 92 cursor: pointer; |
n@800 | 93 background: #fff; |
n@800 | 94 border-radius: 4px; |
n@800 | 95 border: 1px solid #000; |
n@800 | 96 } |
n@800 | 97 |
n@800 | 98 input[type=range]::-moz-range-track { |
n@800 | 99 width: 8px; |
n@800 | 100 cursor: pointer; |
n@800 | 101 background: #fff; |
n@800 | 102 border-radius: 4px; |
n@800 | 103 border: 1px solid #000; |
n@800 | 104 } |
n@800 | 105 |
n@800 | 106 input.track-slider-not-moved[type=range]::-webkit-slider-runnable-track { |
n@800 | 107 background: #aaa; |
n@800 | 108 } |
n@800 | 109 |
n@800 | 110 input.track-slider-not-moved[type=range]::-moz-range-track { |
n@800 | 111 background: #aaa; |
n@800 | 112 } |
n@800 | 113 |
nicholas@809 | 114 |
n@800 | 115 input[type=range]::-moz-range-thumb { |
n@800 | 116 margin-left: -7px; |
n@800 | 117 cursor: pointer; |
nicholas@809 | 118 margin-top: -1px; |
nicholas@809 | 119 box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; |
n@800 | 120 } |
n@800 | 121 |
n@800 | 122 input[type=range]::-webkit-slider-thumb { |
n@800 | 123 cursor: pointer; |
nicholas@809 | 124 margin-top: -1px; |
nicholas@809 | 125 margin-left: -4px; |
nicholas@809 | 126 } |