nagasurendra commited on
Commit
7b7ac91
·
verified ·
1 Parent(s): 05606dc

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +16 -13
style.css CHANGED
@@ -1,19 +1,22 @@
1
- h1 {
2
- text-align: center;
3
- font-family: 'Arial', sans-serif;
4
- color: #ff8c00;
5
  }
6
 
7
- button {
8
- background-color: #ff8c00;
9
- color: white;
10
- font-weight: bold;
11
  }
12
 
13
- button:hover {
14
- background-color: #e07c00;
 
 
15
  }
16
 
17
- textarea, input {
18
- border-radius: 10px;
19
- }
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ background-color: #f9f9f9;
4
+ color: #333;
5
  }
6
 
7
+ .gradio-container {
8
+ max-width: 800px;
9
+ margin: auto;
10
+ padding: 10px;
11
  }
12
 
13
+ .gr-button {
14
+ background-color: #4CAF50;
15
+ color: white;
16
+ border-radius: 5px;
17
  }
18
 
19
+ .gr-textbox {
20
+ border: 1px solid #ccc;
21
+ padding: 10px;
22
+ }