annotate ape.css @ 402:db353cc479b8 Dev_main

test create has gain controllers on each item
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Fri, 11 Dec 2015 18:32:32 +0000
parents d0073ab16551
children
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;
nicholas@386 36 -moz-user-select: -moz-none;
nicholas@386 37 -khtml-user-select: none;
nicholas@386 38 -webkit-user-select: none;
n@47 39 }
n@47 40
n@47 41 div.sliderScale {
n@47 42 width: 100%;
n@98 43 min-height: 30px;
nicholas@386 44 -moz-user-select: -moz-none;
nicholas@386 45 -khtml-user-select: none;
nicholas@386 46 -webkit-user-select: none;
n@98 47 }
n@98 48
n@47 49 div.sliderScale span {
n@47 50 /* Any formatting of text below scale */
n@193 51 font-size: 1.2em;
n@47 52 min-width: 5px;
n@47 53 height: 20px;
n@47 54 position: absolute;
n@33 55 }
n@33 56
n@33 57 div.track-slider {
b@100 58 /* Specify any structure for the slider objects */
n@33 59 position: absolute;
n@33 60 height: inherit;
n@33 61 width: 12px;
n@33 62 float: left;
n@33 63 background-color: rgb(100,200,100);
nicholas@386 64 -moz-user-select: -moz-none;
nicholas@386 65 -khtml-user-select: none;
nicholas@386 66 -webkit-user-select: none;
n@33 67 }
n@33 68
n@394 69 div.outside-reference {
n@347 70 width:120px;
n@347 71 padding-left: 55px;
n@347 72 margin-left: 100px;
n@347 73 height:20px;
n@347 74 margin-bottom:5px;
n@347 75 background-color: rgb(100,200,100);
n@347 76 }
n@347 77
nicholas@271 78 div.track-slider-disabled {
nicholas@271 79 background-color: rgb(100,100,100);
nicholas@271 80 }
nicholas@271 81
n@154 82 div.track-slider-playing {
n@154 83 background-color: #FF0000;
n@154 84 }
n@154 85
n@154 86 div.comment-box-playing {
n@154 87 background-color: #FFDDDD;
n@154 88 }