prasadnu commited on
Commit
284f5e8
·
1 Parent(s): 8827421

added print logs

Browse files
Files changed (1) hide show
  1. app.py +18 -0
app.py CHANGED
@@ -70,8 +70,26 @@ st.markdown("""
70
  flex-direction: column;
71
  justify-content: space-between;
72
  position: relative;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  }
74
 
 
 
 
75
  .card:hover {
76
  transform: scale(1.06);
77
  transition: all 0.3s ease-in-out;
 
70
  flex-direction: column;
71
  justify-content: space-between;
72
  position: relative;
73
+ z-index: 1;
74
+ overflow: hidden;
75
+ }
76
+ .card::before {
77
+ content: "";
78
+ position: absolute;
79
+ top: -4px;
80
+ left: -4px;
81
+ right: -4px;
82
+ bottom: -4px;
83
+ background: linear-gradient(45deg, #ff7eb9, #ff65a3, #7afcff, #feff9c, #fff740);
84
+ z-index: -1;
85
+ filter: blur(12px);
86
+ opacity: 0;
87
+ transition: opacity 0.3s ease-in-out;
88
  }
89
 
90
+ .card:hover::before {
91
+ opacity: 1;
92
+ }
93
  .card:hover {
94
  transform: scale(1.06);
95
  transition: all 0.3s ease-in-out;