Mercurial > hg > webaudioevaluationtool
annotate interfaces/horizontal-sliders.css @ 2548:67cf18d08af8
Merge branch 'master' of https://github.com/BrechtDeMan/WebAudioEvaluationTool
author | www-data <www-data@sucuk.dcs.qmul.ac.uk> |
---|---|
date | Thu, 17 Nov 2016 13:20:56 +0000 |
parents | 464c6c6692d6 |
children | 9c01d5dd22a2 |
rev | line source |
---|---|
nickjillings@1343 | 1 /* |
nickjillings@1343 | 2 * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own! |
nickjillings@1343 | 3 * |
nickjillings@1343 | 4 */ |
nicholas@2538 | 5 |
nickjillings@1343 | 6 body { |
nicholas@2538 | 7 /* Set the background colour (note US English spelling) to grey*/ |
nicholas@2538 | 8 background-color: #ddd |
nickjillings@1343 | 9 } |
nickjillings@1343 | 10 div.pageTitle { |
nicholas@2538 | 11 width: auto; |
nicholas@2538 | 12 height: 20px; |
nicholas@2538 | 13 margin: 10px 0px; |
nickjillings@1343 | 14 } |
nicholas@2538 | 15 div.pageTitle span { |
nicholas@2538 | 16 font-size: 1.5em; |
nickjillings@1343 | 17 } |
nickjillings@1343 | 18 button { |
nicholas@2538 | 19 /* Specify any button structure or style */ |
nicholas@2538 | 20 min-width: 20px; |
nicholas@2538 | 21 background-color: #ddd |
nickjillings@1343 | 22 } |
nickjillings@1343 | 23 div#slider-holder { |
nicholas@2538 | 24 height: inherit; |
nicholas@2538 | 25 position: absolute; |
nicholas@2538 | 26 left: 0px; |
nicholas@2538 | 27 z-index: 3; |
nicholas@2538 | 28 margin-top: 25px; |
nickjillings@1343 | 29 } |
nickjillings@1343 | 30 div#scale-holder { |
nicholas@2538 | 31 height: inherit; |
nicholas@2538 | 32 position: absolute; |
nicholas@2538 | 33 left: 0px; |
nicholas@2538 | 34 z-index: 2; |
nickjillings@1343 | 35 } |
nickjillings@1343 | 36 div#scale-text-holder { |
nicholas@2538 | 37 position: relative; |
nicholas@2538 | 38 float: left; |
nickjillings@1343 | 39 } |
nickjillings@1343 | 40 div.scale-text { |
nicholas@2538 | 41 position: absolute; |
nicholas@2538 | 42 font-size: 1.2em; |
nickjillings@1343 | 43 } |
nickjillings@1343 | 44 canvas#scale-canvas { |
nicholas@2538 | 45 position: relative; |
nicholas@2538 | 46 float: left; |
nickjillings@1343 | 47 } |
nickjillings@1343 | 48 div.track-slider { |
nicholas@2538 | 49 float: left; |
nicholas@2538 | 50 height: 94px; |
nicholas@2538 | 51 border: solid; |
nicholas@2538 | 52 border-width: 1px; |
nicholas@2538 | 53 border-color: black; |
nicholas@2538 | 54 padding: 2px; |
nicholas@2538 | 55 margin-left: 94px; |
nicholas@2538 | 56 margin-bottom: 25px; |
nickjillings@1343 | 57 } |
nickjillings@1343 | 58 div.track-slider-title { |
nicholas@2538 | 59 float: left; |
nicholas@2538 | 60 padding-top: 40px; |
nicholas@2538 | 61 width: 100px; |
nickjillings@1343 | 62 } |
nickjillings@1343 | 63 button.track-slider-button { |
nicholas@2538 | 64 float: left; |
nicholas@2538 | 65 width: 100px; |
nicholas@2538 | 66 height: 94px; |
nickjillings@1343 | 67 } |
nicholas@2396 | 68 div#outside-reference-holder { |
nicholas@2396 | 69 display: flex; |
nicholas@2396 | 70 align-content: center; |
nicholas@2396 | 71 justify-content: center; |
nicholas@2396 | 72 margin-bottom: 5px; |
nicholas@2396 | 73 } |
nickjillings@1343 | 74 button.outside-reference { |
nicholas@2396 | 75 position: inherit; |
nicholas@2396 | 76 margin: 0px 5px; |
nickjillings@1343 | 77 } |
nickjillings@1343 | 78 div.track-slider-playing { |
nicholas@2538 | 79 background-color: #FFDDDD; |
nickjillings@1343 | 80 } |
nickjillings@1343 | 81 input.track-slider-range { |
nicholas@2538 | 82 float: left; |
nicholas@2538 | 83 margin: 2px 10px; |
nickjillings@1343 | 84 } |
nicholas@2538 | 85 input[type=range] { |
nickjillings@1343 | 86 height: 94px; |
nickjillings@1347 | 87 padding: 0px; |
nickjillings@1343 | 88 color: rgb(255, 144, 144); |
nickjillings@1343 | 89 } |
nickjillings@1343 | 90 input[type=range]::-webkit-slider-runnable-track { |
nicholas@2538 | 91 cursor: pointer; |
nicholas@2538 | 92 background: #fff; |
nicholas@2538 | 93 border-radius: 4px; |
nicholas@2538 | 94 border: 1px solid #000; |
nickjillings@1343 | 95 } |
nickjillings@1343 | 96 input[type=range]::-moz-range-track { |
nicholas@2538 | 97 height: 8px; |
nicholas@2538 | 98 cursor: pointer; |
nicholas@2538 | 99 background: #fff; |
nicholas@2538 | 100 border-radius: 4px; |
nicholas@2538 | 101 border: 1px solid #000; |
nickjillings@1343 | 102 } |
nickjillings@1343 | 103 input.track-slider-not-moved[type=range]::-webkit-slider-runnable-track { |
nicholas@2538 | 104 background: #aaa; |
nickjillings@1343 | 105 } |
nickjillings@1343 | 106 input.track-slider-not-moved[type=range]::-moz-range-track { |
nicholas@2538 | 107 background: #aaa; |
nickjillings@1356 | 108 } |
nickjillings@1356 | 109 div#page-count { |
nickjillings@1356 | 110 float: left; |
nickjillings@1356 | 111 margin: 0px 5px; |
nickjillings@1356 | 112 } |
nickjillings@1356 | 113 div#master-volume-holder { |
nickjillings@1356 | 114 position: absolute; |
nickjillings@1356 | 115 top: 10px; |
nickjillings@1356 | 116 left: 120px; |
nicholas@2538 | 117 } |