annotate interfaces/discrete.css @ 1145:96a9c9703849

Beginning discrete / likert interfaces.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Wed, 13 Jan 2016 16:49:59 +0000
parents
children aad881fa0891
rev   line source
n@1145 1 /*
n@1145 2 * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own!
n@1145 3 *
n@1145 4 */
n@1145 5 body {
n@1145 6 /* Set the background colour (note US English spelling) to grey*/
n@1145 7 background-color: #ddd
n@1145 8 }
n@1145 9
n@1145 10 div.pageTitle {
n@1145 11 width: auto;
n@1145 12 height: 20px;
n@1145 13 margin: 10px 0px;
n@1145 14 }
n@1145 15
n@1145 16 div.pageTitle span{
n@1145 17 font-size: 1.5em;
n@1145 18 }
n@1145 19
n@1145 20 div.testHalt {
n@1145 21 /* Specify any colouring during the test halt for pre/post questions */
n@1145 22 background-color: rgba(0,0,0,0.5);
n@1145 23 /* Don't mess with this bit */
n@1145 24 z-index: 2;
n@1145 25 width: 100%;
n@1145 26 height: 100%;
n@1145 27 position: absolute;
n@1145 28 left: 0px;
n@1145 29 top: 0px;
n@1145 30 }
n@1145 31
n@1145 32 button {
n@1145 33 /* Specify any button structure or style */
n@1145 34 min-width: 20px;
n@1145 35 background-color: #ddd
n@1145 36 }
n@1145 37
n@1145 38 div#slider-holder {
n@1145 39 height: inherit;
n@1145 40 position: absolute;
n@1145 41 left: 0px;
n@1145 42 z-index: 3;
n@1145 43 margin-top:25px;
n@1145 44 }
n@1145 45
n@1145 46 div#scale-holder {
n@1145 47 height: inherit;
n@1145 48 position: absolute;
n@1145 49 left: 0px;
n@1145 50 z-index: 2;
n@1145 51 }
n@1145 52
n@1145 53 div#scale-text-holder {
n@1145 54 position:relative;
n@1145 55 float: left;
n@1145 56 }
n@1145 57 div.scale-text {
n@1145 58 position: absolute;
n@1145 59 font-size: 1.2em;
n@1145 60 }
n@1145 61
n@1145 62 canvas#scale-canvas {
n@1145 63 position: relative;
n@1145 64 float: left;
n@1145 65 }
n@1145 66
n@1145 67 div.track-slider {
n@1145 68 float: left;
n@1145 69 height: 30px;
n@1145 70 border: solid;
n@1145 71 border-width: 1px;
n@1145 72 border-color: black;
n@1145 73 padding:2px;
n@1145 74 margin-left: 94px;
n@1145 75 margin-bottom: 30px;
n@1145 76 }
n@1145 77
n@1145 78 div.track-slider-range {
n@1145 79 float: left;
n@1145 80 height: 100%;
n@1145 81 margin: 0px 10px;
n@1145 82 }
n@1145 83
n@1145 84 div.track-slider-title {
n@1145 85 float: left;
n@1145 86 padding-top: 5px;
n@1145 87 width: 100px;
n@1145 88 }
n@1145 89
n@1145 90 button.track-slider-button {
n@1145 91 float: left;
n@1145 92 width: 100px;
n@1145 93 height: 30px;
n@1145 94 }
n@1145 95
n@1145 96
n@1145 97 button.outside-reference {
n@1145 98 width:120px;
n@1145 99 height:20px;
n@1145 100 margin-bottom:5px;
n@1145 101 position: absolute;
n@1145 102 }
n@1145 103
n@1145 104 div.track-slider-playing {
n@1145 105 background-color: #FFDDDD;
n@1145 106 }