annotate ape.css @ 1570:7ee505b380b0

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