Spaces:
Paused
Paused
Update app.css
Browse files
app.css
CHANGED
@@ -153,7 +153,7 @@ footer, .footer, div[class*="footer"], #footer {
|
|
153 |
display: flex;
|
154 |
gap: 8px;
|
155 |
padding: 8px 0;
|
156 |
-
justify-content:
|
157 |
border-bottom: 2px dashed var(--neutral-300);
|
158 |
padding-bottom: 12px;
|
159 |
margin-bottom: 12px;
|
@@ -220,35 +220,45 @@ footer, .footer, div[class*="footer"], #footer {
|
|
220 |
box-shadow: var(--shadow-md);
|
221 |
}
|
222 |
|
223 |
-
/* 각 버튼 스타일 커스텀 */
|
224 |
-
.
|
225 |
-
background: linear-gradient(to right, var(--primary), var(--secondary));
|
226 |
-
border: none;
|
227 |
-
color: white;
|
228 |
}
|
229 |
|
230 |
-
.
|
231 |
-
background: linear-gradient(to right, var(--tertiary), #9966cc);
|
232 |
-
border: none;
|
233 |
-
color: white;
|
234 |
}
|
235 |
|
236 |
-
.
|
237 |
-
background: linear-gradient(to right, var(--success), #66d9a8);
|
238 |
-
border: none;
|
239 |
-
color: white;
|
240 |
}
|
241 |
|
242 |
-
.
|
243 |
-
background: linear-gradient(to right, var(--warning), #ffcc66);
|
244 |
-
border: none;
|
245 |
-
color: white;
|
246 |
}
|
247 |
|
248 |
-
.
|
249 |
-
background: linear-gradient(to right, #f44336, #ff7961);
|
250 |
-
border: none;
|
251 |
-
color: white;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
252 |
}
|
253 |
|
254 |
#component-0 textarea,
|
|
|
153 |
display: flex;
|
154 |
gap: 8px;
|
155 |
padding: 8px 0;
|
156 |
+
justify-content: space-between;
|
157 |
border-bottom: 2px dashed var(--neutral-300);
|
158 |
padding-bottom: 12px;
|
159 |
margin-bottom: 12px;
|
|
|
220 |
box-shadow: var(--shadow-md);
|
221 |
}
|
222 |
|
223 |
+
/* 각 버튼 스타일 커스텀 - 클래스 기반 */
|
224 |
+
.send-btn {
|
225 |
+
background: linear-gradient(to right, var(--primary), var(--secondary)) !important;
|
226 |
+
border: none !important;
|
227 |
+
color: white !important;
|
228 |
}
|
229 |
|
230 |
+
.boost-btn {
|
231 |
+
background: linear-gradient(to right, var(--tertiary), #9966cc) !important;
|
232 |
+
border: none !important;
|
233 |
+
color: white !important;
|
234 |
}
|
235 |
|
236 |
+
.execute-btn {
|
237 |
+
background: linear-gradient(to right, var(--success), #66d9a8) !important;
|
238 |
+
border: none !important;
|
239 |
+
color: white !important;
|
240 |
}
|
241 |
|
242 |
+
.deploy-btn {
|
243 |
+
background: linear-gradient(to right, var(--warning), #ffcc66) !important;
|
244 |
+
border: none !important;
|
245 |
+
color: white !important;
|
246 |
}
|
247 |
|
248 |
+
.clear-btn {
|
249 |
+
background: linear-gradient(to right, #f44336, #ff7961) !important;
|
250 |
+
border: none !important;
|
251 |
+
color: white !important;
|
252 |
+
}
|
253 |
+
|
254 |
+
/* 메뉴 버튼 추가 스타일 */
|
255 |
+
.code-btn, .history-btn, .template-btn {
|
256 |
+
transition: all 0.3s ease;
|
257 |
+
}
|
258 |
+
|
259 |
+
.code-btn:hover, .history-btn:hover, .template-btn:hover {
|
260 |
+
transform: translateY(-2px);
|
261 |
+
box-shadow: var(--shadow-md);
|
262 |
}
|
263 |
|
264 |
#component-0 textarea,
|