annotate core.css @ 1079:24eeac8994bf

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