-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnew-style-bt5.css
50 lines (40 loc) · 1.05 KB
/
new-style-bt5.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
/**
* User: Alessandro Battaglia
* Date: 17/05/2022
* Time: 15:24
*/
.vertical.carousel .carousel-item {
overflow: hidden;
}
.vertical.carousel .carousel-item-next:not(.carousel-item-start),
.vertical.carousel .active.carousel-item-end {
transform: translateY(100%);
}
.vertical.carousel .carousel-item-prev:not(.carousel-item-end),
.vertical.carousel .active.carousel-item-start {
transform: translateY(-100%);
}
.vertical.carousel .carousel-indicators {
top: 0;
left: unset;
margin-left: unset !important;
margin-right: 1rem;
flex-direction: column;
}
.vertical.carousel .carousel-indicators [data-bs-target] {
height: 30px;
width: 3px;
}
.vertical.carousel .carousel-control-prev,
.vertical.carousel .carousel-control-next {
width: 100%;
height: 60px;
}
.vertical.carousel .carousel-control-prev-icon,
.vertical.carousel .carousel-control-next-icon {
transform: rotateZ(90deg);
}
.vertical.carousel .carousel-control-next {
top: unset;
bottom: 0;
}