annotate core.css @ 1118:3edcbbea168b

Added schema for Test Specification Document for validation (wip)
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Wed, 23 Dec 2015 12:41:08 +0000
parents
children 888292c88c33 3ba07a441364
rev   line source
n@1118 1 /* structure.css
n@1118 2 * Define the structure for classes and objects in HTML
n@1118 3 */
n@1118 4
n@1118 5 div.title {
n@1118 6 width: 100%;
n@1118 7 height: 50px;
n@1118 8 margin-bottom: 10px;
n@1118 9 font-size: 2em;
n@1118 10 }
n@1118 11
n@1118 12 div.indicator-box {
n@1118 13 position: absolute;
n@1118 14 left: 150px;
n@1118 15 top: 10px;
n@1118 16 width: 300px;
n@1118 17 height: 60px;
n@1118 18 padding: 20px;
n@1118 19 border-radius: 10px;
n@1118 20 background-color: rgb(100,200,200);
n@1118 21 }
n@1118 22
n@1118 23 div.comment-div {
n@1118 24 border:#444444;
n@1118 25 border-style:solid;
n@1118 26 border-width:1px;
n@1118 27 max-width: 600px;
n@1118 28 min-width: 400px;
n@1118 29 float: left;
n@1118 30 margin: 5px;
n@1118 31 height: 90px;
n@1118 32 }
n@1118 33
n@1118 34 div.comment-div span {
n@1118 35 margin-left: 15px;
n@1118 36 }
n@1118 37
n@1118 38 div.popupHolder {
n@1118 39 width: 500px;
n@1118 40 min-height: 250px;
n@1118 41 max-height: 400px;
n@1118 42 background-color: #fff;
n@1118 43 border-radius: 10px;
n@1118 44 box-shadow: 0px 0px 50px #000;
n@1118 45 z-index: 2;
n@1118 46 }
n@1118 47
n@1118 48 button.popupButton {
n@1118 49 /* Button for popup window
n@1118 50 */
n@1118 51 width: 50px;
n@1118 52 height: 25px;
n@1118 53 position: relative;
n@1118 54 border-radius: 5px;
n@1118 55 border: #444;
n@1118 56 border-width: 1px;
n@1118 57 border-style: solid;
n@1118 58 background-color: #fff;
n@1118 59 }
n@1118 60
n@1118 61 div.testHalt {
n@1118 62 /* Specify any colouring during the test halt for pre/post questions */
n@1118 63 background-color: rgba(0,0,0,0.5);
n@1118 64 /* Don't mess with this bit */
n@1118 65 z-index: 2;
n@1118 66 width: 100%;
n@1118 67 height: 100%;
n@1118 68 position: absolute;
n@1118 69 left: 0px;
n@1118 70 top: 0px;
n@1118 71 }
n@1118 72
n@1118 73 textarea.trackComment {
n@1118 74 max-width: 594px;
n@1118 75 min-width: 350px;
n@1118 76 margin-right:15px;
n@1118 77 max-height: 60px;
n@1118 78 }
n@1118 79
n@1118 80 div.playhead {
n@1118 81 width: 500px;
n@1118 82 height: 50px;
n@1118 83 background-color: #eee;
n@1118 84 border-radius: 10px;
n@1118 85 padding: 10px;
n@1118 86 }
n@1118 87
n@1118 88 div.playhead-scrub-track {
n@1118 89 width: 100%;
n@1118 90 height: 10px;
n@1118 91 border-style: solid;
n@1118 92 border-width: 1px;
n@1118 93 }
n@1118 94
n@1118 95 div#playhead-scrubber {
n@1118 96 width: 10px;
n@1118 97 height: 10px;
n@1118 98 position: relative;
n@1118 99 background-color: #000;
n@1118 100 }