annotate core.css @ 749:07c996307cbd

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