annotate ape.css @ 2003:475637bee9f1

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