-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (106 loc) · 1.82 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
body {
font-family: "Trebuchet MS", sans-serif;
line-height: 1.5;
font-size: 14px;
background: #36393D;
margin: 0;
padding: 0;
}
a { color: #0066cc; text-decoration: none;}
a:hover { color: #880000; }
h1 {
margin: 0;
padding-left: 20px;
}
h1 a { text-decoration: none; color: #F9F7ED; }
h1 a:hover { border-bottom: 1px solid #F9F7ED; color: #F9F7ED; }
#wrap {
width: 730px;
margin: 20px auto;
background: #fff;
padding: 20px;
}
#header {
background: #2C2D2F;
height: 100px;
line-height: 100px;
}
#menu {
background: #356AA0;
height: 30px;
line-height: 30px;
}
#menu ul {
list-style-type: none;
margin: 0;
padding-left: 0px;
}
#menu ul li {
display: block;
float: left;
}
#menu ul li a {
display: block;
padding: 0 10px 0 10px;
text-decoration: none;
color: #fff;
font-size: 13px;
font-weight: 600;
}
#menu ul li a:hover {
color: #fff;
background: #CF4D4F;
}
#content {
float: right;
width: 480px;
background: #F9F7ED;
margin-top: 20px;
}
#content h2 {
margin: 0;
color: #F9F7ED;
height: 30px;
line-height: 30px;
background: #2C2D2F;
padding: 0 0 0 10px;
font-size: 16px;
}
#content p { padding: 0 10px 10px 10px; color: #232323;}
#content ul { padding: 0 20px 10px 30px; }
#sidebar {
float: left;
margin-top: 20px;
width: 230px;
background: #eee;
border-bottom: 5px solid #36393D;
}
#sidebar h3 {
background: #2C2D2F;
height: 30px;
line-height: 30px;
font-weight: 600;
font-size: 14px;
margin: 0; padding: 0 0 0 10px;
color: #F9F7ED;
}
#sidebar p { padding: 0 10px 10px 10px; color: #232323; }
#sidebar ul {
padding: 10px 0 20px 30px;
margin: 0;
}
#sidebar ul li {
padding: 0;
margin: 0;
}
#sidebar ul ul { padding: 2px 0 2px 20px; }
#footer {
background: #2C2D2F;
padding: 10px 0;
text-align: center;
color: #fff;
margin-top: 20px;
}
#footer p { padding: 0; margin: 0; }
#footer a { color: #fff; }
#footer a:hover { text-decoration: underline; }