diff --git a/index.html b/index.html index 094e5fef1..53091caa3 100644 --- a/index.html +++ b/index.html @@ -73,6 +73,48 @@ + + + +
+ + \ No newline at end of file diff --git a/src/viewer-styles.css b/src/viewer-styles.css index 44e35b9ad..9a351bcf1 100644 --- a/src/viewer-styles.css +++ b/src/viewer-styles.css @@ -1,6 +1,34 @@ @import url("notyf.min.css"); @import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500'); +.play-button { + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: 18vh; + height: 18vh; + background-color: #000000; + border-radius: 50%; + cursor: pointer; + transition: background-color 0.3s ease; +} + +.play-button::before { + content: ""; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-40%, -50%); + border-style: solid; + border-width: 5vh 0 5vh 8vh; + border-color: transparent transparent transparent #aaaaaa; +} + +.play-button:hover { + background-color: #333333; +} + html { font-family: 'Lato', sans-serif; }