annotate mushra.css @ 1118:3edcbbea168b

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