tigorsinaga commited on
Commit
857ed72
·
verified ·
1 Parent(s): 51c17ea

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +24 -0
style.css ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: sans-serif;
3
+ }
4
+ .gradio-container {
5
+ border-radius: 10px;
6
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
7
+ padding: 20px;
8
+ }
9
+ .gr-button {
10
+ background-color: #4CAF50;
11
+ color: white;
12
+ border: none;
13
+ padding: 6px 12px;
14
+ font-size: 14px;
15
+ cursor: pointer;
16
+ border-radius: 5px;
17
+ }
18
+ .gr-button:hover {
19
+ background-color: #4a894c;
20
+ }
21
+ .description {
22
+ margin-top: 40px;
23
+ margin-bottom:-10px;
24
+ }