Files
videospeed/inject.css
2015-03-29 14:51:02 -07:00

82 lines
1.7 KiB
CSS

.tc-videoHost {
text-align: center;
}
.tc-videoController {
position: absolute;
background: black;
color: white;
border-radius: 5px;
padding: 5px;
margin: 10px;
line-height: 1.8em;
cursor: pointer;
z-index: 9999999;
opacity: 0.3;
font-family: Verdana;
font-size: 13px;
}
.tc-videoController button {
}
.tc-videoController:hover {
opacity: 0.7;
}
.tc-videoController:hover .tc-controls {
display: inline;
}
.tc-controls {
display: none;
margin-left:1em;
}
.tc-controls button {
color: black !important;
background: white !important;
font-weight: bold !important;
margin: 0 2px !important;
border-radius: 5px !important;
padding: 3px 8px !important;
font-size: 15px !important;
line-height: 15px !important;
}
/* shift controller when YouTube infobar is present */
.ytp-block-autohide:not(.el-detailpage):not(.el-embedded) .tc-videoController {
margin-top: 40px;
}
.html5-video-player:not(.ytp-block-autohide):not(.el-detailpage) .tc-videoController {
transition: margin-top .25s cubic-bezier(0.4,0,0.2,1);
margin-top: 10px;
}
html[data-player-size=fullscreen] .tc-videoController {
display: block;
margin-top: 40px;
}
html[data-player-size=fullscreen] .html5-video-player:not(.ytp-block-autohide) .tc-videoController {
transition: opacity .25s cubic-bezier(0.4,0,0.2,1);
opacity: 0;
}
/* shift controller on Vine embeds: mute always visible */
/* e.g. https://twitter.com/Vine_Football/status/550614684575858688 */
.video-container .tc-videoController {
margin-top: 12px;
margin-left: 55px;
}
/* shift controller on vine.co */
/* e.g. https://vine.co/v/OrJj39YlL57 */
.video-container .vine-video-container .tc-videoController {
margin-left: 40px;
}