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
|
body {
font: 13px Helvetica;
text-shadow: 0.3px 0.3px #ddd;
color: #4F5155;
height:1500px;
}
h1{
font-size: 18px;
line-height:200%;
color: #fff;
margin:0;
margin-left:10px;
}
h3{
font-size:16px;
color:#333;
margin-top:3px;
margin-bottom:3px;
margin-left:0px;
margin-right:0px;
}
p{
margin:0;
font-size:16px;
}
a:link{
color:#4F5155;
text-decoration:none;
}
a:visited{
color:#4F5155;
text-decoration:none;
}
a:hover{
color:#000;
}
/* The box where all stuff in in body is generated in.*/
#bodyContainer{
float:left;
margin-left:5em;
margin-top:5em;
width:70%;
}
/* pinkBanner is a class for a div which contains the style settings for a header that contains h1 */
.pinkBanner{
margin-bottom: 8px;
width:100%;
background-color:#ae2771;
border:1px solid #9b195c;
}
/* blueBanner is a class for a div which contains the style settings for a header that contains h1 */
.blueBanner{
margin-bottom: 8px;
margin-top: 8px;
width:100%;
background-color:#0a68ad;
border:1px solid #074877;
}
|