annotate interfaces/mushra.css @ 1112:28aa066720ed

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