-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (67 loc) · 1.09 KB
/
Copy pathstyle.css
File metadata and controls
71 lines (67 loc) · 1.09 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
71
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
width: 100%;
height: 400px;
background-color: aquamarine;
position: relative;
}
.container img{
display: none;
width: 100%;
height: 400px;
}
.active img{
display: block;
}
.slider-button{
background: rgba(255, 255, 255, 0.55);
cursor: pointer;
border-radius: 50%;
width: 30px;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
padding: 5px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
font-size: 25px;
position: absolute;
z-index: 10;
top:50%;
font-weight: 600;
transition:0.6s;
}
#button-prev{
left:10px;
}
#button-next{
right:10px;
}
.slider-button:hover{
background-color: #717171;
}
.dots-container{
position: absolute;
bottom: 10px;
left:50%;
}
.dot {
cursor:pointer;
height: 13px;
width: 13px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s;
}
.dot:hover {
background-color: #b75d5d;
}
.dots-container .activeDot{
background-color: rgb(212, 102, 80);
}