-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (57 loc) · 1.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
.profile-img {
border-radius: 50%;
}
.carousel {
position: relative;
}
.carousel.pointer-event {
touch-action: pan-y;
}
.carousel-inner {
position: relative;
width: 100%;
overflow: hidden;
/* @include clearfix(); */
}
.carousel-item {
position: relative;
display: none;
float: left;
width: 100%;
margin-right: -100%;
backface-visibility: hidden;
/* @include transition($carousel-transition); */
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
display: block;
}
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
transform: translateX(-100%);
}
/* .carousel-img {
object-fit: cover;
} */
/* .carousel-custom-height {
max-height: 50vh;
}
.carousel-custom-height {
max-height: 50vh;
}
.carousel-custom-height .carousel-inner {
height: 100%;
}
.carousel-custom-height .carousel-item {
height: 100%;
}
*/
.carousel-custom-height .carousel-item img {
max-height: 50vh;
object-fit: cover;
}