Create style.css
Browse files
style.css
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* style.css */
|
2 |
+
|
3 |
+
body {
|
4 |
+
background-color: #f8f9fa; /* Light gray background */
|
5 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
6 |
+
}
|
7 |
+
|
8 |
+
.gradio-container {
|
9 |
+
max-width: 800px;
|
10 |
+
margin: 0 auto;
|
11 |
+
padding: 20px;
|
12 |
+
background-color: #ffffff;
|
13 |
+
border: 1px solid #dee2e6;
|
14 |
+
border-radius: 8px;
|
15 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
16 |
+
}
|
17 |
+
|
18 |
+
h1, h2, h3 {
|
19 |
+
color: #343a40;
|
20 |
+
text-align: center;
|
21 |
+
}
|
22 |
+
|
23 |
+
.gr-button {
|
24 |
+
background-color: #007bff !important;
|
25 |
+
color: #ffffff !important;
|
26 |
+
border: none !important;
|
27 |
+
padding: 10px 20px !important;
|
28 |
+
border-radius: 4px !important;
|
29 |
+
font-size: 16px !important;
|
30 |
+
}
|
31 |
+
|
32 |
+
.gr-button:hover {
|
33 |
+
background-color: #0056b3 !important;
|
34 |
+
}
|
35 |
+
|
36 |
+
.gr-input, .gr-textbox {
|
37 |
+
border: 1px solid #ced4da !important;
|
38 |
+
border-radius: 4px !important;
|
39 |
+
padding: 10px !important;
|
40 |
+
}
|
41 |
+
|
42 |
+
.gr-textbox textarea {
|
43 |
+
min-height: 100px !important;
|
44 |
+
}
|