annotate ape.css @ 776:0795031754d7

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