annotate ape.css @ 932:ec9a867e4512

Bug #1258 Fixed. audioObject.metric.startListening now writes to console.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Fri, 29 May 2015 16:27:05 +0100
parents
children 2dc61bd6494e
rev   line source
n@932 1 /*
n@932 2 * Hold any style information for APE interface. Customise if you like to make the interface your own!
n@932 3 *
n@932 4 */
n@932 5 body {
n@932 6 /* Set the background colour (note US English spelling) to grey*/
n@932 7 background-color: #ddd
n@932 8 }
n@932 9
n@932 10 div.title {
n@932 11 /* Specify any colouring for the title */
n@932 12 }
n@932 13
n@932 14 div.pageTitle {
n@932 15 width: auto;
n@932 16 height: 20px;
n@932 17 margin-top: 20px;
n@932 18 }
n@932 19
n@932 20 div.pageTitle span{
n@932 21 font-size: 1.5em;
n@932 22 }
n@932 23
n@932 24 div.testHalt {
n@932 25 /* Specify any colouring during the test halt for pre/post questions */
n@932 26 background-color: rgba(0,0,0,0.5);
n@932 27 /* Don't mess with this bit */
n@932 28 z-index: 2;
n@932 29 width: 100%;
n@932 30 height: 100%;
n@932 31 position: absolute;
n@932 32 left: 0px;
n@932 33 top: 0px;
n@932 34 }
n@932 35
n@932 36 button {
n@932 37 /* Specify any button structure or style */
n@932 38 min-width: 20px;
n@932 39 background-color: #ddd
n@932 40 }
n@932 41
n@932 42 div#slider {
n@932 43 /* Specify any structure for the slider holder interface */
n@932 44 background-color: #eee;
n@932 45 height: 150px;
n@932 46 margin-bottom: 5px;
n@932 47 }
n@932 48
n@932 49 div.sliderScale {
n@932 50 width: 100%;
n@932 51 min-height: 30px;
n@932 52 }
n@932 53
n@932 54 div.sliderScale span{
n@932 55 font-size: 1.2em;
n@932 56 }
n@932 57
n@932 58 div.sliderScale span {
n@932 59 /* Any formatting of text below scale */
n@932 60 min-width: 5px;
n@932 61 height: 20px;
n@932 62 height: 100%;
n@932 63 position: absolute;
n@932 64 }
n@932 65
n@932 66 div.track-slider {
n@932 67 /* Specify any structure for the slider objects */
n@932 68 position: absolute;
n@932 69 height: inherit;
n@932 70 width: 12px;
n@932 71 float: left;
n@932 72 background-color: rgb(100,200,100);
n@932 73 }
n@932 74
n@932 75 div.comment-div {
n@932 76 border:#444444;
n@932 77 border-style:solid;
n@932 78 border-width:1px;
n@932 79 width: 624px;
n@932 80 float: left;
n@932 81 margin: 5px;
n@932 82 }
n@932 83
n@932 84 div.comment-div span {
n@932 85 margin-left: 15px;
n@932 86 }
n@932 87
n@932 88 div.popupHolder {
n@932 89 width: 500px;
n@932 90 height: 250px;
n@932 91 background-color: #fff;
n@932 92 border-radius: 10px;
n@932 93 box-shadow: 0px 0px 50px #000;
n@932 94 z-index: 2;
n@932 95 }
n@932 96
n@932 97 button.popupButton {
n@932 98 /* Button for popup window
n@932 99 */
n@932 100 width: 50px;
n@932 101 height: 25px;
n@932 102 position: absolute;
n@932 103 left: 440px;
n@932 104 top: 215px;
n@932 105 border-radius: 5px;
n@932 106 border: #444;
n@932 107 border-width: 1px;
n@932 108 border-style: solid;
n@932 109 background-color: #fff;
n@932 110 }
n@932 111
n@932 112 textarea.trackComment {
n@932 113 width: 618px;
n@932 114 margin-right:15px;
n@932 115 }