annotate ape.css @ 1608:a21deccefe7d

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