annotate interfaces/AB.css @ 1215:5df87aa95395

Actually the previous commit was broken. This contains a working and more elegant way of checking for the input file length. If the input file is empty, no error is triggered.
author Giulio Moro <giuliomoro@yahoo.it>
date Tue, 23 Feb 2016 14:39:06 +0000
parents 27be75c51b5c
children 124e6c702845
rev   line source
n@1141 1 body {
n@1141 2 /* Set the background colour (note US English spelling) to grey*/
n@1141 3 background-color: #fff
n@1141 4 }
n@1141 5
n@1141 6 div.pageTitle {
n@1141 7 width: auto;
n@1141 8 height: 20px;
n@1141 9 margin-top: 20px;
n@1141 10 }
n@1141 11
n@1141 12 div.pageTitle span{
n@1141 13 font-size: 1.5em;
n@1141 14 }
n@1141 15
n@1141 16 div.testHalt {
n@1141 17 /* Specify any colouring during the test halt for pre/post questions */
n@1141 18 background-color: rgba(0,0,0,0.5);
n@1141 19 /* Don't mess with this bit */
n@1141 20 z-index: 2;
n@1141 21 width: 100%;
n@1141 22 height: 100%;
n@1141 23 position: absolute;
n@1141 24 left: 0px;
n@1141 25 top: 0px;
n@1141 26 }
n@1141 27
n@1141 28 button {
n@1141 29 /* Specify any button structure or style */
n@1141 30 min-width: 20px;
n@1141 31 background-color: #ddd
n@1141 32 }
n@1141 33
n@1141 34 button.big-button {
n@1141 35 width: 250px;
n@1141 36 height: 40px;
n@1141 37 font-size: 1.2em;
n@1141 38 }
n@1141 39
n@1202 40 div.comparator-holder {
n@1141 41 width: 260px;
n@1141 42 height: 300px;
n@1141 43 border: black 1px solid;
n@1141 44 float: left;
n@1141 45 padding-top: 5px;
n@1141 46 margin: 25px;
n@1141 47 }
n@1141 48
n@1202 49 div.comparator-selector {
n@1141 50 width: 248px;
n@1141 51 height: 250px;
n@1141 52 border: black 1px solid;
n@1141 53 position: relative;
n@1141 54 background-color: #FF0000;
n@1178 55 border-radius: 20px;
n@1141 56 }
n@1141 57
n@1141 58 div.disabled {
n@1141 59 background-color: #AAA;
n@1141 60 }
n@1141 61
n@1141 62 div.selected {
n@1141 63 background-color: #008000;
n@1141 64 }
n@1141 65
n@1202 66 div.comparator-selector span {
n@1141 67 font-size: 4em;
n@1141 68 }
n@1141 69
n@1202 70 button.comparator-button {
n@1141 71 width: 250px;
n@1141 72 height: 38px;
n@1141 73 position: relative;
n@1141 74 margin-top: 5px;
n@1141 75 }
n@1156 76
n@1156 77 div.playhead {
n@1156 78 margin: 5px;
n@1156 79 }
n@1156 80
n@1156 81 div#page-count {
n@1156 82 float: left;
n@1156 83 margin: 0px 5px;
n@1156 84 }
n@1156 85
n@1156 86 div#master-volume-holder {
n@1156 87 position: absolute;
n@1156 88 top: 10px;
n@1156 89 left: 120px;
n@1156 90 }