2024-03-29 20:08:34 -04:00
|
|
|
.correct-answer {
|
|
|
|
|
background-color: lightgreen;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.incorrect-answer {
|
|
|
|
|
background-color: lightcoral;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.present-results-title {
|
|
|
|
|
margin-top: 8vh;
|
|
|
|
|
margin-bottom: 2vh;
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
2024-09-23 15:55:37 -04:00
|
|
|
|
|
|
|
|
/* Flexbox container for the action bar */
|
|
|
|
|
.action-bar {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Flexbox container for the form group */
|
|
|
|
|
.form-group {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Media query for narrow screens */
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
|
.action-bar {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-group {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-2xl {
|
|
|
|
|
font-size: 1.5rem; /* Adjust font size for smaller screens */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-sm {
|
|
|
|
|
font-size: 0.875rem; /* Adjust font size for smaller screens */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mb-1 {
|
|
|
|
|
margin-bottom: 0.5rem; /* Adjust margin for smaller screens */
|
|
|
|
|
}
|
|
|
|
|
}
|