Update app.py
Browse files
app.py
CHANGED
@@ -74,7 +74,7 @@ def generate_quiz_page():
|
|
74 |
display: none; /* Hide the form after generating quiz */
|
75 |
}}
|
76 |
.quiz-container {{
|
77 |
-
background-color: #
|
78 |
padding: 20px;
|
79 |
border-radius: 5px;
|
80 |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Light shadow effect */
|
@@ -92,6 +92,10 @@ def generate_quiz_page():
|
|
92 |
color: #ffc107; /* Yellow text color */
|
93 |
font-weight: bold; /* Bold text */
|
94 |
border-radius: 4px;
|
|
|
|
|
|
|
|
|
95 |
}}
|
96 |
a {{
|
97 |
color: #ffc107; /* Yellow text color for links */
|
|
|
74 |
display: none; /* Hide the form after generating quiz */
|
75 |
}}
|
76 |
.quiz-container {{
|
77 |
+
background-color: #f0f0f0; /* Light grey background */
|
78 |
padding: 20px;
|
79 |
border-radius: 5px;
|
80 |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Light shadow effect */
|
|
|
92 |
color: #ffc107; /* Yellow text color */
|
93 |
font-weight: bold; /* Bold text */
|
94 |
border-radius: 4px;
|
95 |
+
background-color: #333; /* Dark grey background color */
|
96 |
+
}}
|
97 |
+
.generate-link:hover {{
|
98 |
+
text-decoration: none; /* Remove underline on hover */
|
99 |
}}
|
100 |
a {{
|
101 |
color: #ffc107; /* Yellow text color for links */
|