Mercurial > hg > webaudioevaluationtool
annotate core.css @ 841:71fd099e9fd2
Started some user guide
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Sat, 08 Aug 2015 09:00:41 +0100 |
parents | |
children | 3d13f019c3e6 a049c6cf7eb3 |
rev | line source |
---|---|
n@841 | 1 /* structure.css |
n@841 | 2 * Define the structure for classes and objects in HTML |
n@841 | 3 */ |
n@841 | 4 |
n@841 | 5 div.title { |
n@841 | 6 width: 100%; |
n@841 | 7 height: 50px; |
n@841 | 8 margin-bottom: 10px; |
n@841 | 9 font-size: 2em; |
n@841 | 10 } |
n@841 | 11 |
n@841 | 12 div.indicator-box { |
n@841 | 13 position: absolute; |
n@841 | 14 left: 150px; |
n@841 | 15 top: 10px; |
n@841 | 16 width: 300px; |
n@841 | 17 height: 60px; |
n@841 | 18 padding: 20px; |
n@841 | 19 border-radius: 10px; |
n@841 | 20 background-color: rgb(100,200,200); |
n@841 | 21 } |
n@841 | 22 |
n@841 | 23 div.comment-div { |
n@841 | 24 border:#444444; |
n@841 | 25 border-style:solid; |
n@841 | 26 border-width:1px; |
n@841 | 27 width: 624px; |
n@841 | 28 float: left; |
n@841 | 29 margin: 5px; |
n@841 | 30 height: 90px; |
n@841 | 31 } |
n@841 | 32 |
n@841 | 33 div.comment-div span { |
n@841 | 34 margin-left: 15px; |
n@841 | 35 } |
n@841 | 36 |
n@841 | 37 div.popupHolder { |
n@841 | 38 width: 500px; |
n@841 | 39 height: 250px; |
n@841 | 40 background-color: #fff; |
n@841 | 41 border-radius: 10px; |
n@841 | 42 box-shadow: 0px 0px 50px #000; |
n@841 | 43 z-index: 2; |
n@841 | 44 } |
n@841 | 45 |
n@841 | 46 button.popupButton { |
n@841 | 47 /* Button for popup window |
n@841 | 48 */ |
n@841 | 49 width: 50px; |
n@841 | 50 height: 25px; |
n@841 | 51 position: absolute; |
n@841 | 52 border-radius: 5px; |
n@841 | 53 border: #444; |
n@841 | 54 border-width: 1px; |
n@841 | 55 border-style: solid; |
n@841 | 56 background-color: #fff; |
n@841 | 57 } |
n@841 | 58 |
n@841 | 59 textarea.trackComment { |
n@841 | 60 width: 618px; |
n@841 | 61 margin-right:15px; |
n@841 | 62 } |
n@841 | 63 |
n@841 | 64 div.playhead { |
n@841 | 65 width: 500px; |
n@841 | 66 height: 50px; |
n@841 | 67 background-color: #eee; |
n@841 | 68 border-radius: 10px; |
n@841 | 69 padding: 10px; |
n@841 | 70 } |
n@841 | 71 |
n@841 | 72 div.playhead-scrub-track { |
n@841 | 73 width: 100%; |
n@841 | 74 height: 10px; |
n@841 | 75 border-style: solid; |
n@841 | 76 border-width: 1px; |
n@841 | 77 } |
n@841 | 78 |
n@841 | 79 div#playhead-scrubber { |
n@841 | 80 width: 10px; |
n@841 | 81 height: 10px; |
n@841 | 82 position: relative; |
n@841 | 83 background-color: #000; |
n@841 | 84 } |