annotate core.css @ 920:d897f129ad4e

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