annotate ape.css @ 2014:fdc795acf048

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