ShamsKhan404 commited on
Commit
4740af8
·
verified ·
1 Parent(s): d5795c9

Update static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +27 -1
static/style.css CHANGED
@@ -147,8 +147,19 @@ nav button:hover {
147
  }
148
 
149
  .upload-form button {
150
- font-weight: bold;
 
 
 
151
  border-radius: 6px;
 
 
 
 
 
 
 
 
152
  }
153
 
154
  /* Emotion List */
@@ -193,3 +204,18 @@ nav button:hover {
193
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
194
  margin-top: 10px;
195
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  }
148
 
149
  .upload-form button {
150
+ background-color: #3B82F6;
151
+ color: white;
152
+ padding: 10px 20px;
153
+ border: none;
154
  border-radius: 6px;
155
+ font-size: 16px;
156
+ cursor: pointer;
157
+ font-weight: bold;
158
+ transition: all 0.3s ease-in-out;
159
+ }
160
+
161
+ .upload-form button:hover {
162
+ background-color: #2563EB;
163
  }
164
 
165
  /* Emotion List */
 
204
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
205
  margin-top: 10px;
206
  }
207
+
208
+ /* Default Image for Real-Time Detection */
209
+ #video-container video {
210
+ display: none;
211
+ }
212
+
213
+ #video-container::before {
214
+ content: url('/static/resources/RTED.png');
215
+ display: block;
216
+ width: 100%;
217
+ max-width: 600px;
218
+ margin-top: 10px;
219
+ border-radius: 8px;
220
+ box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
221
+ }