annotate mushra.css @ 1946:1d08f8aee098

Merge WAC paper
author Dave Moffat <me@davemoffat.com>
date Thu, 24 Sep 2015 09:52:08 +0100
parents 4988c805ff9e
children 6e01da7f9f92
rev   line source
me@1942 1 /*
me@1942 2 * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own!
me@1942 3 *
me@1942 4 */
me@1942 5 body {
me@1942 6 /* Set the background colour (note US English spelling) to grey*/
me@1942 7 background-color: #ddd
me@1942 8 }
me@1942 9
me@1942 10 div.pageTitle {
me@1942 11 width: auto;
me@1942 12 height: 20px;
me@1942 13 margin-top: 20px;
me@1942 14 }
me@1942 15
me@1942 16 div.pageTitle span{
me@1942 17 font-size: 1.5em;
me@1942 18 }
me@1942 19
me@1942 20 div.testHalt {
me@1942 21 /* Specify any colouring during the test halt for pre/post questions */
me@1942 22 background-color: rgba(0,0,0,0.5);
me@1942 23 /* Don't mess with this bit */
me@1942 24 z-index: 2;
me@1942 25 width: 100%;
me@1942 26 height: 100%;
me@1942 27 position: absolute;
me@1942 28 left: 0px;
me@1942 29 top: 0px;
me@1942 30 }
me@1942 31
me@1942 32 button {
me@1942 33 /* Specify any button structure or style */
me@1942 34 min-width: 20px;
me@1942 35 background-color: #ddd
me@1942 36 }
me@1942 37
me@1942 38
me@1942 39 div.track-slider {
me@1942 40 float: left;
me@1942 41 width: 94px;
me@1942 42 border: solid;
me@1942 43 border-width: 1px;
me@1942 44 border-color: black;
me@1942 45 padding:2px;
me@1942 46 }
me@1942 47
me@1942 48 input[type=range][orient=vertical]
me@1942 49 {
me@1942 50 writing-mode: bt-lr; /* IE */
me@1942 51 -webkit-appearance: slider-vertical; /* WebKit */
me@1942 52 width: 8px;
me@1942 53 height: 175px;
me@1942 54 padding: 0 5px;
me@1942 55 }