Back to: 🎯 Phonics
Level 5 • Unit 1 Vocab Quiz
Total Questions: 20
Question 1 of 20
Loading question…
Fabulous!
You have finished the Level 5 Unit 1 Vocabulary quiz.
Your Final Score
0 / 20
/* Container Style matching the Level 5 Navy Theme */
#quiz-widget-container-v5-vocab {
max-width: 600px;
margin: 30px auto;
font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, sans-serif;
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
overflow: hidden;
direction: ltr;
text-align: left;
}
/* Header Design matching Vocabulary Table */
.quiz-header-v5-vocab {
background-color: #1e3a8a; /* Navy Blue */
color: #ffffff;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.quiz-title-v5-vocab {
margin: 0;
font-size: 19px;
font-weight: 600;
}
.quiz-info-v5-vocab {
background-color: rgba(255, 255, 255, 0.2);
padding: 6px 12px;
border-radius: 20px;
font-size: 13px;
font-weight: bold;
}
/* Progress Bar */
.progress-container-v5-vocab {
background-color: #f1f5f9;
height: 6px;
width: 100%;
}
.progress-bar-v5-vocab {
background-color: #93c5fd; /* Sky Blue Indicator */
height: 100%;
width: 0%;
transition: width 0.3s ease;
}
/* Quiz Card styling */
.quiz-card-v5-vocab {
padding: 25px;
}
.question-meta-v5-vocab {
font-size: 13px;
color: #64748b;
margin-bottom: 10px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.question-text-v5-vocab {
font-size: 18px;
font-weight: 600;
color: #1e293b;
margin-bottom: 20px;
line-height: 1.4;
}
/* Options list buttons */
.options-list-v5-vocab {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 20px;
}
.option-btn-v5-vocab {
background-color: #ffffff;
border: 2px solid #e2e8f0;
border-radius: 8px;
padding: 14px 18px;
font-size: 16px;
font-weight: 500;
color: #334155;
cursor: pointer;
text-align: left;
transition: all 0.2s ease;
}
.option-btn-v5-vocab:hover:not(:disabled) {
background-color: #f8fafc;
border-color: #1e3a8a;
}
.option-btn-v5-vocab:disabled {
cursor: not-allowed;
}
/* Correct and Wrong States styling */
.option-btn-v5-vocab.correct-choice-v5-vocab {
background-color: #d1fae5 !important;
border-color: #10b981 !important;
color: #065f46 !important;
font-weight: bold;
}
.option-btn-v5-vocab.wrong-choice-v5-vocab {
background-color: #fee2e2 !important;
border-color: #ef4444 !important;
color: #991b1b !important;
}
/* Feedback box styling */
.feedback-box-v5-vocab {
min-height: 40px;
margin-bottom: 15px;
font-size: 15px;
font-weight: 600;
border-radius: 6px;
display: none;
align-items: center;
}
.feedback-box-v5-vocab.correct-text-v5-vocab {
color: #10b981;
display: flex;
}
.feedback-box-v5-vocab.wrong-text-v5-vocab {
color: #ef4444;
display: flex;
}
/* Action buttons */
.action-row-v5-vocab {
display: flex;
justify-content: flex-end;
}
.action-btn-v5-vocab {
background-color: #1e3a8a;
color: #ffffff;
border: none;
border-radius: 6px;
padding: 12px 24px;
font-size: 15px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.2s ease;
}
.action-btn-v5-vocab:hover:not(:disabled) {
background-color: #172554;
}
.action-btn-v5-vocab:disabled {
background-color: #e2e8f0;
color: #94a3b8;
cursor: not-allowed;
}
/* Result screen styling */
#quiz-result-view-v5-vocab {
text-align: center;
padding: 20px 0;
}
.result-title-v5-vocab {
font-size: 24px;
font-weight: bold;
color: #1e3a8a;
margin: 0 0 8px 0;
}
.result-subtitle-v5-vocab {
font-size: 15px;
color: #64748b;
margin: 0 0 25px 0;
}
.score-card-v5-vocab {
background-color: #f8fafc;
border: 2px dashed #1e3a8a;
padding: 20px;
border-radius: 12px;
display: inline-block;
min-width: 200px;
margin-bottom: 25px;
}
.score-label-v5-vocab {
font-size: 13px;
text-transform: uppercase;
color: #64748b;
letter-spacing: 0.5px;
margin-bottom: 5px;
}
.score-value-v5-vocab {
font-size: 32px;
font-weight: bold;
color: #1e293b;
}
.restart-btn-v5-vocab {
background-color: #1e3a8a;
display: block;
margin: 0 auto;
}
.restart-btn-v5-vocab:hover {
background-color: #172554;
}