Files
BetterSEQTA-Plus/public/backgrounds/background.html
T
2023-10-29 09:16:05 +11:00

34 lines
583 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Background Fetcher</title>
<style>
body {
margin: 0 !important;
}
video, img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
</style>
</head>
<body>
<!-- Container for the media -->
<div id="media-container">
<!-- Will be populated dynamically -->
</div>
<script src="localForage.js"></script>
<script src="background.js"></script>
<script src="themeManager.js"></script>
</body>
</html>