Jack Monas
commited on
Commit
·
2e5a1c6
1
Parent(s):
2dfca59
rules
Browse files
app.py
CHANGED
|
@@ -126,9 +126,14 @@ def main():
|
|
| 126 |
def display_faq(question, answer):
|
| 127 |
st.markdown(
|
| 128 |
f"""
|
| 129 |
-
<div style="
|
| 130 |
-
|
| 131 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 132 |
</div>
|
| 133 |
""",
|
| 134 |
unsafe_allow_html=True
|
|
|
|
| 126 |
def display_faq(question, answer):
|
| 127 |
st.markdown(
|
| 128 |
f"""
|
| 129 |
+
<div style="
|
| 130 |
+
padding: 12px;
|
| 131 |
+
margin-bottom: 12px;
|
| 132 |
+
background-color: #0d1b2a;
|
| 133 |
+
border-radius: 8px;
|
| 134 |
+
border: 1px solid #0d1b2a;">
|
| 135 |
+
<p style="font-weight: bold; margin: 0 0 4px 0; color: #ffffff;">{question}</p>
|
| 136 |
+
<p style="margin: 0; color: #ffffff;">{answer}</p>
|
| 137 |
</div>
|
| 138 |
""",
|
| 139 |
unsafe_allow_html=True
|