Mercurial > hg > webaudioevaluationtool
annotate core.css @ 893:c40ce9c67b6b
Merge from the default branch
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Wed, 10 Jun 2015 14:39:15 +0100 |
parents | |
children | 1af8a548cab2 |
rev | line source |
---|---|
n@893 | 1 /* structure.css |
n@893 | 2 * Define the structure for classes and objects in HTML |
n@893 | 3 */ |
n@893 | 4 |
n@893 | 5 div.title { |
n@893 | 6 width: 100%; |
n@893 | 7 height: 50px; |
n@893 | 8 margin-bottom: 10px; |
n@893 | 9 font-size: 2em; |
n@893 | 10 } |
n@893 | 11 |
n@893 | 12 div.indicator-box { |
n@893 | 13 position: absolute; |
n@893 | 14 left: 150px; |
n@893 | 15 top: 10px; |
n@893 | 16 width: 300px; |
n@893 | 17 height: 60px; |
n@893 | 18 padding: 20px; |
n@893 | 19 border-radius: 10px; |
n@893 | 20 background-color: rgb(100,200,200); |
n@893 | 21 } |
n@893 | 22 |
n@893 | 23 div.comment-div { |
n@893 | 24 border:#444444; |
n@893 | 25 border-style:solid; |
n@893 | 26 border-width:1px; |
n@893 | 27 width: 624px; |
n@893 | 28 float: left; |
n@893 | 29 margin: 5px; |
n@893 | 30 height: 90px; |
n@893 | 31 } |
n@893 | 32 |
n@893 | 33 div.comment-div span { |
n@893 | 34 margin-left: 15px; |
n@893 | 35 } |
n@893 | 36 |
n@893 | 37 div.popupHolder { |
n@893 | 38 width: 500px; |
n@893 | 39 height: 250px; |
n@893 | 40 background-color: #fff; |
n@893 | 41 border-radius: 10px; |
n@893 | 42 box-shadow: 0px 0px 50px #000; |
n@893 | 43 z-index: 2; |
n@893 | 44 } |
n@893 | 45 |
n@893 | 46 button.popupButton { |
n@893 | 47 /* Button for popup window |
n@893 | 48 */ |
n@893 | 49 width: 50px; |
n@893 | 50 height: 25px; |
n@893 | 51 position: absolute; |
n@893 | 52 border-radius: 5px; |
n@893 | 53 border: #444; |
n@893 | 54 border-width: 1px; |
n@893 | 55 border-style: solid; |
n@893 | 56 background-color: #fff; |
n@893 | 57 } |
n@893 | 58 |
n@893 | 59 textarea.trackComment { |
n@893 | 60 width: 618px; |
n@893 | 61 margin-right:15px; |
n@893 | 62 } |