-
Notifications
You must be signed in to change notification settings - Fork 1
/
application.css
74 lines (66 loc) · 1.63 KB
/
application.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
* This is a manifest file that'll automatically include all the stylesheets available in this directory
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
* the top of the compiled file, but it's generally better to create a new file per style scope.
*= require_self
*= require_tree .
*/
/* html body tag style */
body {
margin: 0px;
padding: 0px;
}
/* h1 tag style */
h1 {
margin: 0px;
padding: 10px;
font-family: arial;
font-size: 200%;
/* allign: center;*/
color: #ffffff;
}
h2 {
margin: 0px;
padding: 10px;
font-family: arial;
font-size: 140%;
/* allign: center;*/
color: #ffffff;
}
/* CSS Style Rule for Div having id="outer-container" */
/* outer-container will hold the whole assembly of
nested div overlays. */
/* It will also center align the design */
#outer-container {
width: 720px;
margin: 0 auto;
}
/* footer CSS Style Rule */
#header {
width: 720px;
height: 90px;
background: #333333;
}
/* footer CSS Style Rule */
#footer {
width: 720px;
}
/* content-container CSS Style Rule */
/* It will hold the main content of the page. */
/* it is the right side column */
/* in this 2 columns div layout */
#map {
width: 480px;
height: 400px;
/* margin: 2px 0px 2px 0px; */
float: left;
}
/* left side navigation that is the left side column of */
/* 2 columns div layout */
#left-nav {
width: 240px;
height: 400px;
/* margin: 2px 2px 2px 0px; */
float: left;
background: #89B556;
}