Suchith-nj commited on
Commit
3daa070
·
1 Parent(s): e5ca09b

adding back styles

Browse files
Files changed (1) hide show
  1. app.py +23 -0
app.py CHANGED
@@ -45,6 +45,29 @@ st.markdown("""
45
  html {
46
  scroll-behavior: smooth;
47
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  </style>
49
  """, unsafe_allow_html=True)
50
 
 
45
  html {
46
  scroll-behavior: smooth;
47
  }
48
+ h1 {color: #FF9D00;}
49
+
50
+ .highlight-box {
51
+ padding: 2rem;
52
+ background: linear-gradient(135deg, #FF9D00 0%, #FFD21E 100%);
53
+ color: #1F1F1F;
54
+ border-radius: 10px;
55
+ margin: 1rem 0;
56
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
57
+ }
58
+
59
+ .metric-card {
60
+ background: #f0f2f6;
61
+ padding: 1.5rem;
62
+ border-radius: 10px;
63
+ text-align: center;
64
+ transition: transform 0.2s ease;
65
+ }
66
+
67
+ .metric-card:hover {
68
+ transform: translateY(-2px);
69
+ box-shadow: 0 4px 8px rgba(0,0,0,0.1);
70
+ }
71
  </style>
72
  """, unsafe_allow_html=True)
73