32 lines
807 B
CSS
32 lines
807 B
CSS
|
|
.hytPlayerWrap.ended::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
cursor: pointer;
|
|
background-color: black;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 128px 128px;
|
|
background-image: url("https://cdn1.iconfinder.com/data/icons/pointed-edge-web-navigation/107/redo-512.png");
|
|
}
|
|
|
|
.hytPlayerWrap.paused::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: calc(100%);
|
|
height: auto;
|
|
cursor: pointer;
|
|
background-color: black;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 128px 128px;
|
|
background-image: url("https://i.ya-webdesign.com/images/play-button-png-16.png");
|
|
} |