prasadnu commited on
Commit
4e5f163
·
1 Parent(s): cd34493

rerank model

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -79,16 +79,22 @@ st.markdown("""
79
 
80
  }
81
 
82
- /* Header strip with icon */
83
  .card-header {
84
  font-size: 50px;
85
  margin: 0 auto 12px auto;
86
  display: flex;
87
  justify-content: center;
88
  align-items: center;
 
 
89
  transition: all 0.3s ease-in-out;
90
  }
91
 
 
 
 
 
 
92
  /* Hover glow only – no background, no border, just glow */
93
  .card:hover .card-header {
94
  box-shadow: 0 0 20px 8px rgba(228, 110, 8, 0.4); /* soft orange glow */
 
79
 
80
  }
81
 
 
82
  .card-header {
83
  font-size: 50px;
84
  margin: 0 auto 12px auto;
85
  display: flex;
86
  justify-content: center;
87
  align-items: center;
88
+ height: 60px;
89
+ width: 60px; /* make it a square box */
90
  transition: all 0.3s ease-in-out;
91
  }
92
 
93
+ .card:hover .card-header {
94
+ box-shadow: 0 0 16px 6px rgba(228, 110, 8, 0.45);
95
+ border-radius: 50%;
96
+ }
97
+
98
  /* Hover glow only – no background, no border, just glow */
99
  .card:hover .card-header {
100
  box-shadow: 0 0 20px 8px rgba(228, 110, 8, 0.4); /* soft orange glow */