annotate ape.css @ 385:b96fc647f383 Dev_main

Merge
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Tue, 08 Dec 2015 12:22:18 +0000
parents 38439b21d369
children 4cfd32ff1334
rev   line source
n@33 1 /*
n@33 2 * Hold any style information for APE interface. Customise if you like to make the interface your own!
n@33 3 *
n@33 4 */
n@33 5 body {
n@33 6 /* Set the background colour (note US English spelling) to grey*/
n@33 7 background-color: #ddd
n@33 8 }
n@33 9
n@33 10 div.title {
n@33 11 /* Specify any colouring for the title */
n@33 12 }
n@33 13
n@47 14 div.pageTitle {
n@47 15 width: auto;
n@47 16 height: 20px;
n@383 17 margin-top: 5px;
n@383 18 margin-bottom: 10px;
nicholas@111 19 }
nicholas@111 20
nicholas@111 21 div.pageTitle span{
nicholas@111 22 font-size: 1.5em;
n@47 23 }
n@47 24
n@33 25 button {
n@33 26 /* Specify any button structure or style */
n@33 27 min-width: 20px;
n@33 28 background-color: #ddd
n@33 29 }
n@33 30
n@383 31 div.slider {
n@33 32 /* Specify any structure for the slider holder interface */
n@33 33 background-color: #eee;
n@33 34 height: 150px;
n@47 35 margin-bottom: 5px;
n@47 36 }
n@47 37
n@47 38 div.sliderScale {
n@47 39 width: 100%;
n@98 40 min-height: 30px;
n@98 41 }
n@98 42
n@47 43 div.sliderScale span {
n@47 44 /* Any formatting of text below scale */
n@193 45 font-size: 1.2em;
n@47 46 min-width: 5px;
n@47 47 height: 20px;
n@47 48 position: absolute;
n@33 49 }
n@33 50
n@33 51 div.track-slider {
b@100 52 /* Specify any structure for the slider objects */
n@33 53 position: absolute;
n@33 54 height: inherit;
n@33 55 width: 12px;
n@33 56 float: left;
n@33 57 background-color: rgb(100,200,100);
n@33 58 }
n@33 59
n@347 60 div#outside-reference {
n@347 61 width:120px;
n@347 62 padding-left: 55px;
n@347 63 margin-left: 100px;
n@347 64 height:20px;
n@347 65 margin-bottom:5px;
n@347 66 background-color: rgb(100,200,100);
n@347 67 }
n@347 68
nicholas@271 69 div.track-slider-disabled {
nicholas@271 70 background-color: rgb(100,100,100);
nicholas@271 71 }
nicholas@271 72
n@154 73 div.track-slider-playing {
n@154 74 background-color: #FF0000;
n@154 75 }
n@154 76
n@154 77 div.comment-box-playing {
n@154 78 background-color: #FFDDDD;
n@154 79 }