annotate interfaces/ABX.css @ 1253:8aa21ebd9b15

WIP. ABX Framework. Minor core.js modifications.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Wed, 16 Mar 2016 13:31:42 +0000
parents
children b0b4d264d9a8
rev   line source
n@1253 1 body {
n@1253 2 /* Set the background colour (note US English spelling) to grey*/
n@1253 3 background-color: #fff
n@1253 4 }
n@1253 5
n@1253 6 div.pageTitle {
n@1253 7 width: auto;
n@1253 8 height: 20px;
n@1253 9 margin-top: 20px;
n@1253 10 }
n@1253 11
n@1253 12 div.pageTitle span{
n@1253 13 font-size: 1.5em;
n@1253 14 }
n@1253 15
n@1253 16 div.testHalt {
n@1253 17 /* Specify any colouring during the test halt for pre/post questions */
n@1253 18 background-color: rgba(0,0,0,0.5);
n@1253 19 /* Don't mess with this bit */
n@1253 20 z-index: 2;
n@1253 21 width: 100%;
n@1253 22 height: 100%;
n@1253 23 position: absolute;
n@1253 24 left: 0px;
n@1253 25 top: 0px;
n@1253 26 }
n@1253 27
n@1253 28 button {
n@1253 29 /* Specify any button structure or style */
n@1253 30 min-width: 20px;
n@1253 31 background-color: #ddd
n@1253 32 }
n@1253 33
n@1253 34 button.big-button {
n@1253 35 width: 250px;
n@1253 36 height: 40px;
n@1253 37 font-size: 1.2em;
n@1253 38 }
n@1253 39
n@1253 40 div.comparator-holder {
n@1253 41 width: 260px;
n@1253 42 height: 300px;
n@1253 43 border: black 1px solid;
n@1253 44 float: left;
n@1253 45 padding-top: 5px;
n@1253 46 margin: 25px;
n@1253 47 }
n@1253 48
n@1253 49 div.comparator-selector {
n@1253 50 width: 248px;
n@1253 51 height: 250px;
n@1253 52 border: black 1px solid;
n@1253 53 position: relative;
n@1253 54 background-color: #FF0000;
n@1253 55 border-radius: 20px;
n@1253 56 }
n@1253 57
n@1253 58 div.disabled {
n@1253 59 background-color: #AAA;
n@1253 60 }
n@1253 61
n@1253 62 div.selected {
n@1253 63 background-color: #008000;
n@1253 64 }
n@1253 65
n@1253 66 div.comparator-selector span {
n@1253 67 font-size: 4em;
n@1253 68 }
n@1253 69
n@1253 70 button.comparator-button {
n@1253 71 width: 250px;
n@1253 72 height: 38px;
n@1253 73 position: relative;
n@1253 74 margin-top: 5px;
n@1253 75 }
n@1253 76
n@1253 77 div.playhead {
n@1253 78 margin: 5px;
n@1253 79 }
n@1253 80
n@1253 81 div#page-count {
n@1253 82 float: left;
n@1253 83 margin: 0px 5px;
n@1253 84 }
n@1253 85
n@1253 86 div#master-volume-holder {
n@1253 87 position: absolute;
n@1253 88 top: 10px;
n@1253 89 left: 120px;
n@1253 90 }