0% found this document useful (0 votes)
5 views4 pages

Message

rjdnfmf

Uploaded by

lohet74853
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views4 pages

Message

rjdnfmf

Uploaded by

lohet74853
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

/* Minimalist Quiz App Styles */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
font-size: 16px;
}

.app-container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}

header {
text-align: center;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}

h1, h2 {
margin-bottom: 15px;
color: #333;
}

.selection-container {
margin-bottom: 20px;
}

.grid-buttons {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 10px;
}

button {
background-color: white;
color: #333;
border: 1px solid #333;
padding: 10px;
margin: 5px 0;
cursor: pointer;
width: 100%;
text-align: center;
transition: background-color 0.3s ease;
}

button:hover {
background-color: #f0f0f0;
}
.back-btn {
margin-top: 15px;
display: block;
width: auto;
}

.question-header {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
padding: 10px;
background-color: #f8f8f8;
}

.question {
margin-bottom: 15px;
}

.options {
display: grid;
grid-template-columns: 1fr;
gap: 10px;
}

.option {
padding: 10px;
border: 1px solid #ddd;
cursor: pointer;
transition: background-color 0.3s ease;
}

.option.selected {
background-color: #e0e0e0;
}

.option.correct {
background-color: #d4edda;
color: #155724;
}

.option.incorrect {
background-color: #f8d7da;
color: #721c24;
}

#integer-input-container {
margin-bottom: 15px;
}

#integer-input {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #333;
}

.question-actions {
margin-top: 15px;
}
#explanation {
margin-top: 15px;
padding: 10px;
border: 1px solid #ddd;
background-color: #f9f9f9;
}

.navigation-buttons {
display: flex;
justify-content: space-between;
margin-top: 20px;
}

.nav-btn {
display: flex;
align-items: center;
justify-content: center;
width: auto;
}

.btn-icon {
margin: 0 5px;
}

.success {
color: #28a745;
}

.error {
color: #dc3545;
}

footer {
text-align: center;
margin-top: 20px;
padding-top: 10px;
border-top: 1px solid #eee;
color: #666;
}

.hidden {
display: none !important;
}

#paper-title {
font-weight: bold;
margin-bottom: 10px;
color: gray;
}

/* Ensure MathJax renders inline */


.MathJax {
display: inline !important;
}

/* Responsive adjustments */
@media (max-width: 600px) {
.app-container {
padding: 10px;
}

.grid-buttons {
grid-template-columns: 1fr;
}
}
.breadcrumb {
margin-bottom: 20px;
padding: 10px;

gap: 5px;
font-size: 14px;
}

.breadcrumb-item {
color: #333;
cursor: pointer;
text-transform: capitalize;
}

.breadcrumb-item:hover {
text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
content: "/";
color: #666;
}

You might also like