60 lines
1.1 KiB
CSS
60 lines
1.1 KiB
CSS
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#video-container {
|
|
position: relative;
|
|
width: 1600px;
|
|
height: 850px;
|
|
float: left;
|
|
}
|
|
|
|
video {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.subtitles {
|
|
position: absolute;
|
|
bottom: -40px;
|
|
width: 100%;
|
|
text-align: center;
|
|
color: white;
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
font-size: 18px;
|
|
}
|
|
|
|
#segmentsContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 265px;
|
|
height: 850px;
|
|
gap: 10px;
|
|
overflow: hidden;
|
|
overflow-y: scroll;
|
|
float: left;
|
|
flex-wrap: nowrap;
|
|
padding: 10px;
|
|
align-content: flex-start;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
|
|
#segmentsContainer button {
|
|
width: 100%;
|
|
height: 60px;
|
|
font-size: 1.3rem;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
color: rgb(103, 194, 58);
|
|
background-color: rgb(240, 249, 235);
|
|
border: 1px solid rgb(179, 225, 157);
|
|
}
|
|
|
|
#segmentsContainer button:hover {
|
|
background-color: rgb(248, 230, 191) !important;
|
|
border: 1px solid rgb(206, 187, 81);
|
|
}
|