prasadnu commited on
Commit
747b711
·
1 Parent(s): 35d9550

added print logs

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -65,7 +65,7 @@ st.markdown("""
65
  height: 350px;
66
  color: white;
67
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
68
- transition: transform 0.2s ease, background 0.2s ease;
69
  display: flex;
70
  flex-direction: column;
71
  justify-content: space-between;
@@ -73,11 +73,12 @@ st.markdown("""
73
  }
74
 
75
  .card:hover {
76
-
77
- transform: scale(1.06); /* Optional: adds smooth grow effect */
78
  transition: all 0.3s ease-in-out;
79
- border: 2px solid rgba(255, 255, 255, 255); /* white border on hover */
80
-
 
 
81
  }
82
 
83
  .card-header {
 
65
  height: 350px;
66
  color: white;
67
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
68
+ transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
69
  display: flex;
70
  flex-direction: column;
71
  justify-content: space-between;
 
73
  }
74
 
75
  .card:hover {
76
+ transform: scale(1.06);
 
77
  transition: all 0.3s ease-in-out;
78
+ border: 2px solid rgba(255, 255, 255, 0.2);
79
+ box-shadow:
80
+
81
+ 0 0 40px rgba(0, 255, 255, 0.2); /* cyan glow */;
82
  }
83
 
84
  .card-header {