annotate mushra.css @ 1422:5a4425dbb77e

Bug #1490: Popup button 'enter' key grab only bound once. APE Multi-interface has default metric response if only one axis used.
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Fri, 11 Dec 2015 11:42:28 +0000
parents 8147e19de61b
children 6e01da7f9f92
rev   line source
nickjillings@1400 1 /*
nickjillings@1400 2 * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own!
nickjillings@1400 3 *
nickjillings@1400 4 */
nickjillings@1400 5 body {
nickjillings@1400 6 /* Set the background colour (note US English spelling) to grey*/
nickjillings@1400 7 background-color: #ddd
nickjillings@1400 8 }
nickjillings@1400 9
nickjillings@1400 10 div.pageTitle {
nickjillings@1400 11 width: auto;
nickjillings@1400 12 height: 20px;
nickjillings@1400 13 margin-top: 20px;
nickjillings@1400 14 }
nickjillings@1400 15
nickjillings@1400 16 div.pageTitle span{
nickjillings@1400 17 font-size: 1.5em;
nickjillings@1400 18 }
nickjillings@1400 19
nickjillings@1400 20 div.testHalt {
nickjillings@1400 21 /* Specify any colouring during the test halt for pre/post questions */
nickjillings@1400 22 background-color: rgba(0,0,0,0.5);
nickjillings@1400 23 /* Don't mess with this bit */
nickjillings@1400 24 z-index: 2;
nickjillings@1400 25 width: 100%;
nickjillings@1400 26 height: 100%;
nickjillings@1400 27 position: absolute;
nickjillings@1400 28 left: 0px;
nickjillings@1400 29 top: 0px;
nickjillings@1400 30 }
nickjillings@1400 31
nickjillings@1400 32 button {
nickjillings@1400 33 /* Specify any button structure or style */
nickjillings@1400 34 min-width: 20px;
nickjillings@1400 35 background-color: #ddd
nickjillings@1400 36 }
nickjillings@1400 37
nickjillings@1400 38
nickjillings@1400 39 div.track-slider {
nickjillings@1400 40 float: left;
nickjillings@1400 41 width: 94px;
nickjillings@1400 42 border: solid;
nickjillings@1400 43 border-width: 1px;
nickjillings@1400 44 border-color: black;
nickjillings@1400 45 padding:2px;
nickjillings@1400 46 }
nickjillings@1400 47
nickjillings@1400 48 input[type=range][orient=vertical]
nickjillings@1400 49 {
nickjillings@1400 50 writing-mode: bt-lr; /* IE */
nickjillings@1400 51 -webkit-appearance: slider-vertical; /* WebKit */
nickjillings@1400 52 width: 8px;
nickjillings@1400 53 height: 175px;
nickjillings@1400 54 padding: 0 5px;
nickjillings@1400 55 }