zorn/test/index.html

92 lines
1.9 KiB
HTML
Raw Normal View History

2023-10-17 08:45:17 -04:00
<!DOCTYPE html>
<html>
<head>
<title>Plyx Player</title>
<link rel="stylesheet" href="/src/styles/app.css">
<script src="/src/index.js" type="module"></script>
2023-11-06 18:08:59 -05:00
<script src="/src/icons/fa-kit/js/all.js" crossorigin="anonymous"></script>
2023-10-17 08:45:17 -04:00
</head>
<body>
<p>Plyx Player <span>By SudoVanilla</span></p>
<div class="video-container">
2023-11-06 18:08:59 -05:00
<video class="plyx-player" src="ennie yoyki completo-S50_Iv43y_w.webm"></video>
</div>
<div class="video-container">
<video class="plyx-player" src="ennie yoyki completo-S50_Iv43y_w.webm"></video>
2023-10-17 08:45:17 -04:00
</div>
<div class="credits">
2023-11-06 18:08:59 -05:00
<p><a href="https://youtu.be/MuyJtxzyU3o">Ennie and Yoyki: Ungirly Games</a> <span>By Lenar Mingazov</span></p>
2023-10-17 08:45:17 -04:00
</div>
</body>
</html>
2023-11-06 02:10:35 -05:00
<!-- Change colors in the player -->
<style>
:root {
--plyx-progress-bar-bg: rgba(85, 144, 179, 0.23);
--plyx-progress-bar:rgb(0, 195, 255);
--pylx-thumb: #7997d0;
--pylx-rounded-corners: 4px;
}
</style>
2023-10-17 08:45:17 -04:00
<style>
body {
background: #090909;
color: white;
font-family: arial;
overflow: hidden;
}
video {
border-radius: 12px;
}
body::before {
content: "";
2023-11-06 02:10:35 -05:00
background-image: url(https://sudovanilla.org/content/images/ennie.jpg);
2023-10-17 08:45:17 -04:00
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
opacity: 0.06;
filter: blur(10px);
transform: scale(1.1);
}
body > p:nth-child(1) {
font-size: 24px;
margin: auto;
max-width: 1800px;
padding-top: 24px;
font-weight: bold;
padding-left: 24px;
}
.credits > p:nth-child(2) {
opacity: 0.5;
font-size: 14px;
margin: 0px;
}
span {
opacity: 0.5;
font-size: 14px;
}
.credits {
position: fixed;
bottom: 24px;
width: 100%;
max-width: 1800px;
margin: auto;
text-align: right;
left: 50%;
transform: translate(-50%);
padding-right: 48px;
}
a {
color: white;
}
</style>