annotate ape.css @ 1994:2a7d9e3394c8

Paper: merge, table of listening test tools, other changes
author Brecht De Man <b.deman@qmul.ac.uk>
date Mon, 27 Apr 2015 16:43:50 +0100
parents 57815e764542
children e736301ff2e1
rev   line source
nickjillings@1643 1 /*
nickjillings@1643 2 * Hold any style information for APE interface. Customise if you like to make the interface your own!
nickjillings@1643 3 *
nickjillings@1643 4 */
nickjillings@1643 5 body {
nickjillings@1643 6 /* Set the background colour (note US English spelling) to grey*/
nickjillings@1643 7 background-color: #ddd
nickjillings@1643 8 }
nickjillings@1643 9
nickjillings@1643 10 div.title {
nickjillings@1643 11 /* Specify any colouring for the title */
nickjillings@1643 12 }
nickjillings@1643 13
nickjillings@1657 14 div.pageTitle {
nickjillings@1657 15 width: auto;
nickjillings@1657 16 height: 20px;
nickjillings@1657 17 }
nickjillings@1657 18
nickjillings@1643 19 div.testHalt {
nickjillings@1643 20 /* Specify any colouring during the test halt for pre/post questions */
nickjillings@1643 21 background-color: rgba(0,0,0,0.5);
nickjillings@1643 22 /* Don't mess with this bit */
nickjillings@1643 23 z-index: 2;
nickjillings@1643 24 width: 100%;
nickjillings@1643 25 height: 100%;
nickjillings@1643 26 position: absolute;
nickjillings@1643 27 left: 0px;
nickjillings@1643 28 top: 0px;
nickjillings@1643 29 }
nickjillings@1643 30
nickjillings@1643 31 button {
nickjillings@1643 32 /* Specify any button structure or style */
nickjillings@1643 33 min-width: 20px;
nickjillings@1643 34 background-color: #ddd
nickjillings@1643 35 }
nickjillings@1643 36
nickjillings@1643 37 div#slider {
nickjillings@1643 38 /* Specify any structure for the slider holder interface */
nickjillings@1643 39 background-color: #eee;
nickjillings@1643 40 height: 150px;
nickjillings@1657 41 margin-bottom: 5px;
nickjillings@1657 42 }
nickjillings@1657 43
nickjillings@1657 44 div.sliderScale {
nickjillings@1657 45 width: 100%;
nickjillings@1657 46 min-height: 20px;
nickjillings@1657 47 }
nickjillings@1657 48
nickjillings@1657 49 div.sliderScale span {
nickjillings@1657 50 /* Any formatting of text below scale */
nickjillings@1657 51 min-width: 5px;
nickjillings@1657 52 height: 20px;
nickjillings@1657 53 height: 100%;
nickjillings@1657 54 position: absolute;
nickjillings@1643 55 }
nickjillings@1643 56
nickjillings@1643 57 div.track-slider {
nickjillings@1643 58 /* Specify any strcture for the slider objects */
nickjillings@1643 59 position: absolute;
nickjillings@1643 60 height: inherit;
nickjillings@1643 61 width: 12px;
nickjillings@1643 62 float: left;
nickjillings@1643 63 background-color: rgb(100,200,100);
nickjillings@1643 64 }
nickjillings@1643 65
nickjillings@1647 66 div.comment-div {
nickjillings@1647 67 border:#444444;
nickjillings@1647 68 border-style:solid;
nickjillings@1647 69 border-width:1px;
nickjillings@1647 70 width: 624px;
nickjillings@1647 71 float: left;
nickjillings@1647 72 margin: 5px;
nickjillings@1647 73 }
nickjillings@1648 74
nickjillings@1647 75 div.comment-div span {
nickjillings@1647 76 margin-left: 15px;
nickjillings@1647 77 }
nickjillings@1647 78
nickjillings@1643 79 div.popupHolder {
nickjillings@1643 80 width: 500px;
nickjillings@1643 81 height: 250px;
nickjillings@1643 82 background-color: #fff;
nickjillings@1643 83 border-radius: 10px;
nickjillings@1643 84 box-shadow: 0px 0px 50px #000;
nickjillings@1643 85 z-index: 2;
nickjillings@1643 86 }
nickjillings@1643 87
nickjillings@1648 88 button.popupButton {
nickjillings@1643 89 /* Button for popup window
nickjillings@1643 90 */
nickjillings@1643 91 width: 50px;
nickjillings@1643 92 height: 25px;
nickjillings@1643 93 position: absolute;
nickjillings@1643 94 left: 440px;
nickjillings@1643 95 top: 215px;
nickjillings@1643 96 border-radius: 5px;
nickjillings@1643 97 border: #444;
nickjillings@1643 98 border-width: 1px;
nickjillings@1643 99 border-style: solid;
nickjillings@1643 100 background-color: #fff;
nickjillings@1643 101 }