DawnC commited on
Commit
cda8e51
1 Parent(s): e0aa3d5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -14
app.py CHANGED
@@ -471,23 +471,28 @@ def main():
471
 
472
  # Footer
473
  gr.HTML('''
474
- <div style="text-align: center; padding: 20px 0;">
475
- <p style="
476
- font-family: 'Arial', sans-serif;
477
- font-size: 14px;
478
- font-weight: 500;
479
- letter-spacing: 2px;
480
- background: linear-gradient(90deg, #555, #007ACC);
481
- -webkit-background-clip: text;
482
- -webkit-text-fill-color: transparent;
483
- margin-bottom: 12px;
484
- text-transform: uppercase;
485
- display: inline-block;
486
- ">EXPLORE THE CODE →</p>
487
- <br>
488
  <a href="https://github.com/Eric-Chung-0511/Learning-Record/tree/main/Data%20Science%20Projects/PawMatchAI" style="text-decoration: none;">
489
  <img src="https://img.shields.io/badge/GitHub-PawMatch_AI-007ACC?logo=github&style=for-the-badge">
490
  </a>
 
 
 
 
 
 
 
 
 
 
 
 
491
  </div>
492
  ''')
493
 
 
471
 
472
  # Footer
473
  gr.HTML('''
474
+ <div style="
475
+ display: flex;
476
+ align-items: center;
477
+ justify-content: center;
478
+ gap: 16px;
479
+ padding: 20px 0;
480
+ ">
 
 
 
 
 
 
 
481
  <a href="https://github.com/Eric-Chung-0511/Learning-Record/tree/main/Data%20Science%20Projects/PawMatchAI" style="text-decoration: none;">
482
  <img src="https://img.shields.io/badge/GitHub-PawMatch_AI-007ACC?logo=github&style=for-the-badge">
483
  </a>
484
+ <span style="
485
+ font-family: 'Arial', sans-serif;
486
+ font-size: 14px;
487
+ font-weight: 500;
488
+ letter-spacing: 1px;
489
+ color: #666;
490
+ display: flex;
491
+ align-items: center;
492
+ gap: 4px;
493
+ ">
494
+ EXPLORE THE CODE <span style="color: #007ACC;">→</span>
495
+ </span>
496
  </div>
497
  ''')
498