annotate ape.css @ 1963:0db5fc3e1462

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