annotate ape.css @ 33:c61a92659541 Dev_main

Added ape.css, removed styles from .js to clean up.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Fri, 10 Apr 2015 12:02:10 +0100
parents
children 8a78c6d38c5f
rev   line source
n@33 1 /*
n@33 2 * Hold any style information for APE interface. Customise if you like to make the interface your own!
n@33 3 *
n@33 4 */
n@33 5 body {
n@33 6 /* Set the background colour (note US English spelling) to grey*/
n@33 7 background-color: #ddd
n@33 8 }
n@33 9
n@33 10 div.title {
n@33 11 /* Specify any colouring for the title */
n@33 12 }
n@33 13
n@33 14 div.testHalt {
n@33 15 /* Specify any colouring during the test halt for pre/post questions */
n@33 16 background-color: rgba(0,0,0,0.5);
n@33 17 /* Don't mess with this bit */
n@33 18 z-index: 2;
n@33 19 width: 100%;
n@33 20 height: 100%;
n@33 21 position: absolute;
n@33 22 left: 0px;
n@33 23 top: 0px;
n@33 24 }
n@33 25
n@33 26 button {
n@33 27 /* Specify any button structure or style */
n@33 28 min-width: 20px;
n@33 29 background-color: #ddd
n@33 30 }
n@33 31
n@33 32 div#slider {
n@33 33 /* Specify any structure for the slider holder interface */
n@33 34 background-color: #eee;
n@33 35 height: 150px;
n@33 36 margin-bottom: 25px;
n@33 37 }
n@33 38
n@33 39 div.track-slider {
n@33 40 /* Specify any strcture for the slider objects */
n@33 41 position: absolute;
n@33 42 height: inherit;
n@33 43 width: 12px;
n@33 44 float: left;
n@33 45 background-color: rgb(100,200,100);
n@33 46 }
n@33 47
n@33 48 div.popupHolder {
n@33 49 width: 500px;
n@33 50 height: 250px;
n@33 51 background-color: #fff;
n@33 52 border-radius: 10px;
n@33 53 box-shadow: 0px 0px 50px #000;
n@33 54 z-index: 2;
n@33 55 }
n@33 56
n@33 57 button#preTestNext {
n@33 58 /* Button for popup window
n@33 59 */
n@33 60 width: 50px;
n@33 61 height: 25px;
n@33 62 position: absolute;
n@33 63 left: 440px;
n@33 64 top: 215px;
n@33 65 border-radius: 5px;
n@33 66 border: #444;
n@33 67 border-width: 1px;
n@33 68 border-style: solid;
n@33 69 background-color: #fff;
n@33 70 }