blob: 523eb8c7d533ec39bfdfdadc3b48bae06fe045eb (
plain)
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
|
body {
background: #E8E8E8;
margin: 7px 0 0 0;
padding: 0;
font-family: Helvetica;
}
#nav, #buttonblock, #content, #footer {
width: 50%;
margin: 0 auto 0 auto;
text-transform: uppercase;
}
#nav ul li {
display: inline;
list-style: none;
}
.bigbutton {
background: url('../images/bigbutton.png') repeat-x center top;
color: white;
padding: 0.3em 1em 0.3em 1em;
text-decoration: none;
border-radius: 5px;
}
.smallbutton {
background: url('../images/smallbutton.png') repeat-x center top;
color: white;
padding: 0.3em 1em 0.3em 1em;
text-decoration: none;
border-radius: 5px;
font-size: 75%;
}
#header {
background: url('../images/headerbg.jpg') repeat-x center top;
text-align: center;
height: 191px;
padding-top: 10px;
}
#buttonblock {
border-top: solid 1px black;
border-bottom: solid 1px black;
text-align: center;
}
#buttonblock div {
display: inline-block;
}
#content {
padding: 35px 0 35px 0;
}
#footer {
border-top: solid 1px black;
padding-top: 10px;
text-transform: uppercase;
}
|