annotate ape.css @ 1473:df527e7b1f83

Feature #1246: Playhead starts from 0 when test stopped and restarted for synchronous loop tests.
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Wed, 02 Dec 2015 11:26:45 +0000
parents c660254104e3
children 888292c88c33
rev   line source
nickjillings@1453 1 /*
nickjillings@1453 2 * Hold any style information for APE interface. Customise if you like to make the interface your own!
nickjillings@1453 3 *
nickjillings@1453 4 */
nickjillings@1453 5 body {
nickjillings@1453 6 /* Set the background colour (note US English spelling) to grey*/
nickjillings@1453 7 background-color: #ddd
nickjillings@1453 8 }
nickjillings@1453 9
nickjillings@1453 10 div.title {
nickjillings@1453 11 /* Specify any colouring for the title */
nickjillings@1453 12 }
nickjillings@1453 13
nickjillings@1453 14 div.pageTitle {
nickjillings@1453 15 width: auto;
nickjillings@1453 16 height: 20px;
nickjillings@1453 17 margin-top: 20px;
nickjillings@1453 18 }
nickjillings@1453 19
nickjillings@1453 20 div.pageTitle span{
nickjillings@1453 21 font-size: 1.5em;
nickjillings@1453 22 }
nickjillings@1453 23
nickjillings@1453 24 button {
nickjillings@1453 25 /* Specify any button structure or style */
nickjillings@1453 26 min-width: 20px;
nickjillings@1453 27 background-color: #ddd
nickjillings@1453 28 }
nickjillings@1453 29
nickjillings@1453 30 div#slider {
nickjillings@1453 31 /* Specify any structure for the slider holder interface */
nickjillings@1453 32 background-color: #eee;
nickjillings@1453 33 height: 150px;
nickjillings@1453 34 margin-bottom: 5px;
nickjillings@1453 35 }
nickjillings@1453 36
nickjillings@1453 37 div.sliderScale {
nickjillings@1453 38 width: 100%;
nickjillings@1453 39 min-height: 30px;
nickjillings@1453 40 }
nickjillings@1453 41
nickjillings@1453 42 div.sliderScale span {
nickjillings@1453 43 /* Any formatting of text below scale */
nickjillings@1453 44 font-size: 1.2em;
nickjillings@1453 45 min-width: 5px;
nickjillings@1453 46 height: 20px;
nickjillings@1453 47 position: absolute;
nickjillings@1453 48 }
nickjillings@1453 49
nickjillings@1453 50 div.track-slider {
nickjillings@1453 51 /* Specify any structure for the slider objects */
nickjillings@1453 52 position: absolute;
nickjillings@1453 53 height: inherit;
nickjillings@1453 54 width: 12px;
nickjillings@1453 55 float: left;
nickjillings@1453 56 background-color: rgb(100,200,100);
nickjillings@1453 57 }
nickjillings@1453 58
nickjillings@1458 59 div#outside-reference {
nickjillings@1458 60 width:120px;
nickjillings@1458 61 padding-left: 55px;
nickjillings@1458 62 margin-left: 100px;
nickjillings@1458 63 height:20px;
nickjillings@1458 64 margin-bottom:5px;
nickjillings@1458 65 background-color: rgb(100,200,100);
nickjillings@1458 66 }
nickjillings@1458 67
nickjillings@1453 68 div.track-slider-disabled {
nickjillings@1453 69 background-color: rgb(100,100,100);
nickjillings@1453 70 }
nickjillings@1453 71
nickjillings@1453 72 div.track-slider-playing {
nickjillings@1453 73 background-color: #FF0000;
nickjillings@1453 74 }
nickjillings@1453 75
nickjillings@1453 76 div.comment-box-playing {
nickjillings@1453 77 background-color: #FFDDDD;
nickjillings@1453 78 }