46 lines
798 B
CSS
46 lines
798 B
CSS
/* Community Resources > Nym DevRel AMAs */
|
|
|
|
.video-slider {
|
|
display: flex;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
scroll-behavior: smooth;
|
|
scroll-snap-type: x mandatory;
|
|
}
|
|
|
|
.video-container {
|
|
flex: 0 0 auto;
|
|
margin-right: 10px;
|
|
width: 320px;
|
|
height: 180px;
|
|
border: 2px solid #000;
|
|
scroll-snap-align: start;
|
|
}
|
|
|
|
.video {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 0;
|
|
padding-bottom: 56.25%; /* 16:9 aspect ratio */
|
|
}
|
|
|
|
.video iframe {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
}
|
|
|
|
.video-title {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin: 0;
|
|
padding: 5px;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
color: #fff;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
z-index: 1;
|
|
} |