Skip to content

Instantly share code, notes, and snippets.

@olekstomek
Last active June 4, 2024 07:18
Show Gist options
  • Save olekstomek/01169900f07c929e294a6cbdbf0f61ba to your computer and use it in GitHub Desktop.
Save olekstomek/01169900f07c929e294a6cbdbf0f61ba to your computer and use it in GitHub Desktop.
Multistream z gniazd ptaków na wieżach stacji bazowych Orange
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multi wideo - gniazda ptaków na masztach Orange Polska S.A.</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f0f0f0;
}
.grid-container {
display: grid;
gap: 10px;
width: 100%;
height: 100vh;
padding: 10px;
box-sizing: border-box;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: auto;
}
.video-container {
width: 100%;
height: 0;
padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
position: relative;
}
.video-container iframe {
position: absolute;
width: 100%;
height: 100%;
border: 2px solid #ccc;
}
.space {
width: 100%;
height: 0;
padding-bottom: 56.25%;
}
</style>
</head>
<body>
<div class="grid-container">
<div class="video-container">
<iframe src="https://player.syntion.pl/strzelce1.html" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://player.syntion.pl/strzelce2.html" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://player.syntion.pl/konstancin1.html" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://player.syntion.pl/konstancin2.html" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://player.syntion.pl/lodz_brzezinska_1.html" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://player.syntion.pl/lodz_brzezinska_2.html" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://player.syntion.pl/rosice1.html" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://player.syntion.pl/kwidzyn_lotnicza_1.html" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://player.syntion.pl/kwidzyn_lotnicza_2.html" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://player.syntion.pl/liszkowo_1.html" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://player.syntion.pl/liszkowo_2.html" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://player.syntion.pl/zielona_gora_1.html" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://player.syntion.pl/zielona_gora_2.html" allowfullscreen></iframe>
</div>
<div class="space"></div>
<div class="space"></div>
<div class="space"></div>
</div>
</body>
</html>
@olekstomek
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment