Rohith1112 commited on
Commit
58ce281
·
verified ·
1 Parent(s): 00b2c87

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py CHANGED
@@ -135,6 +135,7 @@ h1 {
135
  display: flex;
136
  align-items: center;
137
  position: relative;
 
138
  }
139
 
140
  #message-input {
@@ -152,6 +153,12 @@ h1 {
152
  cursor: pointer;
153
  font-size: 24px;
154
  color: #4CAF50;
 
 
 
 
 
 
155
  }
156
 
157
  #loading-spinner {
@@ -164,6 +171,11 @@ h1 {
164
  height: 50px;
165
  }
166
 
 
 
 
 
 
167
  @keyframes fadeIn {
168
  0% { opacity: 0; }
169
  100% { opacity: 1; }
 
135
  display: flex;
136
  align-items: center;
137
  position: relative;
138
+ transition: all 0.3s ease;
139
  }
140
 
141
  #message-input {
 
153
  cursor: pointer;
154
  font-size: 24px;
155
  color: #4CAF50;
156
+ animation: bounce 0.6s infinite alternate;
157
+ }
158
+
159
+ #upload-icon:hover {
160
+ color: #45a049;
161
+ transform: scale(1.1);
162
  }
163
 
164
  #loading-spinner {
 
171
  height: 50px;
172
  }
173
 
174
+ @keyframes bounce {
175
+ 0% { transform: translateY(0); }
176
+ 100% { transform: translateY(-10px); }
177
+ }
178
+
179
  @keyframes fadeIn {
180
  0% { opacity: 0; }
181
  100% { opacity: 1; }