This commit is contained in:
Lanta 2025-06-17 16:37:38 +02:00
parent 136c5f47d2
commit 05796a7881
2 changed files with 41 additions and 0 deletions

View file

@ -240,3 +240,25 @@ td, th {
background-color: #0f0f0f;
color: #e69109;
}
/* Videos page styles */
.videos-container {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
padding: 1rem;
}
.video-item {
flex: 1 1 300px;
max-width: 100%;
}
.video-item video {
max-width: 100%;
max-height: 80vh;
width: auto;
height: auto;
object-fit: contain;
display: block;
margin: 0 auto;
}

View file

@ -82,3 +82,22 @@ section h2 {
margin-top: 10px;
}
/* Videos page responsive adjustments */
.videos-container {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
padding: 1rem;
}
.video-item {
flex: 1 1 100%;
max-width: 100%;
}
.video-item video {
width: 100%;
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}