mgbam commited on
Commit
6c5e8d4
·
verified ·
1 Parent(s): ae77a8f

Upload style.css

Browse files
Files changed (1) hide show
  1. style.css +78 -0
style.css ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2px solid #e9ecef;
23
+ padding-bottom: 8px;
24
+ margin-bottom: 16px;
25
+ }
26
+
27
+ /* Custom Button Styling */
28
+ .gradio-container .gr-button-primary {
29
+ background-color: #007bff !important;
30
+ color: white !important;
31
+ border: none !important;
32
+ transition: background-color 0.3s ease;
33
+ }
34
+
35
+ .gradio-container .gr-button-primary:hover {
36
+ background-color: #0056b3 !important;
37
+ }
38
+
39
+ .gradio-container .gr-button-secondary {
40
+ background-color: #6c757d !important;
41
+ color: white !important;
42
+ border: none !important;
43
+ }
44
+ .gradio-container .gr-button-secondary:hover {
45
+ background-color: #5a6268 !important;
46
+ }
47
+
48
+ /* Input Textbox Styling */
49
+ .gradio-container .gr-textbox {
50
+ border-radius: 8px !important;
51
+ border: 1px solid #ced4da !important;
52
+ }
53
+ .gradio-container .gr-textbox:focus {
54
+ border-color: #80bdff !important;
55
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
56
+ }
57
+
58
+ /* Accordion Styling */
59
+ .gradio-container .gr-accordion {
60
+ border: 1px solid #dee2e6 !important;
61
+ border-radius: 8px !important;
62
+ box-shadow: 0 2px 4px rgba(0,0,0,0.05);
63
+ }
64
+
65
+ /* Tabs Styling */
66
+ .gradio-container .tabs > .tab-nav > button {
67
+ font-weight: 500;
68
+ color: #495057;
69
+ }
70
+ .gradio-container .tabs > .tab-nav > button.selected {
71
+ color: #007bff;
72
+ border-bottom: 2px solid #007bff;
73
+ }
74
+
75
+ /* Code Block Styling */
76
+ .gradio-container .gr-code {
77
+ border-radius: 8px !important;
78
+ }