blob: 4815f1a593440cb235dac1acf4728e8d6268bb01 (
plain)
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
|
.collectionCarouselView-outer {
background: gray;
.collectionCarouselView-caption {
margin-left: 10%;
margin-right: 10%;
height: 50;
display: inline-block;
width: 80%;
}
.collectionCarouselView-image {
height: calc(100% - 50px);
display: inline-block;
width: 100%;
}
}
.carouselView-back {
position: absolute;
display: flex;
left: 0;
top: 50%;
width: 30;
height: 30;
background: lightgray;
align-items: center;
border-radius: 5px;
justify-content: center;
}
.carouselView-fwd {
position: absolute;
display: flex;
right: 0;
top: 50%;
width: 30;
height: 30;
background: lightgray;
align-items: center;
border-radius: 5px;
justify-content: center;
}
|