Update app.py
Browse files
app.py
CHANGED
@@ -86,6 +86,12 @@ def generate_quiz_page():
|
|
86 |
.generate-link {{
|
87 |
display: block; /* Make the link block-level for spacing */
|
88 |
margin-top: 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
}}
|
90 |
a {{
|
91 |
color: #ffc107; /* Yellow text color for links */
|
@@ -161,10 +167,11 @@ def generate_quiz_page():
|
|
161 |
textarea {
|
162 |
width: 98%;
|
163 |
padding: 10px;
|
164 |
-
border:
|
165 |
border-radius: 4px;
|
166 |
resize: vertical; /* Allow vertical resizing of textarea */
|
167 |
min-height: 150px; /* Minimum height for textarea */
|
|
|
168 |
}
|
169 |
input[type="submit"] {
|
170 |
background-color: #ffc107; /* Yellow background for submit button */
|
|
|
86 |
.generate-link {{
|
87 |
display: block; /* Make the link block-level for spacing */
|
88 |
margin-top: 10px;
|
89 |
+
border: 2px solid #000; /* Black border */
|
90 |
+
padding: 5px 10px; /* Padding for spacing inside the border */
|
91 |
+
text-decoration: none; /* Remove underline */
|
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 */
|
|
|
167 |
textarea {
|
168 |
width: 98%;
|
169 |
padding: 10px;
|
170 |
+
border: 2px solid #ffc107; /* Yellow border */
|
171 |
border-radius: 4px;
|
172 |
resize: vertical; /* Allow vertical resizing of textarea */
|
173 |
min-height: 150px; /* Minimum height for textarea */
|
174 |
+
background-color: #f0f0f0; /* Light grey background */
|
175 |
}
|
176 |
input[type="submit"] {
|
177 |
background-color: #ffc107; /* Yellow background for submit button */
|