ashok2216 commited on
Commit
236143b
·
verified ·
1 Parent(s): e5b83cb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -15
app.py CHANGED
@@ -18,23 +18,23 @@ from data_integration import scrape_all_pages
18
 
19
  page_bg_img = """
20
  <style>
21
- .css-selector {
22
- background: linear-gradient(135deg, #00ffbd, #005fff, #9800ff);
23
- background-size: 600% 600%;
24
-
25
- -webkit-animation: AnimationName 59s ease infinite;
26
- animation: AnimationName 59s ease infinite;
27
  }
28
 
29
- @-webkit-keyframes AnimationName {
30
- 0%{background-position:0% 10%}
31
- 50%{background-position:100% 91%}
32
- 100%{background-position:0% 10%}
33
- }
34
- @keyframes AnimationName {
35
- 0%{background-position:0% 10%}
36
- 50%{background-position:100% 91%}
37
- 100%{background-position:0% 10%}
 
38
  }
39
  </style>
40
  """
 
18
 
19
  page_bg_img = """
20
  <style>
21
+ html, body, [data-testid="stAppViewContainer"], [data-testid="stHeader"], [data-testid="stToolbar"], .main {
22
+ height: 100%;
23
+ background: linear-gradient(45deg, #ff6ec4, #7873f5, #0fd850);
24
+ background-size: 400% 400%;
25
+ animation: gradientBackground 15s ease infinite;
 
26
  }
27
 
28
+ @keyframes gradientBackground {
29
+ 0% {
30
+ background-position: 0% 50%;
31
+ }
32
+ 50% {
33
+ background-position: 100% 50%;
34
+ }
35
+ 100% {
36
+ background-position: 0% 50%;
37
+ }
38
  }
39
  </style>
40
  """