-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (60 loc) · 1.02 KB
/
Copy pathstyle.css
File metadata and controls
70 lines (60 loc) · 1.02 KB
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
body{
background-color: #f5f5f5;
}
.slider{
position: relative;
margin: 50px auto;
width: 900px;
height: 500px;
box-shadow: 0px 4px 14px 4px #CCC;
}
.forward{
position: absolute;
right: -46px;
top: 50%;
transform: translateY(-40px);
font-size: 37px;
}
.backward{
position: absolute;
left: -46px;
top: 50%;
transform: translateY(-40px);
font-size: 37px;
}
.backward:hover,
.forward:hover{
cursor: pointer;
}
.SliderImg{
transition: opacity .5s;
width: 100%;
height: 100%;
background-image: url("./imgs/img1.png");
background-position: center;
background-clip: border-box;
background-size: cover;
}
.active{
color: #b1acac !important;
}
.bound{
transition: all .5s;
position: relative;
color: #e2e2e2;
font-size: 20px;
cursor: pointer;
}
.bounds{
text-align: center;
position: relative;
top: -30px;
}
.bound:hover{
color: #9c9c9c;
}
.bound span{
position: absolute;
color: #000;
left: 5px;
}