annotate interfaces/mushra.css @ 577:80e6cf42a17b Dev_main

WAC2016 review updated PDF
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Thu, 25 Feb 2016 11:57:24 +0000
parents 92f26057b934
children c0022a09c4f6
rev   line source
n@470 1 /*
n@470 2 * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own!
n@470 3 *
n@470 4 */
n@470 5 body {
n@470 6 /* Set the background colour (note US English spelling) to grey*/
n@470 7 background-color: #ddd
n@470 8 }
n@470 9
n@470 10 div.pageTitle {
n@470 11 width: auto;
n@470 12 height: 20px;
n@470 13 margin: 10px 0px;
n@470 14 }
n@470 15
n@470 16 div.pageTitle span{
n@470 17 font-size: 1.5em;
n@470 18 }
n@470 19
n@470 20 div.testHalt {
n@470 21 /* Specify any colouring during the test halt for pre/post questions */
n@470 22 background-color: rgba(0,0,0,0.5);
n@470 23 /* Don't mess with this bit */
n@470 24 z-index: 2;
n@470 25 width: 100%;
n@470 26 height: 100%;
n@470 27 position: absolute;
n@470 28 left: 0px;
n@470 29 top: 0px;
n@470 30 }
n@470 31
n@470 32 button {
n@470 33 /* Specify any button structure or style */
n@470 34 min-width: 20px;
n@470 35 background-color: #ddd
n@470 36 }
n@470 37
n@470 38 div#slider-holder {
n@470 39 height: inherit;
n@470 40 position: absolute;
n@470 41 left: 0px;
n@470 42 z-index: 3;
n@470 43 }
n@470 44
n@470 45 div#scale-holder {
n@470 46 height: inherit;
n@470 47 position: absolute;
n@470 48 left: 0px;
n@470 49 z-index: 2;
n@470 50 }
n@470 51
n@470 52 div#scale-text-holder {
n@470 53 position:relative;
n@470 54 width: 100px;
n@470 55 float: left;
n@470 56 }
n@470 57 div.scale-text {
n@470 58 position: absolute;
n@470 59 }
n@470 60
n@470 61 canvas#scale-canvas {
n@470 62 position: relative;
n@470 63 float: left;
n@470 64 }
n@470 65
n@470 66 div.track-slider {
n@470 67 float: left;
n@470 68 width: 94px;
n@470 69 border: solid;
n@470 70 border-width: 1px;
n@470 71 border-color: black;
n@470 72 padding:2px;
n@470 73 margin-left: 50px;
n@470 74 }
n@470 75
n@470 76 button.outside-reference {
n@470 77 width:120px;
n@470 78 height:20px;
n@470 79 margin-bottom:5px;
n@470 80 position: absolute;
n@470 81 }
n@470 82
n@470 83 div.track-slider-playing {
n@470 84 background-color: #FFDDDD;
n@470 85 }
n@470 86
n@470 87 input.track-slider-range {
n@470 88 margin: 2px 0px;
n@470 89 }
n@470 90
n@470 91 input[type=range][orient=vertical]
n@470 92 {
n@470 93 writing-mode: bt-lr; /* IE */
n@470 94 -webkit-appearance: slider-vertical; /* WebKit */
n@470 95 width: 8px;
n@470 96 padding: 0 5px;
n@470 97 color: rgb(255, 144, 144);
n@470 98 }
n@470 99
n@470 100 input[type=range]::-webkit-slider-runnable-track {
n@470 101 width: 8px;
n@470 102 cursor: pointer;
n@470 103 background: #fff;
n@470 104 border-radius: 4px;
n@470 105 border: 1px solid #000;
n@470 106 }
n@470 107
n@470 108 input[type=range]::-moz-range-track {
n@470 109 width: 8px;
n@470 110 cursor: pointer;
n@470 111 background: #fff;
n@470 112 border-radius: 4px;
n@470 113 border: 1px solid #000;
n@470 114 }
n@470 115
n@470 116 input.track-slider-not-moved[type=range]::-webkit-slider-runnable-track {
n@470 117 background: #aaa;
n@470 118 }
n@470 119
n@470 120 input.track-slider-not-moved[type=range]::-moz-range-track {
n@470 121 background: #aaa;
n@470 122 }
n@470 123
n@470 124
n@470 125 input[type=range]::-moz-range-thumb {
n@470 126 margin-left: -7px;
n@470 127 cursor: pointer;
n@470 128 margin-top: -1px;
n@470 129 box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
n@470 130 }
n@470 131
n@470 132 input[type=range]::-webkit-slider-thumb {
n@470 133 cursor: pointer;
n@470 134 margin-top: -1px;
n@470 135 margin-left: -4px;
n@470 136 }
n@485 137
n@485 138 div#page-count {
n@485 139 float: left;
n@485 140 margin: 0px 5px;
n@485 141 }
n@485 142
n@485 143 div#master-volume-holder {
n@485 144 position: absolute;
n@485 145 top: 10px;
n@485 146 left: 120px;
n@485 147 }