-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
58 lines (58 loc) · 810 Bytes
/
index.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
*{
margin: 0;
padding: 0;
}
ul{
list-style: none;
}
#container{
width: 560px;
height: 420px;
margin: 50px auto;
position: relative;
overflow: hidden;
}
#tab li{
width: 20px;
height: 20px;
background: #000;
color: #fff;
float: left;
margin-right: 5px;
text-align: center;
line-height: 20px;
cursor: pointer;
filter: Alpha(opacity=50);
opacity: 0.5;
}
#tab{
position: absolute;
right: 10px;
bottom: 10px;
}
#tab .selected{
background: orange;
}
#content img{
display: none;
}
#content .selected{
display: block;
}
#arrow{
position: absolute;
left: 10px;
bottom: 10px;}
#arrow span{
float: left;
width: 20px;
height: 20px;
background: #000;
color: #fff;
text-align: center;
line-height: 20px;
margin-right: 5px;
cursor: pointer;f
ilter: Alpha(opacity=50);
opacity: 0.5;
}