forked from GreenGitHuber/Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
my.css
63 lines (55 loc) · 919 Bytes
/
my.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
/* 页面头部 */
div#header {
background-color: #2a3440;
height: 60px;
}
div#header-inner {
width: 90%;
max-width: 1024px;
margin: 0 auto;
padding-top: 2px;
}
div#main-inner {
width: 90%;
max-width: 1024px;
margin: 0 auto;
}
div#title a {
font-weight: bold;
font-size: 24px;
color: #fff;
}
div#subtitle {
color: rgba(255,255,255,.5);
font-weight: bold;
font-size: 11px;
}
/* 导航栏 */
div#topnav ul {
margin: 0;
padding: 0;
margin-top: 18px;
}
div#topnav ul li {
list-style: none;
float: left;
}
div#topnav ul li a {
display: block;
color: #2a3440;
}
div#topnav ul li.sep {
color: #ccc;
margin: 0 12px;
}
/* 页面底部 */
div#footer-inner {
border-top: 1px solid #5a5a5a;
width: 90%;
max-width: 1024px;
margin: 20px auto 0;
}
div#footer-inner p {
text-align: right;
font-size: 14px;
}