summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/viewer/modals/modals.video.css
blob: 090391b6859881d52a7ac712a44d6478dbda8dc5 (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
43
.video-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: opacity 0.5s;
  opacity: 0.0;
  pointer-events: none;
}
.video-modal.open {
  opacity: 1.0;
  pointer-events: auto;
}
.video-modal .video {
  width: 100%;
  height: 100%;
}
.video-modal .video .videoPlayer {
  pointer-events: none;
  width: 100%;
  height: calc(100vh) !important;
  padding: 3rem 0 3rem 0;
  transition: opacity 0.5s;
}
.video-modal .video .videoPlayer div {
  width: 100%;
  height: 100% !important;
  padding: 0 !important;
}
.nav-open .video-modal .video-scrubber {
  transform: translateZ(0) translateY(3rem);
  opacity: 0;
  pointer-events: none;
}

.video-modal-open .nav-player {
  opacity: 0;
  pointer-events: none;
}