-
Notifications
You must be signed in to change notification settings - Fork 493
/
Copy pathstyle.css
53 lines (48 loc) · 1.01 KB
/
style.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
*{
overflow: hidden;
}
.Images {
display: none
}
img {
margin: auto;
display: block;
width: 100%;
}
/* Our main images-slideshow container */
.ImageSlides {
max-width: 612px;
position: relative;
margin: auto;
}
/*Style for ">" next and "<" previous buttons */
.slider-btn{
cursor: pointer;
position: fixed;
top: 50%;
width: auto;
padding: 8px 16px;
margin-top: -22px;
color: rgb(0, 0, 0);
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
background-color: rgba(201, 201, 201, 0.932);
border-radius: 50%;
}
/* setting the position of the previous button towards left */
.prev-btn {
left: 10px;
}
/* setting the position of the next button towards right */
.next-btn {
right: 10px;
}
/* On hover, adding a background color */
.prev-btn:hover,
.next-btn:hover {
color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.8);
}