annotate ape.css @ 1556:c6decd1db0da

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