-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb2style.css
81 lines (80 loc) · 985 Bytes
/
web2style.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
*{
padding: 0;
margin: 0;
}
li{
list-style: none;
}
.tip{
height: 20px;
background: #ccc;
}
.topcenter{
width: 1000px;
margin: 0 auto;
height: 20px;
}
.img{
width: 30px;
float: left;
margin-bottom: 1px;
}
.p{
float: left;
color: red;
}
.box{
width: 1200px;
height: 380px;
margin: 20px auto;
position: relative;
overflow: hidden;
}
.slider{
width: 8400px;
position: absolute;
left: -1200px;
}
.slide{
width: 1200px;
overflow: hidden;
float: left;
}
.box>span{
display: block;
width: 30px;
height: 50px;
text-align: center;
cursor: pointer;
color: #eee;
top: 175px;
line-height: 50px;
background: rgb(255,0,0);
font-size: 30px;
position: absolute;
opacity: 0;
}
#left{
left: 30px;
}
#right{
right: 30px;
}
.nav{
position: absolute;
left: 500px;
bottom: 20px;
}
.nav>li{
float: left;
width: 20px;
height: 20px;
background: #ccc;
cursor: pointer;
margin: 0 10px;
border-radius: 50%;
text-align: center;
}
.nav .active{
background: red;
}