videos
This commit is contained in:
parent
136c5f47d2
commit
05796a7881
2 changed files with 41 additions and 0 deletions
|
|
@ -240,3 +240,25 @@ td, th {
|
||||||
background-color: #0f0f0f;
|
background-color: #0f0f0f;
|
||||||
color: #e69109;
|
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;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -81,4 +81,23 @@ table {
|
||||||
section h2 {
|
section h2 {
|
||||||
margin-top: 10px;
|
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;
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue