Pipelinen parannuksia building blockeilla

This commit is contained in:
Jaakko Vanhala
2026-04-12 18:48:14 +03:00
parent c1a5f8aff5
commit b2ee8b9031
175 changed files with 13311 additions and 237 deletions

View File

@@ -17,13 +17,24 @@ body {
font-size: 16px;
background: var(--bg);
color: var(--text);
min-height: 100vh;
height: 100vh;
overflow: hidden;
}
.container { max-width: 1600px; margin: 0 auto; padding: 20px 40px; }
.container {
max-width: 1600px;
margin: 0 auto;
padding: 20px 40px;
height: 100vh;
display: flex;
flex-direction: column;
}
#app:not(.active) { display: none; }
#landing.hidden { display: none; }
/* Tabs */
.tabs { display: flex; gap: 4px; margin-bottom: 16px; }
.tabs { display: flex; gap: 4px; margin-bottom: 16px; flex-shrink: 0; }
.tab {
padding: 10px 20px; border-radius: 6px 6px 0 0; cursor: pointer;
border: 1px solid var(--border); border-bottom: none;
@@ -33,7 +44,7 @@ body {
/* Panels */
.panel { display: none; }
.panel.active { display: block; }
.panel.active { display: flex; flex-direction: column; flex: 1; min-height: 0; }
/* Status bar */
.status-bar {
@@ -52,7 +63,7 @@ body {
.terminal {
background: #010409; border: 1px solid var(--border); border-top: none;
font-family: 'Courier New', monospace; font-size: 16px;
min-height: 400px; max-height: 70vh; overflow-y: auto;
flex: 1; min-height: 0; max-height: none; overflow-y: auto;
padding: 12px 16px;
}
.terminal-line { padding: 1px 0; white-space: pre-wrap; word-break: break-word; }
@@ -172,6 +183,13 @@ body {
.agent-avatar.active img {
border-color: var(--accent);
box-shadow: 0 0 25px rgba(88,166,255,0.8);
animation: agentBlink 1.5s infinite;
}
@keyframes agentBlink {
0% { opacity: 0.8; box-shadow: 0 0 15px rgba(88,166,255,0.5); }
50% { opacity: 1.0; box-shadow: 0 0 35px rgba(88,166,255,1.0); }
100% { opacity: 0.8; box-shadow: 0 0 15px rgba(88,166,255,0.5); }
}
/* Settings */
@@ -265,6 +283,16 @@ body {
border-color: #ff6b00; box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
}
.hero-input::placeholder { color: #484f58; }
.hero-input.shake {
animation: shake 0.4s ease;
border-color: #f85149;
box-shadow: 0 0 0 3px rgba(248,81,73,0.2);
}
@keyframes shake {
0%, 100% { transform: translateX(0); }
20%, 60% { transform: translateX(-6px); }
40%, 80% { transform: translateX(6px); }
}
.hero-btn {
padding: 14px 28px; font-size: 16px; font-weight: 600;
font-family: 'Inter', sans-serif;