annotate ape.css @ 767:d7f2912bf487

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
children 0795031754d7 1b6fa37d46a4
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@767 17 margin-top: 20px;
n@767 18 }
n@767 19
n@767 20 div.pageTitle span{
n@767 21 font-size: 1.5em;
n@767 22 }
n@767 23
n@767 24 button {
n@767 25 /* Specify any button structure or style */
n@767 26 min-width: 20px;
n@767 27 background-color: #ddd
n@767 28 }
n@767 29
n@767 30 div#slider {
n@767 31 /* Specify any structure for the slider holder interface */
n@767 32 background-color: #eee;
n@767 33 height: 150px;
n@767 34 margin-bottom: 5px;
n@767 35 }
n@767 36
n@767 37 div.sliderScale {
n@767 38 width: 100%;
n@767 39 min-height: 30px;
n@767 40 }
n@767 41
n@767 42 div.sliderScale span {
n@767 43 /* Any formatting of text below scale */
n@767 44 font-size: 1.2em;
n@767 45 min-width: 5px;
n@767 46 height: 20px;
n@767 47 position: absolute;
n@767 48 }
n@767 49
n@767 50 div.track-slider {
n@767 51 /* Specify any structure for the slider objects */
n@767 52 position: absolute;
n@767 53 height: inherit;
n@767 54 width: 12px;
n@767 55 float: left;
n@767 56 background-color: rgb(100,200,100);
n@767 57 }
n@767 58
n@767 59 div#outside-reference {
n@767 60 width:120px;
n@767 61 padding-left: 55px;
n@767 62 margin-left: 100px;
n@767 63 height:20px;
n@767 64 margin-bottom:5px;
n@767 65 background-color: rgb(100,200,100);
n@767 66 }
n@767 67
n@767 68 div.track-slider-disabled {
n@767 69 background-color: rgb(100,100,100);
n@767 70 }
n@767 71
n@767 72 div.track-slider-playing {
n@767 73 background-color: #FF0000;
n@767 74 }
n@767 75
n@767 76 div.comment-box-playing {
n@767 77 background-color: #FFDDDD;
n@767 78 }