This commit is contained in:
Logen
2025-09-12 14:33:36 -04:00
parent 3c934a8df9
commit 7d47a56ba5
3 changed files with 28 additions and 7 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@@ -197,6 +197,22 @@ small {
margin: auto;
}
.video-container-live {
position: relative;
padding-bottom: 56.25%; /* 16:9 aspect ratio (9 / 16 = 0.5625) */
height: 0;
overflow: hidden;
}
.video-container-live iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* Mobile styles */
@media (max-width: 768px) {
.video-container {

View File

@@ -52,13 +52,18 @@
<div class="container">
<h2>Watch BTCforPlebs Live</h2>
<iframe
src="https://live.btcforplebs.com/embed/video"
title="BTCforPlebs Live"
height="350px" width="100%"
referrerpolicy="origin"
frameborder="0" allowfullscreen autoplay>
</iframe>
<div class="video-container-live">
<iframe
src="https://live.btcforplebs.com/live/output.m3u8"
title="BTCforPlebs Live"
frameborder="0"
allowfullscreen
autoplay
loop
referrerpolicy="origin"
></iframe>
</div>
</div>
</div>
<!-- Social Links Section -->