Update app.py
Browse files
app.py
CHANGED
|
@@ -69,67 +69,59 @@ st.markdown(
|
|
| 69 |
padding-bottom: 1.2rem;
|
| 70 |
max-width: 480px;
|
| 71 |
}
|
|
|
|
| 72 |
.step-indicator {
|
| 73 |
display: flex;
|
| 74 |
justify-content: center;
|
| 75 |
gap: 8px;
|
| 76 |
margin-bottom: 0.8rem;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
}
|
|
|
|
| 78 |
.step-dot {
|
| 79 |
width: 8px;
|
| 80 |
height: 8px;
|
| 81 |
border-radius: 999px;
|
| 82 |
background-color: #e0e0e0;
|
| 83 |
}
|
|
|
|
| 84 |
.step-dot.active {
|
| 85 |
width: 22px;
|
| 86 |
background-color: #2563eb;
|
| 87 |
}
|
|
|
|
| 88 |
.card {
|
| 89 |
background-color: #ffffff;
|
| 90 |
-
padding: 1.0rem 1.1rem;
|
| 91 |
border-radius: 18px;
|
| 92 |
box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
|
| 93 |
margin-bottom: 0.9rem;
|
| 94 |
}
|
| 95 |
-
|
| 96 |
-
width: 100%;
|
| 97 |
-
padding: 0.75rem;
|
| 98 |
-
border-radius: 999px;
|
| 99 |
-
border: none;
|
| 100 |
-
background-color: #2563eb;
|
| 101 |
-
color: #ffffff;
|
| 102 |
-
font-weight: 600;
|
| 103 |
-
font-size: 0.95rem;
|
| 104 |
-
cursor: pointer;
|
| 105 |
-
}
|
| 106 |
-
.secondary-btn {
|
| 107 |
-
width: 100%;
|
| 108 |
-
padding: 0.7rem;
|
| 109 |
-
border-radius: 999px;
|
| 110 |
-
border: 1px solid #d4d4d4;
|
| 111 |
-
background-color: #ffffff;
|
| 112 |
-
color: #374151;
|
| 113 |
-
font-weight: 500;
|
| 114 |
-
font-size: 0.9rem;
|
| 115 |
-
cursor: pointer;
|
| 116 |
-
}
|
| 117 |
.label-soft {
|
| 118 |
font-size: 0.85rem;
|
| 119 |
color: #6b7280;
|
| 120 |
margin-bottom: 0.25rem;
|
| 121 |
}
|
|
|
|
| 122 |
.title-xs {
|
| 123 |
font-size: 1.05rem;
|
| 124 |
font-weight: 600;
|
| 125 |
margin-bottom: 0.4rem;
|
| 126 |
}
|
|
|
|
| 127 |
.summary-title {
|
| 128 |
font-size: 1.05rem;
|
| 129 |
font-weight: 600;
|
| 130 |
margin-bottom: 0.4rem;
|
| 131 |
color: #111827;
|
| 132 |
}
|
|
|
|
| 133 |
textarea {
|
| 134 |
border-radius: 14px !important;
|
| 135 |
}
|
|
|
|
| 69 |
padding-bottom: 1.2rem;
|
| 70 |
max-width: 480px;
|
| 71 |
}
|
| 72 |
+
|
| 73 |
.step-indicator {
|
| 74 |
display: flex;
|
| 75 |
justify-content: center;
|
| 76 |
gap: 8px;
|
| 77 |
margin-bottom: 0.8rem;
|
| 78 |
+
/* kill any weird pill styles */
|
| 79 |
+
background: transparent !important;
|
| 80 |
+
box-shadow: none !important;
|
| 81 |
+
padding: 0 !important;
|
| 82 |
+
border-radius: 0 !important;
|
| 83 |
+
border: none !important;
|
| 84 |
}
|
| 85 |
+
|
| 86 |
.step-dot {
|
| 87 |
width: 8px;
|
| 88 |
height: 8px;
|
| 89 |
border-radius: 999px;
|
| 90 |
background-color: #e0e0e0;
|
| 91 |
}
|
| 92 |
+
|
| 93 |
.step-dot.active {
|
| 94 |
width: 22px;
|
| 95 |
background-color: #2563eb;
|
| 96 |
}
|
| 97 |
+
|
| 98 |
.card {
|
| 99 |
background-color: #ffffff;
|
| 100 |
+
padding: 0.6rem 1.1rem 1.0rem 1.1rem;
|
| 101 |
border-radius: 18px;
|
| 102 |
box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
|
| 103 |
margin-bottom: 0.9rem;
|
| 104 |
}
|
| 105 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
.label-soft {
|
| 107 |
font-size: 0.85rem;
|
| 108 |
color: #6b7280;
|
| 109 |
margin-bottom: 0.25rem;
|
| 110 |
}
|
| 111 |
+
|
| 112 |
.title-xs {
|
| 113 |
font-size: 1.05rem;
|
| 114 |
font-weight: 600;
|
| 115 |
margin-bottom: 0.4rem;
|
| 116 |
}
|
| 117 |
+
|
| 118 |
.summary-title {
|
| 119 |
font-size: 1.05rem;
|
| 120 |
font-weight: 600;
|
| 121 |
margin-bottom: 0.4rem;
|
| 122 |
color: #111827;
|
| 123 |
}
|
| 124 |
+
|
| 125 |
textarea {
|
| 126 |
border-radius: 14px !important;
|
| 127 |
}
|