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