mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-05 14:59:43 +07:00
27 lines
458 B
HTML
27 lines
458 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
align-items: center;
|
|
background-color: #224;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin: none;
|
|
padding: none;
|
|
}
|
|
|
|
body.shutdown {
|
|
background-color: #422;
|
|
}
|
|
|
|
body.shutdown #player {
|
|
display: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<video id="player"></video>
|
|
<script src="receiver.js"></script>
|
|
</body>
|
|
</html>
|