annotate ape.css @ 1140:8af1ee63510d

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