Mercurial > hg > webaudioevaluationtool
annotate ape.css @ 1644:2fba3fe86981
Separated interface loading to seperate test pages.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Fri, 10 Apr 2015 12:18:51 +0100 |
parents | 52f0cabcf969 |
children | 8a78c6d38c5f |
rev | line source |
---|---|
nickjillings@1643 | 1 /* |
nickjillings@1643 | 2 * Hold any style information for APE interface. Customise if you like to make the interface your own! |
nickjillings@1643 | 3 * |
nickjillings@1643 | 4 */ |
nickjillings@1643 | 5 body { |
nickjillings@1643 | 6 /* Set the background colour (note US English spelling) to grey*/ |
nickjillings@1643 | 7 background-color: #ddd |
nickjillings@1643 | 8 } |
nickjillings@1643 | 9 |
nickjillings@1643 | 10 div.title { |
nickjillings@1643 | 11 /* Specify any colouring for the title */ |
nickjillings@1643 | 12 } |
nickjillings@1643 | 13 |
nickjillings@1643 | 14 div.testHalt { |
nickjillings@1643 | 15 /* Specify any colouring during the test halt for pre/post questions */ |
nickjillings@1643 | 16 background-color: rgba(0,0,0,0.5); |
nickjillings@1643 | 17 /* Don't mess with this bit */ |
nickjillings@1643 | 18 z-index: 2; |
nickjillings@1643 | 19 width: 100%; |
nickjillings@1643 | 20 height: 100%; |
nickjillings@1643 | 21 position: absolute; |
nickjillings@1643 | 22 left: 0px; |
nickjillings@1643 | 23 top: 0px; |
nickjillings@1643 | 24 } |
nickjillings@1643 | 25 |
nickjillings@1643 | 26 button { |
nickjillings@1643 | 27 /* Specify any button structure or style */ |
nickjillings@1643 | 28 min-width: 20px; |
nickjillings@1643 | 29 background-color: #ddd |
nickjillings@1643 | 30 } |
nickjillings@1643 | 31 |
nickjillings@1643 | 32 div#slider { |
nickjillings@1643 | 33 /* Specify any structure for the slider holder interface */ |
nickjillings@1643 | 34 background-color: #eee; |
nickjillings@1643 | 35 height: 150px; |
nickjillings@1643 | 36 margin-bottom: 25px; |
nickjillings@1643 | 37 } |
nickjillings@1643 | 38 |
nickjillings@1643 | 39 div.track-slider { |
nickjillings@1643 | 40 /* Specify any strcture for the slider objects */ |
nickjillings@1643 | 41 position: absolute; |
nickjillings@1643 | 42 height: inherit; |
nickjillings@1643 | 43 width: 12px; |
nickjillings@1643 | 44 float: left; |
nickjillings@1643 | 45 background-color: rgb(100,200,100); |
nickjillings@1643 | 46 } |
nickjillings@1643 | 47 |
nickjillings@1643 | 48 div.popupHolder { |
nickjillings@1643 | 49 width: 500px; |
nickjillings@1643 | 50 height: 250px; |
nickjillings@1643 | 51 background-color: #fff; |
nickjillings@1643 | 52 border-radius: 10px; |
nickjillings@1643 | 53 box-shadow: 0px 0px 50px #000; |
nickjillings@1643 | 54 z-index: 2; |
nickjillings@1643 | 55 } |
nickjillings@1643 | 56 |
nickjillings@1643 | 57 button#preTestNext { |
nickjillings@1643 | 58 /* Button for popup window |
nickjillings@1643 | 59 */ |
nickjillings@1643 | 60 width: 50px; |
nickjillings@1643 | 61 height: 25px; |
nickjillings@1643 | 62 position: absolute; |
nickjillings@1643 | 63 left: 440px; |
nickjillings@1643 | 64 top: 215px; |
nickjillings@1643 | 65 border-radius: 5px; |
nickjillings@1643 | 66 border: #444; |
nickjillings@1643 | 67 border-width: 1px; |
nickjillings@1643 | 68 border-style: solid; |
nickjillings@1643 | 69 background-color: #fff; |
nickjillings@1643 | 70 } |