annotate ape.css @ 1017:e103d40537b5

create_test: File API to handle dragged in XML file.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Wed, 03 Jun 2015 12:54:08 +0100
parents 4a0bfa7bef24
children f13b6efc4513
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@997 54 div.sliderScale span{
n@997 55 font-size: 1.2em;
n@671 56 }
n@671 57
n@671 58 div.sliderScale span {
n@671 59 /* Any formatting of text below scale */
n@671 60 min-width: 5px;
n@671 61 height: 20px;
n@671 62 height: 100%;
n@671 63 position: absolute;
n@657 64 }
n@657 65
n@657 66 div.track-slider {
BrechtDeMan@938 67 /* Specify any structure for the slider objects */
n@657 68 position: absolute;
n@657 69 height: inherit;
n@657 70 width: 12px;
n@657 71 float: left;
n@657 72 background-color: rgb(100,200,100);
n@657 73 }
n@657 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