tee342 commited on
Commit
2731f65
·
verified ·
1 Parent(s): 8a18fa3

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +35 -16
style.css CHANGED
@@ -1,28 +1,47 @@
1
- /* style.css */
2
  body {
3
- background-color: #0f0f0f;
4
  color: white;
5
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 
6
  }
7
 
8
- .gradio-container {
9
- max-width: 1000px;
10
- margin: auto;
11
- background-color: #1a1a1a;
12
- border-radius: 10px;
13
- padding: 20px;
14
  }
15
 
16
- .tab-wrap {
17
- background-color: #222;
 
 
18
  }
19
 
20
- button {
21
- background-color: #8e44ad !important;
22
- border: none !important;
23
  color: white !important;
 
 
 
24
  }
25
 
26
- button:hover {
27
- background-color: #9b59b6 !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  }
 
 
1
  body {
2
+ background: #121212;
3
  color: white;
4
+ font-family: 'Segoe UI', sans-serif;
5
+ padding: 20px;
6
  }
7
 
8
+ .studio-header {
9
+ text-align: center;
10
+ margin-bottom: 20px;
 
 
 
11
  }
12
 
13
+ .gr-box {
14
+ border-radius: 10px;
15
+ background-color: #1e1e1e;
16
+ padding: 10px;
17
  }
18
 
19
+ .gr-button {
20
+ background-color: #1db954 !important;
 
21
  color: white !important;
22
+ border-radius: 8px;
23
+ font-weight: bold;
24
+ padding: 10px;
25
  }
26
 
27
+ .gr-interface {
28
+ border: 1px solid #333;
29
+ border-radius: 12px;
30
+ padding: 10px;
31
+ box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
32
+ }
33
+
34
+ .gr-tabs button {
35
+ font-size: 16px;
36
+ padding: 10px 20px;
37
+ }
38
+
39
+ @media (max-width: 768px) {
40
+ .gr-column {
41
+ min-width: 100%;
42
+ }
43
+
44
+ .gr-row {
45
+ flex-direction: column;
46
+ }
47
  }