annotate ape.css @ 814:22ad83e232f7

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