nock2 commited on
Commit
db7aa32
·
verified ·
1 Parent(s): fb15be9

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +23 -0
style.css ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ background: url('bg.png') no-repeat center center fixed;
3
+ background-size: cover;
4
+ font-family: monospace;
5
+ color: #00ff88 !important;
6
+ }
7
+
8
+ .gradio-container {
9
+ background-color: rgba(0, 0, 0, 0.8) !important;
10
+ border-radius: 12px;
11
+ padding: 20px;
12
+ box-shadow: 0 0 20px #00ff88;
13
+ }
14
+
15
+ h1, h2, h3, label, .gr-button {
16
+ color: #00ff88 !important;
17
+ }
18
+
19
+ .gr-button {
20
+ background-color: black !important;
21
+ border: 1px solid #00ff88 !important;
22
+ color: #00ff88 !important;
23
+ }