annotate interfaces/discrete.css @ 497:da8b22838465 Dev_main

Minor APE fixes. Dragging now centred rather than edge. Scale markers aligned without window resizing needed.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Fri, 29 Jan 2016 11:39:29 +0000
parents 92f26057b934
children c0022a09c4f6
rev   line source
n@474 1 /*
n@474 2 * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own!
n@474 3 *
n@474 4 */
n@474 5 body {
n@474 6 /* Set the background colour (note US English spelling) to grey*/
n@474 7 background-color: #ddd
n@474 8 }
n@474 9
n@474 10 div.pageTitle {
n@474 11 width: auto;
n@474 12 height: 20px;
n@474 13 margin: 10px 0px;
n@474 14 }
n@474 15
n@474 16 div.pageTitle span{
n@474 17 font-size: 1.5em;
n@474 18 }
n@474 19
n@474 20 div.testHalt {
n@474 21 /* Specify any colouring during the test halt for pre/post questions */
n@474 22 background-color: rgba(0,0,0,0.5);
n@474 23 /* Don't mess with this bit */
n@474 24 z-index: 2;
n@474 25 width: 100%;
n@474 26 height: 100%;
n@474 27 position: absolute;
n@474 28 left: 0px;
n@474 29 top: 0px;
n@474 30 }
n@474 31
n@474 32 button {
n@474 33 /* Specify any button structure or style */
n@474 34 min-width: 20px;
n@474 35 background-color: #ddd
n@474 36 }
n@474 37
n@474 38 div#slider-holder {
n@474 39 height: inherit;
n@474 40 position: absolute;
n@474 41 left: 0px;
n@474 42 z-index: 3;
n@474 43 margin-top:25px;
n@474 44 }
n@474 45
n@474 46 div#scale-holder {
n@474 47 position: absolute;
n@474 48 left: 0px;
n@474 49 z-index: 2;
n@474 50 }
n@474 51
n@474 52 div#scale-text-holder {
n@474 53 position:relative;
n@474 54 float: left;
n@474 55 }
n@474 56 div.scale-text {
n@474 57 position: absolute;
n@474 58 font-size: 1.2em;
n@474 59 }
n@474 60
n@474 61 canvas#scale-canvas {
n@474 62 position: relative;
n@474 63 float: left;
n@474 64 }
n@474 65
n@474 66 div.track-slider {
n@474 67 float: left;
n@474 68 height: 30px;
n@474 69 border: solid;
n@474 70 border-width: 1px;
n@474 71 border-color: black;
n@474 72 padding:2px;
n@474 73 margin-left: 94px;
n@474 74 margin-bottom: 30px;
n@474 75 }
n@474 76
n@474 77 div.track-slider-range {
n@474 78 float: left;
n@474 79 height: 100%;
n@475 80 margin: 0px 50px;
n@475 81 position: relative;
n@474 82 }
n@474 83
n@474 84 div.track-slider-title {
n@474 85 float: left;
n@474 86 padding-top: 5px;
n@474 87 width: 100px;
n@474 88 }
n@474 89
n@474 90 button.track-slider-button {
n@474 91 float: left;
n@474 92 width: 100px;
n@474 93 height: 30px;
n@474 94 }
n@474 95
n@475 96 input.track-radio {
n@475 97 position: absolute;
n@475 98 margin: 9px 0px;
n@475 99 }
n@474 100
n@474 101 button.outside-reference {
n@474 102 width:120px;
n@474 103 height:20px;
n@474 104 margin-bottom:5px;
n@474 105 position: absolute;
n@474 106 }
n@474 107
n@474 108 div.track-slider-playing {
n@474 109 background-color: #FFDDDD;
n@485 110 }
n@485 111
n@485 112 div#page-count {
n@485 113 float: left;
n@485 114 margin: 0px 5px;
n@485 115 }
n@485 116
n@485 117 div#master-volume-holder {
n@485 118 position: absolute;
n@485 119 top: 10px;
n@485 120 left: 120px;
n@474 121 }