annotate ape.css @ 47:896111a0849b Dev_main

Added customised scale - NEED TO ENTER INTO DOCUMENTATION!
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Fri, 10 Apr 2015 19:09:21 +0100
parents 8894d17cfad7
children 46cfd9fac5e7 a948850f297b 06fbaccf3b58
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@47 14 div.pageTitle {
n@47 15 width: auto;
n@47 16 height: 20px;
n@47 17 }
n@47 18
n@33 19 div.testHalt {
n@33 20 /* Specify any colouring during the test halt for pre/post questions */
n@33 21 background-color: rgba(0,0,0,0.5);
n@33 22 /* Don't mess with this bit */
n@33 23 z-index: 2;
n@33 24 width: 100%;
n@33 25 height: 100%;
n@33 26 position: absolute;
n@33 27 left: 0px;
n@33 28 top: 0px;
n@33 29 }
n@33 30
n@33 31 button {
n@33 32 /* Specify any button structure or style */
n@33 33 min-width: 20px;
n@33 34 background-color: #ddd
n@33 35 }
n@33 36
n@33 37 div#slider {
n@33 38 /* Specify any structure for the slider holder interface */
n@33 39 background-color: #eee;
n@33 40 height: 150px;
n@47 41 margin-bottom: 5px;
n@47 42 }
n@47 43
n@47 44 div.sliderScale {
n@47 45 width: 100%;
n@47 46 min-height: 20px;
n@47 47 }
n@47 48
n@47 49 div.sliderScale span {
n@47 50 /* Any formatting of text below scale */
n@47 51 min-width: 5px;
n@47 52 height: 20px;
n@47 53 height: 100%;
n@47 54 position: absolute;
n@33 55 }
n@33 56
n@33 57 div.track-slider {
n@33 58 /* Specify any strcture for the slider objects */
n@33 59 position: absolute;
n@33 60 height: inherit;
n@33 61 width: 12px;
n@33 62 float: left;
n@33 63 background-color: rgb(100,200,100);
n@33 64 }
n@33 65
n@37 66 div.comment-div {
n@37 67 border:#444444;
n@37 68 border-style:solid;
n@37 69 border-width:1px;
n@37 70 width: 624px;
n@37 71 float: left;
n@37 72 margin: 5px;
n@37 73 }
n@38 74
n@37 75 div.comment-div span {
n@37 76 margin-left: 15px;
n@37 77 }
n@37 78
n@33 79 div.popupHolder {
n@33 80 width: 500px;
n@33 81 height: 250px;
n@33 82 background-color: #fff;
n@33 83 border-radius: 10px;
n@33 84 box-shadow: 0px 0px 50px #000;
n@33 85 z-index: 2;
n@33 86 }
n@33 87
n@38 88 button.popupButton {
n@33 89 /* Button for popup window
n@33 90 */
n@33 91 width: 50px;
n@33 92 height: 25px;
n@33 93 position: absolute;
n@33 94 left: 440px;
n@33 95 top: 215px;
n@33 96 border-radius: 5px;
n@33 97 border: #444;
n@33 98 border-width: 1px;
n@33 99 border-style: solid;
n@33 100 background-color: #fff;
n@33 101 }