view mushra.css @ 753:66d732c2bc14

Index page now links to example APE project, example MUSHRA project, test creator, analysis page, citing info, GNU license, and instructions. Instructions and example project contain info on checkboxes.
author Brecht De Man <BrechtDeMan@users.noreply.github.com>
date Fri, 18 Dec 2015 18:26:46 +0000
parents
children 8540d153caec
line wrap: on
line source
/*
 * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own!
 * 
 */
body {
	/* Set the background colour (note US English spelling) to grey*/
	background-color: #ddd
}

div.pageTitle {
	width: auto;
	height: 20px;
	margin-top: 20px;
}

div.pageTitle span{
	font-size: 1.5em;
}

div.testHalt {
	/* Specify any colouring during the test halt for pre/post questions */
	background-color: rgba(0,0,0,0.5);
	/* Don't mess with this bit */
	z-index: 2;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
}

button {
	/* Specify any button structure or style */
	min-width: 20px;
	background-color: #ddd
}

div#slider-holder {
	height: inherit;
	position: absolute;
	top: 125px;
	left: 0px;
	z-index: 2;
}

div#scale-holder {
	height: inherit;
	position: absolute;
	top: 125px;
	left: 0px;
	z-index: 3;
}

div.track-slider {
	float: left;
	width: 94px;
	border: solid;
	border-width: 1px;
	border-color: black;
	padding:2px;
	margin-left: 50px;
}

div.track-slider-playing {
	background-color: #FFDDDD;
}

input.track-slider-range {
	margin: 2px 0px;
}

input[type=range][orient=vertical]
{
    writing-mode: bt-lr; /* IE */
    -webkit-appearance: slider-vertical; /* WebKit */
    width: 8px;
    padding: 0 5px;
    color: rgb(255, 144, 144);
}

input[type=range]::-webkit-slider-runnable-track {
	width: 8px;
	cursor: pointer;
	background: #fff;
	border-radius: 4px;
	border: 1px solid #000;
}

input[type=range]::-moz-range-track {
	width: 8px;
	cursor: pointer;
	background: #fff;
	border-radius: 4px;
	border: 1px solid #000;
}

input.track-slider-not-moved[type=range]::-webkit-slider-runnable-track {
	background: #aaa;
}

input.track-slider-not-moved[type=range]::-moz-range-track {
	background: #aaa;
}

input[type=range]::-moz-range-thumb {
	margin-left: -7px;
	cursor: pointer;
	margin-top: -1px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
	box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
}

input[type=range]::-webkit-slider-thumb {
	margin-left: -7px;
	cursor: pointer;
	margin-top: -1px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
	box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
}