-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
126 lines (112 loc) · 2.22 KB
/
style.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
body {
font-family: Arial, sans-serif;
line-height: 1.4;
font-size: 13px;
background: #fff url(images/bg.jpg) repeat-x;
margin: 0;
padding: 0;
color: #112211;
}
a { color: #3F4C6B; text-decoration: none;}
a:hover { text-decoration: underline; }
#wrap {
width: 800px;
margin: 20px auto;
}
#header {
background: url(images/header.png) no-repeat;
height: 160px;
}
#header h1 {
font-family: Arial, sans-serif;
margin: 0;
padding: 40px 0 0 30px;
font-weight: 100;
color: #FFB96F;
font-size: 29px;
letter-spacing: -2px;
line-height: 27px;
}
#header h1 a { text-decoration: none; color: #fff; }
#header h1 a:hover { text-decoration: none; color: #eee; }
#header h2 { font-size: 21px; padding: 0 0 0 30px; margin: 0; color: #eee; font-weight: 100; }
#menu {
background: url(images/menu.png) no-repeat;
height: 40px;
line-height: 40px;
}
#menu ul {
list-style-type: none;
margin: 0;
padding-left: 20px;
}
#menu ul li {
display: block;
float: left;
}
#menu ul li a {
display: block;
padding: 0 10px 0 10px;
text-decoration: none;
color: #fff;
font-weight: 100;
font-size: 12px;
}
#menu ul li a:hover {
color: #fff;
background: url(images/menuover.png) repeat-x;
}
#contentwrap {
background: url(images/content.png) repeat-y;
padding: 0 20px 0 30px;
}
#content {
margin-top: 10px;
float: left;
width: 510px;
}
#content h2 {
margin: 0;
color: #3F4C6B;
line-height: 30px;
font-weight: 100;
}
#content p { padding: 0 0 10px 0; color: #232323;}
#content ul { padding: 0 20px 10px 30px; }
#sidebar {
float: right;
width: 220px;
background: #fff url(images/bg.jpg) repeat-x;
}
#sidebar h3 {
background: url(images/sidebar.png) no-repeat;
height: 30px;
line-height: 30px;
font-weight: 100;
margin: 0; padding: 0 0 0 10px;
color: #fff;
font-size: 12px;
}
#sidebar p { padding: 0 10px 10px 10px; color: #232323; }
#sidebar ul {
padding: 5px 0 10px 15px;
margin: 0;
color: #aaa;
list-style-type: none;
}
#sidebar ul li {
background: url(images/bullet.png) no-repeat center left;
padding: 1px 0 2px 22px;
margin: 0;
}
#sidebar ul li a { }
#footer {
text-align: center;
color: #fff;
background: url(images/footer.png) repeat-y;
height: 80px;
line-height: 80px;
}
#footer p { padding: 0; margin: 0; }
#footer a { color: #fff; }
#footer a:hover { text-decoration: underline; }