comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 893:c40ce9c67b6b
1 /* structure.css
2 * Define the structure for classes and objects in HTML
3 */
4
5 div.title {
6 width: 100%;
7 height: 50px;
8 margin-bottom: 10px;
9 font-size: 2em;
10 }
11
12 div.indicator-box {
13 position: absolute;
14 left: 150px;
15 top: 10px;
16 width: 300px;
17 height: 60px;
18 padding: 20px;
19 border-radius: 10px;
20 background-color: rgb(100,200,200);
21 }
22
23 div.comment-div {
24 border:#444444;
25 border-style:solid;
26 border-width:1px;
27 width: 624px;
28 float: left;
29 margin: 5px;
30 height: 90px;
31 }
32
33 div.comment-div span {
34 margin-left: 15px;
35 }
36
37 div.popupHolder {
38 width: 500px;
39 height: 250px;
40 background-color: #fff;
41 border-radius: 10px;
42 box-shadow: 0px 0px 50px #000;
43 z-index: 2;
44 }
45
46 button.popupButton {
47 /* Button for popup window
48 */
49 width: 50px;
50 height: 25px;
51 position: absolute;
52 border-radius: 5px;
53 border: #444;
54 border-width: 1px;
55 border-style: solid;
56 background-color: #fff;
57 }
58
59 textarea.trackComment {
60 width: 618px;
61 margin-right:15px;
62 }