-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
132 lines (110 loc) · 2.16 KB
/
styles.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
body {
margin: 0px;
padding: 0px;
background: #666666 url(images/back.png) repeat-y center top;
text-align: justify;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
color: #333333;
}
h1, h2, h3, h4, h5, h6 {
font-family: Georgia, "Times New Roman", Times, serif;
color: #1775d4;
}
a {
font-weight: bold;
text-decoration: none;
color: #1775d4;
}
a:hover {
text-decoration: underline;
color: #33CCFF;
}
#header {
width: 770px;
height: 120px;
margin: 0px auto;
padding: 10px 0px;
background-image: url("images/header.jpg");
background-repeat: no-repeat;
background-position: right top;
background-size: 770px 120px;
image-orientation: from-image
}
#header h1 {
margin: 0px;
padding: 0px 0px 0px 10px;
text-align: left;
color: #000000;
text-shadow: 2px 2px #33CCFF;
font-size: 5em;
}
#header h2 {
margin: 0px;
padding: 0px 0px 0px 20px;
text-align: left;
font-size: 1.5em;
text-transform: uppercase;
}
/************* MENU ************/
#menu {
width: 770px;
margin: 0px auto;
padding: 5px 0px 5px 0px;
background-color: #000000;
}
#menu ul {
margin: 0px;
padding: 0px;
list-style: none;
text-align: center;
}
#menu li {
display: inline;
}
#menu a {
padding: 5px 15px;
text-transform: uppercase;
text-decoration: none;
font-size: 12px;
font-weight: bold;
color: #FFFFFF;
}
#menu a:hover {
background-color: #333333;
}
/************* CONTENT ************/
#content {
width: 770px;
margin: 0px auto;
padding: 20px 0px 0px 0px;
}
#content h2, #content h3, #content h4, #content h5, #content h6 {
font-weight: normal;
}
#content p, #content ul, #content ol {
line-height: 150%;
}
#left {
float: left;
width: 770;
padding: 0px 20px 40px 20px;
}
#right {
float: right;
width: 0px;
padding: 0px 20px 40px 20px;
color: #99CCFF;
}
/************* FOOTER ************/
#footer {
clear: both;
width: 771px;
margin: 0px auto;
border-top: 1px solid #666666;
background: url(images/back-footer.png) repeat-y center top;
font-size: 9px;
text-align: center;
padding: 2px;
color: #333333;
}