diff --git a/player/html/index.html b/player/html/index.html index ecd371b..05cdcde 100644 --- a/player/html/index.html +++ b/player/html/index.html @@ -17,6 +17,29 @@ height: 100%; font-family: Menlo, sans-serif; } + #click-to-play { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + + background: #000000; + color: white; + display: flex; + justify-content: center; + z-index: 10; + cursor: pointer; + } + #click-to-play .text { + font-size: 16px; + width: 80%; + margin: auto; + text-align: center; + } + /* Full page container */ .page { @@ -55,6 +78,9 @@ cursor: pointer; font-size: 18px; transition: background 0.2s ease, transform 0.2s ease; + &.current { + background: #909090; + } } .box:hover { @@ -106,6 +132,7 @@