annotate ape.css @ 680:d7bdfe8bf67e

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