jschwab21 commited on
Commit
0a7ab98
·
verified ·
1 Parent(s): ac32734

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -4
app.py CHANGED
@@ -116,11 +116,16 @@ def display_results(video_url, video_file, description):
116
  # Custom CSS for additional styling
117
  css = """
118
  body {
119
- background-color: #ffffff;
120
- background-image: radial-gradient(#e83f07 1px, transparent 1px);
121
- background-size: 10px 10px;
122
  background-repeat: repeat;
123
- background-attachment: fixed;
 
 
 
 
 
 
124
  }
125
  #video_url {
126
  background-color: #ffffff;
 
116
  # Custom CSS for additional styling
117
  css = """
118
  body {
119
+ background-image: radial-gradient(circle, #FF4500 3px, transparent 5px, #007FFF 7px, transparent 9px, #FF4500 11px, transparent 13px, #007FFF 15px, transparent 17px, #FF4500 19px, transparent 21px, #007FFF 23px, transparent 25px, #FF4500 27px, transparent 29px, #007FFF 31px, transparent 33px);
120
+ background-size: 30px 30px;
 
121
  background-repeat: repeat;
122
+ animation: adjustHue 10s infinite linear;
123
+ }
124
+
125
+ @keyframes adjustHue {
126
+ 0% { filter: hue-rotate(0deg); }
127
+ 50% { filter: hue-rotate(360deg); }
128
+ 100% { filter: hue-rotate(0deg); }
129
  }
130
  #video_url {
131
  background-color: #ffffff;