annotate ape.css @ 1613:207a14aac2c6

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