annotate ape.css @ 162:918d9a5943cd Dev_main

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