Update style.css

This commit is contained in:
noxy 2017-02-02 12:32:06 +00:00
parent d2c04d3bf8
commit 61d90f197b

View File

@ -234,4 +234,23 @@ img {
.plyr--fullscreen-active video {
height: 100%;
}
/* Feuerfick */
.plyr input[type="range"]::-moz-range-thumb {
position: relative;
height: 16px;
width: 16px;
background: #9f0;
border: 2px solid #262626;
border-radius: 100%;
transition: background .2s ease, border .2s ease, transform .2s ease;
box-shadow: 0 1px 1px rgba(0, 0, 0, .15), 0 0 0 1px rgba(0, 0, 0, .15);
box-sizing: border-box;
}
.plyr input[type=range]:active::-moz-range-thumb {
background: #9f0;
border-color: #262626;
transform: scale(1.25)
}