Pranav0111 commited on
Commit
595cebf
1 Parent(s): 39b2d31

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -13
app.py CHANGED
@@ -146,19 +146,20 @@ def create_journal_interface():
146
 
147
  /* Button styles */
148
  .custom-button {
149
- background: linear-gradient(135deg, #6B73FF 0%, #000DFF 100%);
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;
157
- }
158
-
159
- .custom-button:hover {
160
- transform: translateY(-2px);
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 {