-
Notifications
You must be signed in to change notification settings - Fork 1
/
aquo.css
100 lines (94 loc) · 2.36 KB
/
aquo.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
@charset "utf-8";
/* CSS Document */
.oneColFixCtrHdr #container {
width: 780px; /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
background: #DDDDDD;
padding: 0;
background-image:url(images/eventsheaders.gif);
background-repeat:no-repeat;
padding-left:400px;
height:169px;
width:780px;
}
.oneColFixCtrHdr #header h1 {
margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
background: #FFFFFF;
width:780px;
border-top-color:#FFFFFF;
border-top-style:solid;
border-top-width:1px;
}
.oneColFixCtrHdr #footer {
padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
.oneColFixCtrHdr #footer p {
margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.event {
margin-top:20px;
}
.eventimage {
float:left;
margin-left:10px;
}
.eventinfo {
height:156px;
float:left;
width:350px;
margin-left:10px;
}
.eventinfo p {
font-size:.8em;
}
.eventinfo a {
font-size: .8em;
}
.date {
text-transform:uppercase;
font-size:.7em;
}
.location {
font-size:.9em;
}
#border_bottom {
background-image:url(images/border_events_bottom.gif);
background-repeat:no-repeat;
height:20px;
width:780px;
}
div#footer {
float: left;
text-align: center;
width: 780px;
height: auto;
color: #ffffff;
text-decoration: none;
font-size: 75%;
margin: 12px 0 5px 0;
display: inline;
}
div#footer a {
color: #ffffff;
text-decoration: none;
}
div#footer a:hover {
color: #ffffff;
text-decoration: underline;
}
p#disclaimer {
float: left;
text-align:center;
color: #ffffff;
font-size: 9px;
margin-left: 110px;
margin-right:100px;
margin-top:0;
}