annotate ape.css @ 783:be470e2c4f77

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