DOMMETI commited on
Commit
9211345
Β·
verified Β·
1 Parent(s): ddd67a0

Update Home.py

Browse files
Files changed (1) hide show
  1. Home.py +8 -4
Home.py CHANGED
@@ -14,11 +14,12 @@ st.markdown("""
14
  color: white;
15
  }
16
 
 
17
  h1, h2, h3 {
18
- color: #00FFFF;
19
- font-family: 'Roboto', sans-serif;
20
- font-weight: 600;
21
- margin-bottom: 15px;
22
  }
23
 
24
  .custom-subheader {
@@ -30,6 +31,7 @@ st.markdown("""
30
  text-align: center;
31
  }
32
 
 
33
  .section {
34
  background: rgba(255, 255, 255, 0.1);
35
  padding: 20px;
@@ -38,6 +40,7 @@ st.markdown("""
38
  box-shadow: 0px 4px 12px rgba(0, 255, 255, 0.2);
39
  }
40
 
 
41
  .glow-button {
42
  background: linear-gradient(90deg, #00FFFF, #00CCFF);
43
  border: none;
@@ -67,6 +70,7 @@ st.markdown("""
67
  </style>
68
  """, unsafe_allow_html=True)
69
 
 
70
  # Title
71
  st.markdown("<h1 class='custom-subheader'>🏏 Crick-o-Meter: Unleashing Data-Driven Cricket Insights! πŸ“ŠπŸ”₯</h1>", unsafe_allow_html=True)
72
 
 
14
  color: white;
15
  }
16
 
17
+ /* Header Styling */
18
  h1, h2, h3 {
19
+ text-align: center;
20
+ color: #00FFFF; /* Bright Cyan */
21
+ text-shadow: 0px 0px 12px rgba(0, 255, 255, 1),
22
+ 0px 0px 20px rgba(0, 128, 255, 0.8);
23
  }
24
 
25
  .custom-subheader {
 
31
  text-align: center;
32
  }
33
 
34
+ /* Section Background */
35
  .section {
36
  background: rgba(255, 255, 255, 0.1);
37
  padding: 20px;
 
40
  box-shadow: 0px 4px 12px rgba(0, 255, 255, 0.2);
41
  }
42
 
43
+ /* Glowing Button */
44
  .glow-button {
45
  background: linear-gradient(90deg, #00FFFF, #00CCFF);
46
  border: none;
 
70
  </style>
71
  """, unsafe_allow_html=True)
72
 
73
+
74
  # Title
75
  st.markdown("<h1 class='custom-subheader'>🏏 Crick-o-Meter: Unleashing Data-Driven Cricket Insights! πŸ“ŠπŸ”₯</h1>", unsafe_allow_html=True)
76