annotate ape.css @ 98:46cfd9fac5e7 Dev_main

Fixed Bug 1206: Axis labels now larger and more of a gap between sliders and comment boxes.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Fri, 01 May 2015 16:14:08 +0100
parents 896111a0849b
children 6d5701b775c2
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@98 46 min-height: 30px;
n@98 47 }
n@98 48
n@98 49 div.sliderScale span{
n@98 50 font-size: 1.2em;
n@47 51 }
n@47 52
n@47 53 div.sliderScale span {
n@47 54 /* Any formatting of text below scale */
n@47 55 min-width: 5px;
n@47 56 height: 20px;
n@47 57 height: 100%;
n@47 58 position: absolute;
n@33 59 }
n@33 60
n@33 61 div.track-slider {
n@33 62 /* Specify any strcture for the slider objects */
n@33 63 position: absolute;
n@33 64 height: inherit;
n@33 65 width: 12px;
n@33 66 float: left;
n@33 67 background-color: rgb(100,200,100);
n@33 68 }
n@33 69
n@37 70 div.comment-div {
n@37 71 border:#444444;
n@37 72 border-style:solid;
n@37 73 border-width:1px;
n@37 74 width: 624px;
n@37 75 float: left;
n@37 76 margin: 5px;
n@37 77 }
n@38 78
n@37 79 div.comment-div span {
n@37 80 margin-left: 15px;
n@37 81 }
n@37 82
n@33 83 div.popupHolder {
n@33 84 width: 500px;
n@33 85 height: 250px;
n@33 86 background-color: #fff;
n@33 87 border-radius: 10px;
n@33 88 box-shadow: 0px 0px 50px #000;
n@33 89 z-index: 2;
n@33 90 }
n@33 91
n@38 92 button.popupButton {
n@33 93 /* Button for popup window
n@33 94 */
n@33 95 width: 50px;
n@33 96 height: 25px;
n@33 97 position: absolute;
n@33 98 left: 440px;
n@33 99 top: 215px;
n@33 100 border-radius: 5px;
n@33 101 border: #444;
n@33 102 border-width: 1px;
n@33 103 border-style: solid;
n@33 104 background-color: #fff;
n@33 105 }