annotate ape.css @ 948:46eca4a8ad43

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