annotate ape.css @ 1607:e5f1caa513d8

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