Mercurial > hg > webaudioevaluationtool
annotate interfaces/discrete.css @ 474:63461187a425 Dev_main
Beginning discrete / likert interfaces.
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Wed, 13 Jan 2016 16:49:59 +0000 |
parents | |
children | aad881fa0891 |
rev | line source |
---|---|
n@474 | 1 /* |
n@474 | 2 * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own! |
n@474 | 3 * |
n@474 | 4 */ |
n@474 | 5 body { |
n@474 | 6 /* Set the background colour (note US English spelling) to grey*/ |
n@474 | 7 background-color: #ddd |
n@474 | 8 } |
n@474 | 9 |
n@474 | 10 div.pageTitle { |
n@474 | 11 width: auto; |
n@474 | 12 height: 20px; |
n@474 | 13 margin: 10px 0px; |
n@474 | 14 } |
n@474 | 15 |
n@474 | 16 div.pageTitle span{ |
n@474 | 17 font-size: 1.5em; |
n@474 | 18 } |
n@474 | 19 |
n@474 | 20 div.testHalt { |
n@474 | 21 /* Specify any colouring during the test halt for pre/post questions */ |
n@474 | 22 background-color: rgba(0,0,0,0.5); |
n@474 | 23 /* Don't mess with this bit */ |
n@474 | 24 z-index: 2; |
n@474 | 25 width: 100%; |
n@474 | 26 height: 100%; |
n@474 | 27 position: absolute; |
n@474 | 28 left: 0px; |
n@474 | 29 top: 0px; |
n@474 | 30 } |
n@474 | 31 |
n@474 | 32 button { |
n@474 | 33 /* Specify any button structure or style */ |
n@474 | 34 min-width: 20px; |
n@474 | 35 background-color: #ddd |
n@474 | 36 } |
n@474 | 37 |
n@474 | 38 div#slider-holder { |
n@474 | 39 height: inherit; |
n@474 | 40 position: absolute; |
n@474 | 41 left: 0px; |
n@474 | 42 z-index: 3; |
n@474 | 43 margin-top:25px; |
n@474 | 44 } |
n@474 | 45 |
n@474 | 46 div#scale-holder { |
n@474 | 47 height: inherit; |
n@474 | 48 position: absolute; |
n@474 | 49 left: 0px; |
n@474 | 50 z-index: 2; |
n@474 | 51 } |
n@474 | 52 |
n@474 | 53 div#scale-text-holder { |
n@474 | 54 position:relative; |
n@474 | 55 float: left; |
n@474 | 56 } |
n@474 | 57 div.scale-text { |
n@474 | 58 position: absolute; |
n@474 | 59 font-size: 1.2em; |
n@474 | 60 } |
n@474 | 61 |
n@474 | 62 canvas#scale-canvas { |
n@474 | 63 position: relative; |
n@474 | 64 float: left; |
n@474 | 65 } |
n@474 | 66 |
n@474 | 67 div.track-slider { |
n@474 | 68 float: left; |
n@474 | 69 height: 30px; |
n@474 | 70 border: solid; |
n@474 | 71 border-width: 1px; |
n@474 | 72 border-color: black; |
n@474 | 73 padding:2px; |
n@474 | 74 margin-left: 94px; |
n@474 | 75 margin-bottom: 30px; |
n@474 | 76 } |
n@474 | 77 |
n@474 | 78 div.track-slider-range { |
n@474 | 79 float: left; |
n@474 | 80 height: 100%; |
n@474 | 81 margin: 0px 10px; |
n@474 | 82 } |
n@474 | 83 |
n@474 | 84 div.track-slider-title { |
n@474 | 85 float: left; |
n@474 | 86 padding-top: 5px; |
n@474 | 87 width: 100px; |
n@474 | 88 } |
n@474 | 89 |
n@474 | 90 button.track-slider-button { |
n@474 | 91 float: left; |
n@474 | 92 width: 100px; |
n@474 | 93 height: 30px; |
n@474 | 94 } |
n@474 | 95 |
n@474 | 96 |
n@474 | 97 button.outside-reference { |
n@474 | 98 width:120px; |
n@474 | 99 height:20px; |
n@474 | 100 margin-bottom:5px; |
n@474 | 101 position: absolute; |
n@474 | 102 } |
n@474 | 103 |
n@474 | 104 div.track-slider-playing { |
n@474 | 105 background-color: #FFDDDD; |
n@474 | 106 } |