annotate core.css @ 1011:2df5ba8845b3

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