blob: 6c2f5a62aefa0678ae865e79185b212d6f737e5c (
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
|
.collectionVideoView-controls{
width: 100%;
height: 100%;
position: absolute;
}
.collectionVideoView-time{
color : white;
top :25px;
left : 25px;
position: absolute;
background-color: rgba(50, 50, 50, 0.2);
}
.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;
}
.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;
}
|