tee342 commited on
Commit
714c955
·
verified ·
1 Parent(s): de2576e

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +39 -14
style.css CHANGED
@@ -1,5 +1,5 @@
1
  body {
2
- background: #121212;
3
  color: white;
4
  font-family: 'Segoe UI', sans-serif;
5
  padding: 20px;
@@ -7,33 +7,58 @@ body {
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) {
 
1
  body {
2
+ background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
3
  color: white;
4
  font-family: 'Segoe UI', sans-serif;
5
  padding: 20px;
 
7
 
8
  .studio-header {
9
  text-align: center;
10
+ margin-bottom: 30px;
11
+ animation: float 3s ease-in-out infinite;
12
  }
13
 
14
+ .studio-header h3 {
15
+ font-size: 18px;
16
+ color: #aaaaaa;
17
+ margin-top: -5px;
18
+ font-style: italic;
19
+ }
20
+
21
+ .gr-box, .gr-interface {
22
+ border-radius: 12px;
23
  background-color: #1e1e1e;
24
+ box-shadow: 0 0 10px #1db95488;
25
+ padding: 15px;
26
+ transition: transform 0.2s ease;
27
+ }
28
+
29
+ .gr-box:hover, .gr-interface:hover {
30
+ transform: scale(1.01);
31
  }
32
 
33
  .gr-button {
34
  background-color: #1db954 !important;
35
  color: white !important;
36
+ border-radius: 10px;
37
  font-weight: bold;
38
+ padding: 10px 20px;
39
+ box-shadow: 0 0 10px #1db954aa;
40
+ border: none;
41
+ font-size: 16px;
 
 
 
 
42
  }
43
 
44
  .gr-tabs button {
45
  font-size: 16px;
46
  padding: 10px 20px;
47
+ border-radius: 8px;
48
+ background: #1e1e1e;
49
+ color: white;
50
+ transition: all 0.3s ease;
51
+ }
52
+
53
+ .gr-tabs button:hover {
54
+ background: #2ecc71;
55
+ color: black;
56
+ box-shadow: 0 0 8px #2ecc71;
57
+ }
58
+
59
+ @keyframes float {
60
+ 0%, 100% { transform: translateY(0); }
61
+ 50% { transform: translateY(-10px); }
62
  }
63
 
64
  @media (max-width: 768px) {