Spaces:
Sleeping
Sleeping
Create style.css
Browse files
style.css
CHANGED
@@ -1,28 +1,47 @@
|
|
1 |
-
/* style.css */
|
2 |
body {
|
3 |
-
background
|
4 |
color: white;
|
5 |
-
font-family: 'Segoe UI',
|
|
|
6 |
}
|
7 |
|
8 |
-
.
|
9 |
-
|
10 |
-
margin:
|
11 |
-
background-color: #1a1a1a;
|
12 |
-
border-radius: 10px;
|
13 |
-
padding: 20px;
|
14 |
}
|
15 |
|
16 |
-
.
|
17 |
-
|
|
|
|
|
18 |
}
|
19 |
|
20 |
-
button {
|
21 |
-
background-color: #
|
22 |
-
border: none !important;
|
23 |
color: white !important;
|
|
|
|
|
|
|
24 |
}
|
25 |
|
26 |
-
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
}
|