body {
background-color: #191c28;
color: #ffffff;
font-family: 'Eurostile', Arial, sans-serif;
}
#quiz-video-search {
margin: 20px auto;
display: block;
width: 90%;
height: 40px;
font-size: 16px;
padding: 10px;
border: 2px solid #23a0da;
border-radius: 5px;
color: #fff;
background-color: transparent;
}
#quiz-video-list {
margin: 20px auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.quiz-video-wrapper {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.quiz-video-item {
width: 200px;
height: 200px;
margin: 10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #fff;
font-size: 24px;
font-weight: bold;
text-align: center;
background-color: #23a0da;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
cursor: pointer;
transition: all 0.2s ease-in-out;
}
.quiz-video-item:hover {
transform: translateY(-5px);
box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}
#quiz-video-container {
margin: 20px auto;
width: 80%;
max-width: 800px;
height: 0;
padding-bottom: 56.25%;
position: relative;
}
#quiz-video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
border-radius: 5px;
}
#quiz-video-iframe {
width: 100%;
height: 100%;
border: none;
}
.quiz-video-item p {
display: none;
}
.quiz-video-item::after {
content: none;
}
#quiz-video-list .quiz-video-item:nth-child(even) {
background-color: #1f2331;
}
#quiz-video-list .quiz-video-item:nth-child(odd) {
background-color: #232833;
}
#quiz-video-list .quiz-video-item:nth-child(even):hover {
background-color: #23a0da;
}
#quiz-video-list .quiz-video-item:nth-child(odd):hover {
background-color: #23a0da;
}
#quiz-video-search::placeholder {
color: #fff;
opacity: 0.5;
}
#quiz-video-search:focus {
outline: none;
border: 2px solid #23a0da;
}
#quiz-video-list .quiz-video-item::before {
content: attr(data-video-title);
font-size: 1rem;
line-height: 1.2;
text-align: center;
margin-bottom: 0.25rem;
}