annotate mushra.css @ 437:da368f23bcd3 Dev_main

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