mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
48 lines
921 B
HTML
48 lines
921 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="https://www.gstatic.com/cast/sdk/libs/receiver/2.0.0/cast_receiver.js"> </script>
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
|
<script src="receiver.js"></script>
|
|
<style>
|
|
body{
|
|
background: black;
|
|
}
|
|
#player{
|
|
width: 100vw;
|
|
height: 100vh;
|
|
margin-left: -8px;
|
|
margin-top: -8px;
|
|
}
|
|
.center{
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
left: 0;
|
|
right: 0;
|
|
margin: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.lower_left{
|
|
position: absolute;
|
|
bottom: 0px;
|
|
width: 15%;
|
|
left: 0;
|
|
right: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.hide{
|
|
display: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="wrapper">
|
|
<img id="zoff-logo" class="center" src="squareicon_small.png" alt="logo">
|
|
<div id="player" class="hide"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|