Last active
June 4, 2024 07:18
-
-
Save olekstomek/01169900f07c929e294a6cbdbf0f61ba to your computer and use it in GitHub Desktop.
Multistream z gniazd ptaków na wieżach stacji bazowych Orange
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
Author
olekstomek
commented
Jun 4, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment