XRachel commited on
Commit
5e4a5ff
·
verified ·
1 Parent(s): a4b18cb

Upload style.css

Browse files
Files changed (1) hide show
  1. style.css +24 -0
style.css ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ html, body {
3
+ margin: 0;
4
+ padding: 0;
5
+ min-height: 100vh;
6
+ background-image: url("https://huggingface.co/spaces/XRachel/bc4/resolve/main/assets/BankChurn.png");
7
+ background-size: cover;
8
+ background-position: center;
9
+ background-repeat: no-repeat;
10
+ background-attachment: fixed;
11
+ }
12
+
13
+ .gradio-container {
14
+ max-width: 1100px !important;
15
+ margin: auto !important;
16
+ background: rgba(255,255,255,0.85) !important;
17
+ border-radius: 16px !important;
18
+ padding: 20px !important;
19
+ backdrop-filter: blur(6px);
20
+ }
21
+
22
+ button {
23
+ border-radius: 10px !important;
24
+ }