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