Update static/style.css
Browse files- static/style.css +75 -0
static/style.css
CHANGED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* General App Styling */
|
2 |
+
body {
|
3 |
+
font-family: 'Inter', sans-serif;
|
4 |
+
background-color: #f8f9fa;
|
5 |
+
color: #212529;
|
6 |
+
}
|
7 |
+
|
8 |
+
/* Main Title */
|
9 |
+
h1 {
|
10 |
+
color: #0056b3;
|
11 |
+
font-weight: 600;
|
12 |
+
letter-spacing: -1px;
|
13 |
+
}
|
14 |
+
|
15 |
+
/* Column Headers */
|
16 |
+
.gradio-container .col-header {
|
17 |
+
color: #495057;
|
18 |
+
font-weight: 500;
|
19 |
+
text-transform: uppercase;
|
20 |
+
font-size: 0.9rem;
|
21 |
+
letter-spacing: 0.5px;
|
22 |
+
border-bottom: 1px solid #e9ecef;
|
23 |
+
padding-bottom: 8px;
|
24 |
+
margin-bottom: 16px;
|
25 |
+
text-align: left;
|
26 |
+
}
|
27 |
+
|
28 |
+
/* Add spacing below controls */
|
29 |
+
.gradio-container .col-header + div {
|
30 |
+
margin-bottom: 20px;
|
31 |
+
}
|
32 |
+
|
33 |
+
/* Consistent Label Styling */
|
34 |
+
.gradio-container .label {
|
35 |
+
font-weight: 500;
|
36 |
+
color: #343a40;
|
37 |
+
}
|
38 |
+
|
39 |
+
/* Custom Button Styling */
|
40 |
+
.gradio-container .gr-button-primary {
|
41 |
+
background-color: #007bff !important;
|
42 |
+
color: white !important;
|
43 |
+
border: none !important;
|
44 |
+
transition: background-color 0.3s ease;
|
45 |
+
}
|
46 |
+
.gradio-container .gr-button {
|
47 |
+
border-radius: 8px !important;
|
48 |
+
padding: 0.75rem 1.25rem !important;
|
49 |
+
font-size: 1rem !important;
|
50 |
+
}
|
51 |
+
.gradio-container .gr-button-primary:hover {
|
52 |
+
background-color: #0056b3 !important;
|
53 |
+
}
|
54 |
+
|
55 |
+
.gradio-container .gr-button-secondary {
|
56 |
+
background-color: #6c757d !important;
|
57 |
+
color: white !important;
|
58 |
+
border: none !important;
|
59 |
+
}
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
.gradio-container .gr-button-secondary:hover {
|
64 |
+
background-color: #5a6268 !important;
|
65 |
+
}
|
66 |
+
|
67 |
+
/* Input Textbox Styling */
|
68 |
+
.gradio-container .gr-textbox {
|
69 |
+
border-radius: 8px !important;
|
70 |
+
border: 1px solid #ced4da !important;
|
71 |
+
}
|
72 |
+
.gradio-container .gr-textbox:focus {
|
73 |
+
border-color: #80bdff !important;
|
74 |
+
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
|
75 |
+
}
|