Spaces:
Running
Running
Pranav0111
commited on
Commit
•
595cebf
1
Parent(s):
39b2d31
Update app.py
Browse files
app.py
CHANGED
@@ -146,19 +146,20 @@ def create_journal_interface():
|
|
146 |
|
147 |
/* Button styles */
|
148 |
.custom-button {
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
|
|
162 |
|
163 |
/* Card styles */
|
164 |
.card {
|
|
|
146 |
|
147 |
/* Button styles */
|
148 |
.custom-button {
|
149 |
+
background: linear-gradient(135deg, #009688 0%, #0072ff 100%); /* Teal to Blue */
|
150 |
+
border: none;
|
151 |
+
padding: 10px 20px;
|
152 |
+
border-radius: 8px;
|
153 |
+
color: white;
|
154 |
+
font-weight: bold;
|
155 |
+
cursor: pointer;
|
156 |
+
transition: transform 0.2s, box-shadow 0.2s;
|
157 |
+
}
|
158 |
+
.custom-button:hover {
|
159 |
+
transform: translateY(-2px);
|
160 |
+
box-shadow: 0 4px 8px rgba(0, 114, 255, 0.4);
|
161 |
+
}
|
162 |
+
|
163 |
|
164 |
/* Card styles */
|
165 |
.card {
|