annotate ape.css @ 372:5ec4279bf846 Dev_main

test_create: Specification Node handles complete XML to DOM and DOM to XML conversions
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Fri, 04 Dec 2015 18:34:04 +0000
parents 50117a4ea276
children 38439b21d369
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;
nicholas@111 17 margin-top: 20px;
nicholas@111 18 }
nicholas@111 19
nicholas@111 20 div.pageTitle span{
nicholas@111 21 font-size: 1.5em;
n@47 22 }
n@47 23
n@33 24 button {
n@33 25 /* Specify any button structure or style */
n@33 26 min-width: 20px;
n@33 27 background-color: #ddd
n@33 28 }
n@33 29
n@33 30 div#slider {
n@33 31 /* Specify any structure for the slider holder interface */
n@33 32 background-color: #eee;
n@33 33 height: 150px;
n@47 34 margin-bottom: 5px;
n@47 35 }
n@47 36
n@47 37 div.sliderScale {
n@47 38 width: 100%;
n@98 39 min-height: 30px;
n@98 40 }
n@98 41
n@47 42 div.sliderScale span {
n@47 43 /* Any formatting of text below scale */
n@193 44 font-size: 1.2em;
n@47 45 min-width: 5px;
n@47 46 height: 20px;
n@47 47 position: absolute;
n@33 48 }
n@33 49
n@33 50 div.track-slider {
b@100 51 /* Specify any structure for the slider objects */
n@33 52 position: absolute;
n@33 53 height: inherit;
n@33 54 width: 12px;
n@33 55 float: left;
n@33 56 background-color: rgb(100,200,100);
n@33 57 }
n@33 58
n@347 59 div#outside-reference {
n@347 60 width:120px;
n@347 61 padding-left: 55px;
n@347 62 margin-left: 100px;
n@347 63 height:20px;
n@347 64 margin-bottom:5px;
n@347 65 background-color: rgb(100,200,100);
n@347 66 }
n@347 67
nicholas@271 68 div.track-slider-disabled {
nicholas@271 69 background-color: rgb(100,100,100);
nicholas@271 70 }
nicholas@271 71
n@154 72 div.track-slider-playing {
n@154 73 background-color: #FF0000;
n@154 74 }
n@154 75
n@154 76 div.comment-box-playing {
n@154 77 background-color: #FFDDDD;
n@154 78 }