blob: f1b73a6768bb2bcd27c7c9c318558b3d2f3e1fc5 (
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
41
|
.imageBox-cont {
padding: 0vw;
position: relative;
text-align: center;
width: 100%;
height: auto;
max-width: 100%;
max-height: 100%;
pointer-events: none;
}
.imageBox-cont-interactive {
pointer-events: all;
width:100%;
height:auto;
}
.imageBox-dot {
position:absolute;
bottom: 10;
left: 0;
border-radius: 10px;
width:20px;
height:20px;
background:gray;
}
.imageBox-cont img {
height: auto;
width:100%;
}
.imageBox-cont-interactive img {
height: auto;
width:100%;
}
.imageBox-button {
padding: 0vw;
border: none;
width: 100%;
height: 100%;
}
|