change update video to youtube embed with auto ad skipping and looping

This commit is contained in:
Seth Burkart
2024-06-08 21:51:08 +10:00
parent 24ff97a548
commit 594ab9bc1d
5 changed files with 122 additions and 12 deletions
+21
View File
@@ -2902,10 +2902,31 @@ body:has(.outside-container:not(.hide)) #AddedSettings.tooltip:hover > .tooltipt
padding-bottom: 16px;
}
.whatsnewImg {
background-color: black;
pointer-events: none !important;
margin: 8px auto;
width: 90%;
border-radius: 16px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.whatsnewImg > iframe {
aspect-ratio: 16/9;
width: 100%;
height: 100%;
border-radius: 16px;
opacity: 0;
animation-delay: 0.8s !important;
animation: fade-in 0.5s forwards;
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.whatsnewTextContainer {
display: flex;