obs-skin/background/index.html
2025-09-01 23:15:39 +02:00

86 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<title>Background</title>
<style>
html, body {
background: #1a1a1a;
}
@keyframes shadow {
from {
filter: drop-shadow(0 0 5px #555555);
}
20% {
filter: drop-shadow(0 0 10px #555555);
}
40% {
filter: drop-shadow(0 0 6px #555555);
}
60% {
filter: drop-shadow(0 0 11px #555555);
}
to {
filter: drop-shadow(0 0 6px #555555);
}
}
video {
width: 100vw;
height: 100vh;
position: absolute;
top: 0;
left: 0;
filter: grayscale(100%);
}
.wrapper {
display: flex;
width: 100vw;
height: 100vh;
align-items: center;
justify-content: center;
position: absolute;
top: 0;
left: 0;
font-family: Ubuntu;
font-size: 80px;
color: #fff;
text-align: center;
}
img {
margin-top: 30px;
text-align: center;
}
.backdrop {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<video autoplay muted loop>
<source src="../assets/video.mp4" type="video/mp4" />
</video>
<div class="backdrop"></div>
<div class="wrapper">
<div>
Le live va commencer<br>
<img src="../assets/logo.svg" alt="">
</div>
</div>
</body>
</html>