annotate ape.css @ 850:1eacf6c1056a

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