blob: 9d2c23d3ee9c6cad192691d3db043fcff16b8ce5 (
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
42
|
.collectionVideoView-cont{
width: 100%;
height: 100%;
position: inherit;
top: 0;
left:0;
z-index: -1;
}
.collectionVideoView-time{
color : white;
top :25px;
left : 25px;
position: absolute;
background-color: rgba(50, 50, 50, 0.2);
transform-origin: left top;
}
.collectionVideoView-play {
width: 25px;
height: 20px;
bottom: 25px;
left : 25px;
position: absolute;
color : white;
background-color: rgba(50, 50, 50, 0.2);
border-radius: 4px;
text-align: center;
transform-origin: left bottom;
}
.collectionVideoView-full {
width: 25px;
height: 20px;
bottom: 25px;
right : 25px;
position: absolute;
color : white;
background-color: rgba(50, 50, 50, 0.2);
border-radius: 4px;
text-align: center;
transform-origin: right bottom;
}
|