Mercurial > hg > webaudioevaluationtool
annotate core.css @ 513:d7b1b270c13a Dev_main
Bug #1562: Checkbox and radios will be center aligned, left justified. Also solves issue #1571. Only tested in OSX Chrome!
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Fri, 12 Feb 2016 09:02:41 +0000 |
parents | ea97b12c1f1e |
children | df2d916fd9cf |
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@510 | 45 position: absolute; |
n@510 | 46 } |
n@510 | 47 |
n@510 | 48 div#popupContent { |
n@510 | 49 margin-top: 20px; |
n@510 | 50 margin-bottom: 5px; |
n@510 | 51 } |
n@510 | 52 |
n@510 | 53 div#popupTitle { |
n@510 | 54 width: inherit; |
n@510 | 55 min-height: 25px; |
n@510 | 56 max-height: 250px; |
n@510 | 57 overflow: auto; |
n@510 | 58 margin-bottom: 5px; |
n@510 | 59 } |
n@510 | 60 |
n@510 | 61 div#popupResponse { |
n@510 | 62 width: inherit; |
n@510 | 63 min-height: 50px; |
n@510 | 64 max-height: 320px; |
n@510 | 65 overflow: auto; |
n@513 | 66 position: relative; |
n@156 | 67 } |
n@156 | 68 |
n@156 | 69 button.popupButton { |
n@156 | 70 /* Button for popup window |
n@156 | 71 */ |
n@156 | 72 width: 50px; |
n@156 | 73 height: 25px; |
n@502 | 74 position: absolute; |
n@156 | 75 border-radius: 5px; |
n@156 | 76 border: #444; |
n@156 | 77 border-width: 1px; |
n@156 | 78 border-style: solid; |
n@156 | 79 background-color: #fff; |
n@156 | 80 } |
n@156 | 81 |
n@502 | 82 button#popup-proceed { |
n@502 | 83 bottom: 10px; |
n@502 | 84 right: 10px; |
n@502 | 85 } |
n@502 | 86 |
n@502 | 87 button#popup-previous { |
n@502 | 88 bottom: 10px; |
n@502 | 89 left: 10px; |
n@502 | 90 } |
n@502 | 91 |
n@311 | 92 div.testHalt { |
n@311 | 93 /* Specify any colouring during the test halt for pre/post questions */ |
n@311 | 94 background-color: rgba(0,0,0,0.5); |
n@311 | 95 /* Don't mess with this bit */ |
n@311 | 96 z-index: 2; |
n@311 | 97 width: 100%; |
n@311 | 98 height: 100%; |
n@311 | 99 position: absolute; |
n@311 | 100 left: 0px; |
n@311 | 101 top: 0px; |
n@311 | 102 } |
n@311 | 103 |
n@156 | 104 textarea.trackComment { |
n@302 | 105 max-width: 594px; |
n@301 | 106 min-width: 350px; |
n@302 | 107 max-height: 60px; |
n@509 | 108 resize: none; |
n@156 | 109 } |
n@201 | 110 |
n@201 | 111 div.playhead { |
n@201 | 112 width: 500px; |
n@201 | 113 height: 50px; |
n@201 | 114 background-color: #eee; |
n@201 | 115 border-radius: 10px; |
n@201 | 116 padding: 10px; |
n@201 | 117 } |
n@201 | 118 |
n@201 | 119 div.playhead-scrub-track { |
n@201 | 120 width: 100%; |
n@201 | 121 height: 10px; |
n@201 | 122 border-style: solid; |
n@201 | 123 border-width: 1px; |
n@201 | 124 } |
n@201 | 125 |
n@201 | 126 div#playhead-scrubber { |
n@201 | 127 width: 10px; |
n@201 | 128 height: 10px; |
n@201 | 129 position: relative; |
n@201 | 130 background-color: #000; |
n@201 | 131 } |
n@483 | 132 |
n@483 | 133 div#master-volume-holder { |
n@483 | 134 width: 250px; |
n@483 | 135 float: left; |
n@484 | 136 border: black 1px solid; |
n@484 | 137 border-radius: 5px; |
n@484 | 138 padding: 5px; |
n@483 | 139 } |
n@483 | 140 |
n@483 | 141 input#master-volume-control { |
n@483 | 142 width: 200px; |
n@483 | 143 height: 25px; |
n@483 | 144 float: left; |
n@483 | 145 margin: 0px; |
n@483 | 146 padding: 0px; |
n@483 | 147 } |
n@483 | 148 |
n@483 | 149 span#master-volume-feedback { |
n@483 | 150 width: 45px; |
n@483 | 151 height: 25px; |
n@483 | 152 margin-left: 5px; |
n@483 | 153 float: left; |
n@483 | 154 } |