Mercurial > hg > webaudioevaluationtool
annotate core.css @ 509:e3ff10a1ebc5 Dev_main
Bug #1569: Comment boxes cannot be resized, they support scrolling text. Styling of comment boxes. Styling of AB selectors.
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Thu, 11 Feb 2016 14:37:26 +0000 |
parents | 4658074c6191 |
children | ea97b12c1f1e |
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@509 | 24 border:1px solid #444444; |
n@302 | 25 max-width: 600px; |
n@301 | 26 min-width: 400px; |
n@156 | 27 float: left; |
n@509 | 28 margin: 5px 10px 5px 5px; |
n@193 | 29 height: 90px; |
n@509 | 30 border-radius: 10px; |
n@156 | 31 } |
n@156 | 32 |
n@156 | 33 div.comment-div span { |
n@156 | 34 margin-left: 15px; |
n@156 | 35 } |
n@156 | 36 |
n@156 | 37 div.popupHolder { |
n@156 | 38 width: 500px; |
n@303 | 39 min-height: 250px; |
n@303 | 40 max-height: 400px; |
n@156 | 41 background-color: #fff; |
n@156 | 42 border-radius: 10px; |
n@156 | 43 box-shadow: 0px 0px 50px #000; |
n@156 | 44 z-index: 2; |
n@156 | 45 } |
n@156 | 46 |
n@156 | 47 button.popupButton { |
n@156 | 48 /* Button for popup window |
n@156 | 49 */ |
n@156 | 50 width: 50px; |
n@156 | 51 height: 25px; |
n@502 | 52 position: absolute; |
n@156 | 53 border-radius: 5px; |
n@156 | 54 border: #444; |
n@156 | 55 border-width: 1px; |
n@156 | 56 border-style: solid; |
n@156 | 57 background-color: #fff; |
n@156 | 58 } |
n@156 | 59 |
n@502 | 60 button#popup-proceed { |
n@502 | 61 bottom: 10px; |
n@502 | 62 right: 10px; |
n@502 | 63 } |
n@502 | 64 |
n@502 | 65 button#popup-previous { |
n@502 | 66 bottom: 10px; |
n@502 | 67 left: 10px; |
n@502 | 68 } |
n@502 | 69 |
n@311 | 70 div.testHalt { |
n@311 | 71 /* Specify any colouring during the test halt for pre/post questions */ |
n@311 | 72 background-color: rgba(0,0,0,0.5); |
n@311 | 73 /* Don't mess with this bit */ |
n@311 | 74 z-index: 2; |
n@311 | 75 width: 100%; |
n@311 | 76 height: 100%; |
n@311 | 77 position: absolute; |
n@311 | 78 left: 0px; |
n@311 | 79 top: 0px; |
n@311 | 80 } |
n@311 | 81 |
n@156 | 82 textarea.trackComment { |
n@302 | 83 max-width: 594px; |
n@301 | 84 min-width: 350px; |
n@302 | 85 max-height: 60px; |
n@509 | 86 resize: none; |
n@156 | 87 } |
n@201 | 88 |
n@201 | 89 div.playhead { |
n@201 | 90 width: 500px; |
n@201 | 91 height: 50px; |
n@201 | 92 background-color: #eee; |
n@201 | 93 border-radius: 10px; |
n@201 | 94 padding: 10px; |
n@201 | 95 } |
n@201 | 96 |
n@201 | 97 div.playhead-scrub-track { |
n@201 | 98 width: 100%; |
n@201 | 99 height: 10px; |
n@201 | 100 border-style: solid; |
n@201 | 101 border-width: 1px; |
n@201 | 102 } |
n@201 | 103 |
n@201 | 104 div#playhead-scrubber { |
n@201 | 105 width: 10px; |
n@201 | 106 height: 10px; |
n@201 | 107 position: relative; |
n@201 | 108 background-color: #000; |
n@201 | 109 } |
n@483 | 110 |
n@483 | 111 div#master-volume-holder { |
n@483 | 112 width: 250px; |
n@483 | 113 float: left; |
n@484 | 114 border: black 1px solid; |
n@484 | 115 border-radius: 5px; |
n@484 | 116 padding: 5px; |
n@483 | 117 } |
n@483 | 118 |
n@483 | 119 input#master-volume-control { |
n@483 | 120 width: 200px; |
n@483 | 121 height: 25px; |
n@483 | 122 float: left; |
n@483 | 123 margin: 0px; |
n@483 | 124 padding: 0px; |
n@483 | 125 } |
n@483 | 126 |
n@483 | 127 span#master-volume-feedback { |
n@483 | 128 width: 45px; |
n@483 | 129 height: 25px; |
n@483 | 130 margin-left: 5px; |
n@483 | 131 float: left; |
n@483 | 132 } |