rohan965 commited on
Commit
ea47187
·
verified ·
1 Parent(s): 7c793ec

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +67 -0
style.css ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* ===============================
2
+ Global Background
3
+ =============================== */
4
+
5
+ body {
6
+ background: linear-gradient(135deg, #0f2f5f, #1e5aa8);
7
+ }
8
+
9
+ /* Make main container slightly transparent white */
10
+ .gradio-container {
11
+ background-color: rgba(255, 255, 255, 0.95) !important;
12
+ border-radius: 20px;
13
+ padding: 20px;
14
+ box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
15
+ }
16
+
17
+ /* ===============================
18
+ Tabs Styling
19
+ =============================== */
20
+
21
+ button[role="tab"] {
22
+ font-weight: 600 !important;
23
+ border-radius: 12px !important;
24
+ }
25
+
26
+ button[role="tab"][aria-selected="true"] {
27
+ background-color: #1e5aa8 !important;
28
+ color: white !important;
29
+ }
30
+
31
+ /* ===============================
32
+ Buttons
33
+ =============================== */
34
+
35
+ button {
36
+ border-radius: 12px !important;
37
+ border: none !important;
38
+ font-weight: 600 !important;
39
+ }
40
+
41
+ button.primary {
42
+ background-color: #1e5aa8 !important;
43
+ }
44
+
45
+ button:hover {
46
+ opacity: 0.9;
47
+ }
48
+
49
+ /* ===============================
50
+ Boxes (logs, JSON, tables)
51
+ =============================== */
52
+
53
+ textarea,
54
+ .json-output,
55
+ .gr-dataframe,
56
+ .gr-box {
57
+ border-radius: 15px !important;
58
+ border: 1px solid #d0d7e2 !important;
59
+ }
60
+
61
+ /* ===============================
62
+ Headings
63
+ =============================== */
64
+
65
+ h1, h2, h3 {
66
+ color: #0f2f5f;
67
+ }