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