martianband1t commited on
Commit
07ece47
1 Parent(s): 14aef94

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -1
app.py CHANGED
@@ -11,8 +11,22 @@ body, html {
11
  height: 100%;
12
  margin: 0;
13
  font-family: Arial, Helvetica, sans-serif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  }
15
-
16
  h1 {
17
  background: radial-gradient(circle, red, black);
18
  -webkit-background-clip: text;
 
11
  height: 100%;
12
  margin: 0;
13
  font-family: Arial, Helvetica, sans-serif;
14
+ position: relative;
15
+ }
16
+ body::before {
17
+ content: "";
18
+ background-image: url('favicon.jpg');
19
+ background-size: cover;
20
+ background-repeat: no-repeat;
21
+ background-attachment: fixed;
22
+ opacity: 0.5; /* Ajustez l'opacité ici pour la transparence */
23
+ top: 0;
24
+ left: 0;
25
+ bottom: 0;
26
+ right: 0;
27
+ position: absolute;
28
+ z-index: -1; /* Placez l'image derrière le contenu */
29
  }
 
30
  h1 {
31
  background: radial-gradient(circle, red, black);
32
  -webkit-background-clip: text;