annotate ape.css @ 1534:f9e50328a26a

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