-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
126 lines (109 loc) · 1.81 KB
/
main.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 {
margin: 0;
background-color: #3f3f3f;
}
ul {
padding: 0;
margin: 0;
list-style: none;
}
li:target {
padding-top: 55px;
}
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999;
height: 55px;
background-color: #303030;
}
.header .inner {
max-width: 80%;
box-sizing: border-box;
margin: 0 auto;
padding: 15px 5px;
text-align: center;
}
.header a {
display: inline-block;
margin-right: 1.8em;
vertical-align: middle;
font-weight: 300;
font-size: 15px;
color: #eee;
line-height: 24px;
text-decoration: none;
}
a.logo {
float: left;
display: inline-block;
vertical-align: middle;
font-weight: bold;
color: #1FF3FD;
}
/*content*/
.view {
width: 90%;
margin: 0 auto;
}
.content-view {
padding-top: 55px;
}
.content-list {
padding: 0 50px;
}
.classify .classify-title {
padding: 10px 0;
font-size: 18px;
color: #fff;
font-weight: bold;
border-bottom: 1px solid #1FF3FD;
}
.level .level-title {
margin: 5px 0 5px 10px;
float: left;
width: 100px;
height: 36px;
line-height: 36px;
font-size: 16px;
text-align: center;
font-weight: bold;
color: #1FF3FD;
border-left: 5px solid #1FF3FD;
}
.level-item {
overflow: hidden;
}
.level-item li {
margin-right: 15px;
float: left;
font-size: 14px;
height: 46px;
line-height: 46px;
}
.level-item a {
text-decoration: none;
color: #eee;
text-transform: capitalize;
}
.level-item a:hover {
color: #1FF3FD;
}
/*footer*/
.footer {
width: 100%;
background-color: #303030;
}
.footer .inner {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.footer p {
margin: 5px;
font-size: 13px;
text-align: center;
color: #eee;
}