Mercurial > hg > webaudioevaluationtool
annotate ape.css @ 1067:8d0061336b90
Scripts: timeline with rectangles (accurate start and end, customisable width); timeline and score plots to PDF by default.
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Tue, 11 Aug 2015 11:06:55 +0200 |
parents | 99cb3436759e |
children | 2b8c36924bfd |
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; |
nicholas@948 | 17 margin-top: 20px; |
nicholas@948 | 18 } |
nicholas@948 | 19 |
nicholas@948 | 20 div.pageTitle span{ |
nicholas@948 | 21 font-size: 1.5em; |
n@671 | 22 } |
n@671 | 23 |
n@657 | 24 div.testHalt { |
n@657 | 25 /* Specify any colouring during the test halt for pre/post questions */ |
n@657 | 26 background-color: rgba(0,0,0,0.5); |
n@657 | 27 /* Don't mess with this bit */ |
n@657 | 28 z-index: 2; |
n@657 | 29 width: 100%; |
n@657 | 30 height: 100%; |
n@657 | 31 position: absolute; |
n@657 | 32 left: 0px; |
n@657 | 33 top: 0px; |
n@657 | 34 } |
n@657 | 35 |
n@657 | 36 button { |
n@657 | 37 /* Specify any button structure or style */ |
n@657 | 38 min-width: 20px; |
n@657 | 39 background-color: #ddd |
n@657 | 40 } |
n@657 | 41 |
n@657 | 42 div#slider { |
n@657 | 43 /* Specify any structure for the slider holder interface */ |
n@657 | 44 background-color: #eee; |
n@657 | 45 height: 150px; |
n@671 | 46 margin-bottom: 5px; |
n@671 | 47 } |
n@671 | 48 |
n@671 | 49 div.sliderScale { |
n@671 | 50 width: 100%; |
n@997 | 51 min-height: 30px; |
n@997 | 52 } |
n@997 | 53 |
n@671 | 54 div.sliderScale span { |
n@671 | 55 /* Any formatting of text below scale */ |
n@1026 | 56 font-size: 1.2em; |
n@671 | 57 min-width: 5px; |
n@671 | 58 height: 20px; |
n@671 | 59 position: absolute; |
n@657 | 60 } |
n@657 | 61 |
n@657 | 62 div.track-slider { |
BrechtDeMan@938 | 63 /* Specify any structure for the slider objects */ |
n@657 | 64 position: absolute; |
n@657 | 65 height: inherit; |
n@657 | 66 width: 12px; |
n@657 | 67 float: left; |
n@657 | 68 background-color: rgb(100,200,100); |
n@657 | 69 } |
n@657 | 70 |
nicholas@864 | 71 div.track-slider-disabled { |
nicholas@864 | 72 background-color: rgb(100,100,100); |
nicholas@864 | 73 } |
nicholas@864 | 74 |
n@1008 | 75 div.track-slider-playing { |
n@1008 | 76 background-color: #FF0000; |
n@1008 | 77 } |
n@1008 | 78 |
n@1008 | 79 div.comment-box-playing { |
n@1008 | 80 background-color: #FFDDDD; |
n@1008 | 81 } |
n@1008 | 82 |
nicholas@863 | 83 div#outside-reference { |
nicholas@863 | 84 width:250px; |
nicholas@863 | 85 margin-left: 100px; |
nicholas@863 | 86 height:20px; |
nicholas@863 | 87 margin-bottom:5px; |
nicholas@863 | 88 background-color: rgb(100,200,100); |
nicholas@863 | 89 } |