Spaces:
Sleeping
Sleeping
Update style.css
Browse files
style.css
CHANGED
|
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: 'Segoe UI', Arial, sans-serif;
|
| 3 |
+
background-color: #0d1117;
|
| 4 |
+
color: white;
|
| 5 |
+
padding: 20px;
|
| 6 |
+
}
|
| 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: #8892aa;
|
| 17 |
+
margin-top: -5px;
|
| 18 |
+
font-style: italic;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
.gr-box, .gr-interface {
|
| 22 |
+
background-color: #161b22 !important;
|
| 23 |
+
border-radius: 12px;
|
| 24 |
+
padding: 15px;
|
| 25 |
+
box-shadow: 0 0 10px #1db95488;
|
| 26 |
+
transition: transform 0.2s ease;
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
.gr-box:hover, .gr-interface:hover {
|
| 30 |
+
transform: scale(1.01);
|
| 31 |
+
box-shadow: 0 0 15px #1f7bbd;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
.gr-button {
|
| 35 |
+
background-color: #1f7bbd !important;
|
| 36 |
+
color: white !important;
|
| 37 |
+
border-radius: 10px;
|
| 38 |
+
padding: 10px 20px;
|
| 39 |
+
font-weight: bold;
|
| 40 |
+
box-shadow: 0 0 10px #1f7bbd88;
|
| 41 |
+
border: none;
|
| 42 |
+
font-size: 16px;
|
| 43 |
+
transition: all 0.3s ease;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
.gr-button:hover {
|
| 47 |
+
background-color: #298eff !important;
|
| 48 |
+
box-shadow: 0 0 15px #298effaa;
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
.gr-tabs button {
|
| 52 |
+
font-size: 16px;
|
| 53 |
+
padding: 10px 20px;
|
| 54 |
+
border-radius: 8px;
|
| 55 |
+
background: #1e1e1e;
|
| 56 |
+
color: white;
|
| 57 |
+
transition: all 0.3s ease;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
.gr-tabs button:hover {
|
| 61 |
+
background: #298eff;
|
| 62 |
+
color: black;
|
| 63 |
+
box-shadow: 0 0 10px #298effaa;
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
input[type="text"], input[type="number"], select, textarea {
|
| 67 |
+
background-color: #21262d !important;
|
| 68 |
+
color: white !important;
|
| 69 |
+
border: 1px solid #30363d !important;
|
| 70 |
+
border-radius: 8px;
|
| 71 |
+
width: 100%;
|
| 72 |
+
padding: 10px;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.gr-checkboxgroup label {
|
| 76 |
+
background: #21262d;
|
| 77 |
+
border: 1px solid #30363d;
|
| 78 |
+
border-radius: 8px;
|
| 79 |
+
padding: 8px;
|
| 80 |
+
transition: background 0.3s;
|
| 81 |
+
}
|
| 82 |
+
|
| 83 |
+
.gr-checkboxgroup label:hover {
|
| 84 |
+
background: #2a3036;
|
| 85 |
+
cursor: pointer;
|
| 86 |
+
}
|
| 87 |
+
|
| 88 |
+
.gr-gallery__items > div {
|
| 89 |
+
border-radius: 12px;
|
| 90 |
+
overflow: hidden;
|
| 91 |
+
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
| 92 |
+
}
|
| 93 |
+
|
| 94 |
+
.gr-gallery__items > div:hover {
|
| 95 |
+
transform: scale(1.03);
|
| 96 |
+
box-shadow: 0 0 12px #1f7bbd88;
|
| 97 |
+
}
|
| 98 |
+
|
| 99 |
+
.gr-gallery__item-label {
|
| 100 |
+
background: rgba(0, 0, 0, 0.7);
|
| 101 |
+
backdrop-filter: blur(3px);
|
| 102 |
+
color: white;
|
| 103 |
+
font-size: 14px;
|
| 104 |
+
font-weight: bold;
|
| 105 |
+
text-align: center;
|
| 106 |
+
padding: 10px;
|
| 107 |
+
border-radius: 0 0 12px 12px;
|
| 108 |
+
}
|
| 109 |
+
|
| 110 |
+
@keyframes float {
|
| 111 |
+
0%, 100% { transform: translateY(0); }
|
| 112 |
+
50% { transform: translateY(-10px); }
|
| 113 |
+
}
|