annotate ape.css @ 661:97ade670d7c1

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