Mercurial > hg > webaudioevaluationtool
annotate ape.css @ 997:e736301ff2e1
Fixed Bug 1206: Axis labels now larger and more of a gap between sliders and comment boxes.
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Fri, 01 May 2015 16:14:08 +0100 |
parents | 06fbaccf3b58 |
children | ffeef0ac7a5f |
rev | line source |
---|---|
n@657 | 1 /* |
n@657 | 2 * Hold any style information for APE interface. Customise if you like to make the interface your own! |
n@657 | 3 * |
n@657 | 4 */ |
n@657 | 5 body { |
n@657 | 6 /* Set the background colour (note US English spelling) to grey*/ |
n@657 | 7 background-color: #ddd |
n@657 | 8 } |
n@657 | 9 |
n@657 | 10 div.title { |
n@657 | 11 /* Specify any colouring for the title */ |
n@657 | 12 } |
n@657 | 13 |
n@671 | 14 div.pageTitle { |
n@671 | 15 width: auto; |
n@671 | 16 height: 20px; |
n@671 | 17 } |
n@671 | 18 |
n@657 | 19 div.testHalt { |
n@657 | 20 /* Specify any colouring during the test halt for pre/post questions */ |
n@657 | 21 background-color: rgba(0,0,0,0.5); |
n@657 | 22 /* Don't mess with this bit */ |
n@657 | 23 z-index: 2; |
n@657 | 24 width: 100%; |
n@657 | 25 height: 100%; |
n@657 | 26 position: absolute; |
n@657 | 27 left: 0px; |
n@657 | 28 top: 0px; |
n@657 | 29 } |
n@657 | 30 |
n@657 | 31 button { |
n@657 | 32 /* Specify any button structure or style */ |
n@657 | 33 min-width: 20px; |
n@657 | 34 background-color: #ddd |
n@657 | 35 } |
n@657 | 36 |
n@657 | 37 div#slider { |
n@657 | 38 /* Specify any structure for the slider holder interface */ |
n@657 | 39 background-color: #eee; |
n@657 | 40 height: 150px; |
n@671 | 41 margin-bottom: 5px; |
n@671 | 42 } |
n@671 | 43 |
n@671 | 44 div.sliderScale { |
n@671 | 45 width: 100%; |
n@997 | 46 min-height: 30px; |
n@997 | 47 } |
n@997 | 48 |
n@997 | 49 div.sliderScale span{ |
n@997 | 50 font-size: 1.2em; |
n@671 | 51 } |
n@671 | 52 |
n@671 | 53 div.sliderScale span { |
n@671 | 54 /* Any formatting of text below scale */ |
n@671 | 55 min-width: 5px; |
n@671 | 56 height: 20px; |
n@671 | 57 height: 100%; |
n@671 | 58 position: absolute; |
n@657 | 59 } |
n@657 | 60 |
n@657 | 61 div.track-slider { |
n@657 | 62 /* Specify any strcture for the slider objects */ |
n@657 | 63 position: absolute; |
n@657 | 64 height: inherit; |
n@657 | 65 width: 12px; |
n@657 | 66 float: left; |
n@657 | 67 background-color: rgb(100,200,100); |
n@657 | 68 } |
n@657 | 69 |
n@661 | 70 div.comment-div { |
n@661 | 71 border:#444444; |
n@661 | 72 border-style:solid; |
n@661 | 73 border-width:1px; |
n@661 | 74 width: 624px; |
n@661 | 75 float: left; |
n@661 | 76 margin: 5px; |
n@661 | 77 } |
n@662 | 78 |
n@661 | 79 div.comment-div span { |
n@661 | 80 margin-left: 15px; |
n@661 | 81 } |
n@661 | 82 |
n@657 | 83 div.popupHolder { |
n@657 | 84 width: 500px; |
n@657 | 85 height: 250px; |
n@657 | 86 background-color: #fff; |
n@657 | 87 border-radius: 10px; |
n@657 | 88 box-shadow: 0px 0px 50px #000; |
n@657 | 89 z-index: 2; |
n@657 | 90 } |
n@657 | 91 |
n@662 | 92 button.popupButton { |
n@657 | 93 /* Button for popup window |
n@657 | 94 */ |
n@657 | 95 width: 50px; |
n@657 | 96 height: 25px; |
n@657 | 97 position: absolute; |
n@657 | 98 left: 440px; |
n@657 | 99 top: 215px; |
n@657 | 100 border-radius: 5px; |
n@657 | 101 border: #444; |
n@657 | 102 border-width: 1px; |
n@657 | 103 border-style: solid; |
n@657 | 104 background-color: #fff; |
n@657 | 105 } |