70 lines
1.1 KiB
Plaintext
Raw Normal View History

const video-padding = 56.25%
2018-12-08 04:40:27 +09:00
const video-control-color = rgba(255, 255, 255, 0.75)
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
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
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-08 04:40:27 +09:00
horizontal
align-items center
2018-12-07 09:54:17 +09:00
default-transition
2018-12-08 04:40:27 +09:00
:hover
opacity 1 !important
2018-12-08 06:01:06 +09:00
.video-progress-container
2018-12-08 05:19:50 +09:00
flex 1
height 5px
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
overflow hidden
2018-12-08 06:01:06 +09:00
.video-progress
background rgba(255, 255, 255, 0.85)
2018-12-08 05:19:50 +09:00
width 100%
height 100%
transform scaleX(0)
transform-origin 0
.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
font-size 1.2rem
2018-12-08 04:40:27 +09:00
line-height 1em
height auto
padding 0
margin-left 0.5rem
:hover
color white
2018-12-07 09:54:17 +09:00
::-webkit-media-controls
display none !important