forked from zhangmengxue/Fragment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
41 lines (40 loc) · 655 Bytes
/
base.css
File metadata and controls
41 lines (40 loc) · 655 Bytes
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
*{ margin: 0; padding: 0;}
.tab {
width: 500px;
margin: 40px auto;
}
.item {
background: #000;
height: 40px;
border: 2px solid #000;
border-radius: 5px 5px 0 0;
}
.item ul {
list-style: none;
}
.item li {
width: 120px;
height: 40px;
line-height: 40px;
float: left;
color: white;
text-align: center;
}
.item li:hover {
color: #fff;
background: #999;
}
.content {
width: 496px;
border: 2px solid #000;
border-radius: 0 0 5px 5px;
box-shadow: 5px 5px 8px #666;
}
.content .summary {
display: none;
clear: both;
}
.content ul {
list-style: disc;
margin-left: 40px;
}