annotate AB.css @ 1138:373a9fae8896

Interfaces properly handle outside reference objects. Better core.js comment box handling. InterfaceDOM return their presented ID rather than assumed index.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Tue, 12 Jan 2016 17:10:39 +0000
parents 45bb043fcd81
children
rev   line source
n@1129 1 body {
n@1129 2 /* Set the background colour (note US English spelling) to grey*/
n@1129 3 background-color: #fff
n@1129 4 }
n@1129 5
n@1129 6 div.pageTitle {
n@1129 7 width: auto;
n@1129 8 height: 20px;
n@1129 9 margin-top: 20px;
n@1129 10 }
n@1129 11
n@1129 12 div.pageTitle span{
n@1129 13 font-size: 1.5em;
n@1129 14 }
n@1129 15
n@1129 16 div.testHalt {
n@1129 17 /* Specify any colouring during the test halt for pre/post questions */
n@1129 18 background-color: rgba(0,0,0,0.5);
n@1129 19 /* Don't mess with this bit */
n@1129 20 z-index: 2;
n@1129 21 width: 100%;
n@1129 22 height: 100%;
n@1129 23 position: absolute;
n@1129 24 left: 0px;
n@1129 25 top: 0px;
n@1129 26 }
n@1129 27
n@1129 28 button {
n@1129 29 /* Specify any button structure or style */
n@1129 30 min-width: 20px;
n@1129 31 background-color: #ddd
n@1129 32 }
n@1129 33
n@1130 34 button.big-button {
n@1130 35 width: 250px;
n@1130 36 height: 40px;
n@1130 37 font-size: 1.2em;
n@1130 38 }
n@1130 39
n@1129 40 div.comparitor-holder {
n@1129 41 width: 260px;
n@1129 42 height: 300px;
n@1129 43 border: black 1px solid;
n@1136 44 float: left;
n@1130 45 padding-top: 5px;
n@1136 46 margin: 25px;
n@1129 47 }
n@1129 48
n@1129 49 div.comparitor-selector {
n@1130 50 width: 248px;
n@1129 51 height: 250px;
n@1129 52 border: black 1px solid;
n@1129 53 position: relative;
n@1130 54 background-color: #FF0000;
n@1129 55 }
n@1129 56
n@1133 57 div.disabled {
n@1133 58 background-color: #AAA;
n@1133 59 }
n@1133 60
n@1130 61 div.selected {
n@1130 62 background-color: #008000;
n@1130 63 }
n@1130 64
n@1130 65 div.comparitor-selector span {
n@1130 66 font-size: 4em;
n@1130 67 }
n@1130 68
n@1130 69 button.comparitor-button {
n@1129 70 width: 250px;
n@1130 71 height: 38px;
n@1129 72 position: relative;
n@1130 73 margin-top: 5px;
n@1129 74 }