100 lines
1.8 KiB
Plaintext
Raw Permalink Normal View History

const video-padding = 56.25%
2018-12-09 13:53:46 +09:00
const video-control-color = rgba(255, 255, 255, 0.85)
const video-progress-height = 0.35rem
const video-progress-clickable-height-buffer = 0.4rem
2017-10-12 17:52:46 +02:00
.video-container
2017-11-04 08:45:39 +01:00
position relative
width 100%
2017-11-07 09:57:52 +01:00
min-height 100px
2017-11-04 17:11:47 +01:00
padding-bottom video-padding
2017-11-04 08:45:39 +01:00
border-radius ui-element-border-radius
overflow hidden
:fullscreen
padding-bottom 0
height 100%
2018-12-07 09:54:17 +09:00
:hover
.video-controls
opacity 1
.video
2017-11-04 08:45:39 +01:00
position absolute
width 100%
2017-11-04 08:45:39 +01:00
height 100%
left 0
2018-04-14 16:18:46 +02:00
top 0
2018-12-07 09:54:17 +09:00
background-color black
.video-controls
2018-12-08 11:05:15 +09:00
horizontal
align-items center
2018-12-07 09:54:17 +09:00
position absolute
2018-12-08 05:19:50 +09:00
bottom 0
right 0
padding 0.5rem 0.75rem
2018-12-07 09:54:17 +09:00
opacity 0
2018-12-08 05:19:50 +09:00
width 100%
2018-12-07 09:54:17 +09:00
default-transition
2018-12-08 04:40:27 +09:00
:hover
opacity 1 !important
.video-progress-clickable
2018-12-08 05:19:50 +09:00
flex 1
padding video-progress-clickable-height-buffer 0
2018-12-08 15:01:07 +09:00
:hover
cursor pointer
.video-progress-container
height video-progress-height
2018-12-08 06:01:06 +09:00
background rgba(255, 255, 255, 0.3)
2018-12-08 05:19:50 +09:00
border-radius ui-element-border-radius
2018-12-08 08:06:31 +09:00
transform translateZ(0)
2018-12-08 05:19:50 +09:00
overflow hidden
2018-12-08 06:01:06 +09:00
.video-progress
2018-12-09 13:53:46 +09:00
background link-color
2018-12-08 05:19:50 +09:00
width 100%
height video-progress-height
2018-12-08 05:19:50 +09:00
transform scaleX(0)
transform-origin 0
2018-12-08 08:06:31 +09:00
will-change transform
2018-12-08 05:19:50 +09:00
.video-time
2018-12-08 04:40:27 +09:00
color video-control-color
2018-12-08 05:19:50 +09:00
margin-left 0.5rem
2018-12-08 04:40:27 +09:00
2018-12-07 09:54:17 +09:00
.video-control
2018-12-08 04:40:27 +09:00
background transparent !important
color video-control-color
2018-12-07 09:54:17 +09:00
border none
2018-12-08 04:40:27 +09:00
line-height 1em
height auto
padding 0
:hover
color white
2018-12-07 09:54:17 +09:00
2018-12-09 11:57:37 +09:00
.video-control-fullscreen
margin-left 0.5rem
.video-control-play,
.video-control-pause
margin-right 0.5rem
.video-control-pause
display none
2018-12-09 13:36:01 +09:00
::cue
background transparent
font-family "Ubuntu", "Trebuchet MS", sans-serif
line-height 1.5em
// Use a blurry shadow and a solid outline on each side
2018-12-10 13:42:29 +09:00
text-shadow 0 0 0.5em rgba(0, 0, 0, 0.7), -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black
2018-12-09 13:36:01 +09:00
2018-12-07 09:54:17 +09:00
::-webkit-media-controls
display none !important