annotate ape.css @ 910:f938025db0d7

Created Specification object to handle All XML decoding.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Thu, 04 Jun 2015 14:31:23 +0100
parents b64ddb277eb0
children 4a0bfa7bef24
rev   line source
n@905 1 /*
n@905 2 * Hold any style information for APE interface. Customise if you like to make the interface your own!
n@905 3 *
n@905 4 */
n@905 5 body {
n@905 6 /* Set the background colour (note US English spelling) to grey*/
n@905 7 background-color: #ddd
n@905 8 }
n@905 9
n@905 10 div.title {
n@905 11 /* Specify any colouring for the title */
n@905 12 }
n@905 13
n@905 14 div.pageTitle {
n@905 15 width: auto;
n@905 16 height: 20px;
n@905 17 margin-top: 20px;
n@905 18 }
n@905 19
n@905 20 div.pageTitle span{
n@905 21 font-size: 1.5em;
n@905 22 }
n@905 23
n@905 24 div.testHalt {
n@905 25 /* Specify any colouring during the test halt for pre/post questions */
n@905 26 background-color: rgba(0,0,0,0.5);
n@905 27 /* Don't mess with this bit */
n@905 28 z-index: 2;
n@905 29 width: 100%;
n@905 30 height: 100%;
n@905 31 position: absolute;
n@905 32 left: 0px;
n@905 33 top: 0px;
n@905 34 }
n@905 35
n@905 36 button {
n@905 37 /* Specify any button structure or style */
n@905 38 min-width: 20px;
n@905 39 background-color: #ddd
n@905 40 }
n@905 41
n@905 42 div#slider {
n@905 43 /* Specify any structure for the slider holder interface */
n@905 44 background-color: #eee;
n@905 45 height: 150px;
n@905 46 margin-bottom: 5px;
n@905 47 }
n@905 48
n@905 49 div.sliderScale {
n@905 50 width: 100%;
n@905 51 min-height: 30px;
n@905 52 }
n@905 53
n@905 54 div.sliderScale span{
n@905 55 font-size: 1.2em;
n@905 56 }
n@905 57
n@905 58 div.sliderScale span {
n@905 59 /* Any formatting of text below scale */
n@905 60 min-width: 5px;
n@905 61 height: 20px;
n@905 62 height: 100%;
n@905 63 position: absolute;
n@905 64 }
n@905 65
n@905 66 div.track-slider {
n@905 67 /* Specify any structure for the slider objects */
n@905 68 position: absolute;
n@905 69 height: inherit;
n@905 70 width: 12px;
n@905 71 float: left;
n@905 72 background-color: rgb(100,200,100);
n@905 73 }
n@905 74
n@905 75 div.track-slider-playing {
n@905 76 background-color: #FF0000;
n@905 77 }
n@905 78
n@905 79 div.comment-box-playing {
n@905 80 background-color: #FFDDDD;
n@905 81 }
n@905 82