annotate interfaces/ape.css @ 1105:d2afd2ee8684

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