annotate interfaces/horizontal-sliders.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 c0022a09c4f6
rev   line source
n@1105 1 /*
n@1105 2 * Hold any style information for MUSHRA 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.pageTitle {
n@1105 11 width: auto;
n@1105 12 height: 20px;
n@1105 13 margin: 10px 0px;
n@1105 14 }
n@1105 15
n@1105 16 div.pageTitle span{
n@1105 17 font-size: 1.5em;
n@1105 18 }
n@1105 19
n@1105 20 div.testHalt {
n@1105 21 /* Specify any colouring during the test halt for pre/post questions */
n@1105 22 background-color: rgba(0,0,0,0.5);
n@1105 23 /* Don't mess with this bit */
n@1105 24 z-index: 2;
n@1105 25 width: 100%;
n@1105 26 height: 100%;
n@1105 27 position: absolute;
n@1105 28 left: 0px;
n@1105 29 top: 0px;
n@1105 30 }
n@1105 31
n@1105 32 button {
n@1105 33 /* Specify any button structure or style */
n@1105 34 min-width: 20px;
n@1105 35 background-color: #ddd
n@1105 36 }
n@1105 37
n@1105 38 div#slider-holder {
n@1105 39 height: inherit;
n@1105 40 position: absolute;
n@1105 41 left: 0px;
n@1105 42 z-index: 3;
n@1105 43 margin-top:25px;
n@1105 44 }
n@1105 45
n@1105 46 div#scale-holder {
n@1105 47 height: inherit;
n@1105 48 position: absolute;
n@1105 49 left: 0px;
n@1105 50 z-index: 2;
n@1105 51 }
n@1105 52
n@1105 53 div#scale-text-holder {
n@1105 54 position:relative;
n@1105 55 float: left;
n@1105 56 }
n@1105 57 div.scale-text {
n@1105 58 position: absolute;
n@1105 59 font-size: 1.2em;
n@1105 60 }
n@1105 61
n@1105 62 canvas#scale-canvas {
n@1105 63 position: relative;
n@1105 64 float: left;
n@1105 65 }
n@1105 66
n@1105 67 div.track-slider {
n@1105 68 float: left;
n@1105 69 height: 94px;
n@1105 70 border: solid;
n@1105 71 border-width: 1px;
n@1105 72 border-color: black;
n@1105 73 padding:2px;
n@1105 74 margin-left: 94px;
n@1105 75 margin-bottom: 25px;
n@1105 76 }
n@1105 77
n@1105 78 div.track-slider-title {
n@1105 79 float: left;
n@1105 80 padding-top: 40px;
n@1105 81 width: 100px;
n@1105 82 }
n@1105 83
n@1105 84 button.track-slider-button {
n@1105 85 float: left;
n@1105 86 width: 100px;
n@1105 87 height: 94px;
n@1105 88 }
n@1105 89
n@1105 90
n@1105 91 button.outside-reference {
n@1105 92 width:120px;
n@1105 93 height:20px;
n@1105 94 margin-bottom:5px;
n@1105 95 position: absolute;
n@1105 96 }
n@1105 97
n@1105 98 div.track-slider-playing {
n@1105 99 background-color: #FFDDDD;
n@1105 100 }
n@1105 101
n@1105 102 input.track-slider-range {
n@1105 103 float: left;
n@1105 104 margin: 2px 10px;
n@1105 105 }
n@1105 106
n@1105 107 input[type=range]
n@1105 108 {
n@1105 109 height: 94px;
n@1105 110 padding: 0px;
n@1105 111 color: rgb(255, 144, 144);
n@1105 112 }
n@1105 113
n@1105 114 input[type=range]::-webkit-slider-runnable-track {
n@1105 115 cursor: pointer;
n@1105 116 background: #fff;
n@1105 117 border-radius: 4px;
n@1105 118 border: 1px solid #000;
n@1105 119 }
n@1105 120
n@1105 121 input[type=range]::-moz-range-track {
n@1105 122 height: 8px;
n@1105 123 cursor: pointer;
n@1105 124 background: #fff;
n@1105 125 border-radius: 4px;
n@1105 126 border: 1px solid #000;
n@1105 127 }
n@1105 128
n@1105 129 input.track-slider-not-moved[type=range]::-webkit-slider-runnable-track {
n@1105 130 background: #aaa;
n@1105 131 }
n@1105 132
n@1105 133 input.track-slider-not-moved[type=range]::-moz-range-track {
n@1105 134 background: #aaa;
n@1105 135 }
n@1105 136
n@1105 137 div#page-count {
n@1105 138 float: left;
n@1105 139 margin: 0px 5px;
n@1105 140 }
n@1105 141
n@1105 142 div#master-volume-holder {
n@1105 143 position: absolute;
n@1105 144 top: 10px;
n@1105 145 left: 120px;
n@1105 146 }