forked from nadavkav/moodle-mod_videofile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
30 lines (23 loc) · 1.02 KB
/
styles.css
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
/* Center video player. */
.videofile .video-js { margin: 0 auto }
/* Not playing message. */
.videofile .videofile-not-playing-msg { margin-top: 1em; font-size: 120%; text-align: center; font-style: italic }
/* Responsive mode. */
.videofile.videofile-responsive .vjs-tech { margin: 0 auto }
.videofile.videofile-responsive { width: 100%; height: auto }
/* Override videojs styles. */
.videofile .vjs-big-play-button { font-size: 175% }
.videofile .vjs-poster { background-color: #ddd }
/* Prevent size limit in full screen mode. */
.videofile .vjs-fullscreen { max-width: 100% !important; max-height: 100% !important }
/* Workaround for videojs "Sorry, no compatible source and playback technology..." message not showing properly. */
.videofile .video-js p { color: #000; background-color: #f00; position: absolute; z-index: 100; width: 100%; text-align: center }
.videotranscript {
width: 600px;
margin: auto;
font-family: Arial, sans-serif;
}
.dir-rtl .transcript-text {
display: block;
margin-right: 50px;
}