-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (56 loc) · 896 Bytes
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
#sliders {
height: 400px;
width: 60%;
overflow: hidden;
margin: 0 auto;
position: relative;
}
.gallery-header {
display: none;
}
.slider-item {
display: none;
}
.img-thumbnail {
cursor: pointer;
}
.added {
border: 2px solid #1e1743;
border-radius: 5px;
}
img {
height: 400px;
object-fit: cover;
}
.prev-next {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
cursor: pointer;
}
.prev, .next {
background-color: transparent;
padding: 8px 10px;
color: #fff;
}
.dot {
background-color: rgb(163, 156, 156);
height: 10px;
width: 10px;
border-radius: 50%;
cursor: pointer;
margin: 0 3px;
}
.main {
display: none;
}
@media (max-width: 767px) {
.justify-content-around.align-items-center.mt-3.gallery-header.mb-2 {
flex-direction: column;
}
#sliders {
height: 300px;
width: 90%;
}
}