annotate interfaces/ape.css @ 1106:282dfb8076f5

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