comparison core.css @ 1750:1365362c12d5

Merge from 156:402bb0f56dc4
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Mon, 01 Jun 2015 12:56:15 +0100
parents cdc9ace6fe0e
children b0d683510881
comparison
equal deleted inserted replaced
1601:1c7cd4613a96 1750:1365362c12d5
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 }
31
32 div.comment-div span {
33 margin-left: 15px;
34 }
35
36 div.popupHolder {
37 width: 500px;
38 height: 250px;
39 background-color: #fff;
40 border-radius: 10px;
41 box-shadow: 0px 0px 50px #000;
42 z-index: 2;
43 }
44
45 button.popupButton {
46 /* Button for popup window
47 */
48 width: 50px;
49 height: 25px;
50 position: absolute;
51 left: 440px;
52 top: 215px;
53 border-radius: 5px;
54 border: #444;
55 border-width: 1px;
56 border-style: solid;
57 background-color: #fff;
58 }
59
60 textarea.trackComment {
61 width: 618px;
62 margin-right:15px;
63 }