Mercurial > hg > webaudioevaluationtool
annotate ape.css @ 37:8a78c6d38c5f Dev_main
Improved formatting for comment boxes
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Fri, 10 Apr 2015 12:59:23 +0100 |
parents | c61a92659541 |
children | 8894d17cfad7 |
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@33 | 14 div.testHalt { |
n@33 | 15 /* Specify any colouring during the test halt for pre/post questions */ |
n@33 | 16 background-color: rgba(0,0,0,0.5); |
n@33 | 17 /* Don't mess with this bit */ |
n@33 | 18 z-index: 2; |
n@33 | 19 width: 100%; |
n@33 | 20 height: 100%; |
n@33 | 21 position: absolute; |
n@33 | 22 left: 0px; |
n@33 | 23 top: 0px; |
n@33 | 24 } |
n@33 | 25 |
n@33 | 26 button { |
n@33 | 27 /* Specify any button structure or style */ |
n@33 | 28 min-width: 20px; |
n@33 | 29 background-color: #ddd |
n@33 | 30 } |
n@33 | 31 |
n@33 | 32 div#slider { |
n@33 | 33 /* Specify any structure for the slider holder interface */ |
n@33 | 34 background-color: #eee; |
n@33 | 35 height: 150px; |
n@33 | 36 margin-bottom: 25px; |
n@33 | 37 } |
n@33 | 38 |
n@33 | 39 div.track-slider { |
n@33 | 40 /* Specify any strcture for the slider objects */ |
n@33 | 41 position: absolute; |
n@33 | 42 height: inherit; |
n@33 | 43 width: 12px; |
n@33 | 44 float: left; |
n@33 | 45 background-color: rgb(100,200,100); |
n@33 | 46 } |
n@33 | 47 |
n@37 | 48 div.comment-div { |
n@37 | 49 border:#444444; |
n@37 | 50 border-style:solid; |
n@37 | 51 border-width:1px; |
n@37 | 52 width: 624px; |
n@37 | 53 float: left; |
n@37 | 54 margin: 5px; |
n@37 | 55 } |
n@37 | 56 div.comment-div span { |
n@37 | 57 margin-left: 15px; |
n@37 | 58 } |
n@37 | 59 |
n@37 | 60 |
n@33 | 61 div.popupHolder { |
n@33 | 62 width: 500px; |
n@33 | 63 height: 250px; |
n@33 | 64 background-color: #fff; |
n@33 | 65 border-radius: 10px; |
n@33 | 66 box-shadow: 0px 0px 50px #000; |
n@33 | 67 z-index: 2; |
n@33 | 68 } |
n@33 | 69 |
n@33 | 70 button#preTestNext { |
n@33 | 71 /* Button for popup window |
n@33 | 72 */ |
n@33 | 73 width: 50px; |
n@33 | 74 height: 25px; |
n@33 | 75 position: absolute; |
n@33 | 76 left: 440px; |
n@33 | 77 top: 215px; |
n@33 | 78 border-radius: 5px; |
n@33 | 79 border: #444; |
n@33 | 80 border-width: 1px; |
n@33 | 81 border-style: solid; |
n@33 | 82 background-color: #fff; |
n@33 | 83 } |