Frontend uudelleenrakennettu: Astro-komponentit, Wasm pääsäikeessä, ei Workeria
Vanha frontend siirretty temp/. Uusi rakenne: - StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro - global.css erillinen - Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava) - Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md - Ei tokenisointia eikä koodilaboratoriota Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +0,0 @@
|
||||
---
|
||||
// AgentChat Placeholder
|
||||
---
|
||||
<div id="astro-agent-chat">
|
||||
<!-- Chat component will go here -->
|
||||
</div>
|
||||
15
network-poc/frontend/src/components/Editor.astro
Normal file
15
network-poc/frontend/src/components/Editor.astro
Normal file
@@ -0,0 +1,15 @@
|
||||
<!-- Monaco Editor paneeli -->
|
||||
<div id="panel-editor" class="panel">
|
||||
<div style="display:flex;height:calc(100vh - 200px);gap:0;border:1px solid var(--border);border-radius:6px;overflow:hidden">
|
||||
<div id="editor-filetree" style="width:200px;min-width:150px;background:var(--bg);border-right:1px solid var(--border);overflow-y:auto;font-family:'Courier New',monospace;font-size:13px">
|
||||
<div style="padding:10px 12px;color:#8b949e;font-size:11px;text-transform:uppercase;letter-spacing:0.5px;border-bottom:1px solid var(--border)">Tiedostot</div>
|
||||
<div id="editor-file-list" style="padding:4px 0">
|
||||
<div style="padding:8px 16px;color:#8b949e;font-size:12px">Generoi projekti:<br><code style="color:var(--accent)">kpn project "..."</code></div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="flex:1;display:flex;flex-direction:column">
|
||||
<div id="editor-tabs" style="display:flex;background:var(--bg);border-bottom:1px solid var(--border);min-height:35px;align-items:flex-end;padding:0 8px;gap:2px;overflow-x:auto"></div>
|
||||
<div id="monaco-container" style="flex:1"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
6
network-poc/frontend/src/components/Guide.astro
Normal file
6
network-poc/frontend/src/components/Guide.astro
Normal file
@@ -0,0 +1,6 @@
|
||||
<!-- Opas-paneeli: ladataan GUIDE.md fetchillä -->
|
||||
<div id="panel-guide" class="panel">
|
||||
<div id="guide-content" style="max-width:800px;margin:0 auto;padding:20px;line-height:1.7;font-size:15px">
|
||||
<p style="color:#8b949e">Ladataan opasta...</p>
|
||||
</div>
|
||||
</div>
|
||||
@@ -1,215 +0,0 @@
|
||||
---
|
||||
// Network3D.astro - Visualizes the Agentic Network connections
|
||||
---
|
||||
<div id="network-canvas-container"></div>
|
||||
|
||||
<style>
|
||||
#network-canvas-container {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
z-index: -1;
|
||||
pointer-events: none;
|
||||
opacity: 0.6;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
import * as THREE from 'three';
|
||||
|
||||
const container = document.getElementById('network-canvas-container');
|
||||
if (container) {
|
||||
const scene = new THREE.Scene();
|
||||
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
|
||||
const renderer = new THREE.WebGLRenderer({ alpha: true, antialias: true });
|
||||
|
||||
renderer.setSize(window.innerWidth, window.innerHeight);
|
||||
renderer.setPixelRatio(window.devicePixelRatio);
|
||||
container.appendChild(renderer.domElement);
|
||||
|
||||
// Kipinän brändivärit
|
||||
const palette = [
|
||||
new THREE.Color(0x58a6ff), // Sininen
|
||||
new THREE.Color(0xff6b00), // Oranssi
|
||||
new THREE.Color(0x2ea043), // Vihreä
|
||||
new THREE.Color(0xd29922), // Keltainen
|
||||
new THREE.Color(0x8b949e) // Harmaa
|
||||
];
|
||||
|
||||
// 1. Luodaan perusnoodit (partikkelit)
|
||||
const geometry = new THREE.BufferGeometry();
|
||||
const particlesCount = 120;
|
||||
const posArray = new Float32Array(particlesCount * 3);
|
||||
const colorArray = new Float32Array(particlesCount * 3);
|
||||
|
||||
for (let i = 0; i < particlesCount; i++) {
|
||||
// Levitä pallomaisesti
|
||||
posArray[i*3] = (Math.random() - 0.5) * 12;
|
||||
posArray[i*3+1] = (Math.random() - 0.5) * 12;
|
||||
posArray[i*3+2] = (Math.random() - 0.5) * 12;
|
||||
|
||||
// Valitse satunnainen väri paletista
|
||||
const color = palette[Math.floor(Math.random() * palette.length)];
|
||||
colorArray[i*3] = color.r;
|
||||
colorArray[i*3+1] = color.g;
|
||||
colorArray[i*3+2] = color.b;
|
||||
}
|
||||
|
||||
geometry.setAttribute('position', new THREE.BufferAttribute(posArray, 3));
|
||||
geometry.setAttribute('color', new THREE.BufferAttribute(colorArray, 3));
|
||||
|
||||
const material = new THREE.PointsMaterial({
|
||||
size: 0.08,
|
||||
vertexColors: true,
|
||||
transparent: true,
|
||||
opacity: 0.8
|
||||
});
|
||||
|
||||
const particlesMesh = new THREE.Points(geometry, material);
|
||||
scene.add(particlesMesh);
|
||||
|
||||
// 2. Yhdistävät viivat (vain visualisointiin, himmeät)
|
||||
const lineMaterial = new THREE.LineBasicMaterial({
|
||||
vertexColors: true,
|
||||
transparent: true,
|
||||
opacity: 0.15,
|
||||
blending: THREE.AdditiveBlending
|
||||
});
|
||||
const lineGeometry = new THREE.BufferGeometry();
|
||||
lineGeometry.setAttribute('position', new THREE.BufferAttribute(posArray, 3));
|
||||
lineGeometry.setAttribute('color', new THREE.BufferAttribute(colorArray, 3));
|
||||
const linesMesh = new THREE.LineSegments(lineGeometry, lineMaterial);
|
||||
particlesMesh.add(linesMesh);
|
||||
|
||||
// 3. Räjähdykset ja kipinät (Sparks)
|
||||
const maxSparks = 1000;
|
||||
const sparkGeometry = new THREE.BufferGeometry();
|
||||
const sparkPositions = new Float32Array(maxSparks * 3);
|
||||
const sparkColors = new Float32Array(maxSparks * 3);
|
||||
const sparkVelocities = new Float32Array(maxSparks * 3);
|
||||
const sparkLifetimes = new Float32Array(maxSparks);
|
||||
|
||||
// Piilota aluksi kaikki kipinät kauas
|
||||
for(let i=0; i<maxSparks*3; i++) sparkPositions[i] = 1000;
|
||||
|
||||
sparkGeometry.setAttribute('position', new THREE.BufferAttribute(sparkPositions, 3));
|
||||
sparkGeometry.setAttribute('color', new THREE.BufferAttribute(sparkColors, 3));
|
||||
|
||||
const sparkMaterial = new THREE.PointsMaterial({
|
||||
size: 0.04,
|
||||
vertexColors: true,
|
||||
transparent: true,
|
||||
opacity: 1.0,
|
||||
blending: THREE.AdditiveBlending
|
||||
});
|
||||
const sparksMesh = new THREE.Points(sparkGeometry, sparkMaterial);
|
||||
particlesMesh.add(sparksMesh); // Lisätään pääverkon sisään jotta pyörii sen mukana
|
||||
|
||||
camera.position.z = 6;
|
||||
|
||||
function triggerExplosion() {
|
||||
// Valitse satunnainen noodisolmu lähtöpisteeksi
|
||||
const nodeIdx = Math.floor(Math.random() * particlesCount);
|
||||
const nx = posArray[nodeIdx * 3];
|
||||
const ny = posArray[nodeIdx * 3 + 1];
|
||||
const nz = posArray[nodeIdx * 3 + 2];
|
||||
|
||||
const nr = colorArray[nodeIdx * 3];
|
||||
const ng = colorArray[nodeIdx * 3 + 1];
|
||||
const nb = colorArray[nodeIdx * 3 + 2];
|
||||
|
||||
const sparkCount = 15 + Math.random() * 25; // 15-40 kipinää
|
||||
let spawned = 0;
|
||||
|
||||
for(let i=0; i<maxSparks; i++) {
|
||||
if(sparkLifetimes[i] <= 0) {
|
||||
sparkLifetimes[i] = 0.5 + Math.random() * 1.5; // Elinikä 0.5-2sek
|
||||
|
||||
// Alkusijainti on noodi itse
|
||||
sparkPositions[i*3] = nx;
|
||||
sparkPositions[i*3+1] = ny;
|
||||
sparkPositions[i*3+2] = nz;
|
||||
|
||||
// Satunnainen lentosuunta ja voima (pallomaisesti)
|
||||
const u = Math.random();
|
||||
const v = Math.random();
|
||||
const theta = u * 2.0 * Math.PI;
|
||||
const phi = Math.acos(2.0 * v - 1.0);
|
||||
const speed = 2.0 + Math.random() * 3.0; // Nopeus
|
||||
|
||||
sparkVelocities[i*3] = Math.sin(phi) * Math.cos(theta) * speed;
|
||||
sparkVelocities[i*3+1] = Math.sin(phi) * Math.sin(theta) * speed;
|
||||
sparkVelocities[i*3+2] = Math.cos(phi) * speed;
|
||||
|
||||
// Kipinän väri (noodin väri + satunnaista vaaleutta)
|
||||
sparkColors[i*3] = Math.min(1.0, nr + Math.random() * 0.5);
|
||||
sparkColors[i*3+1] = Math.min(1.0, ng + Math.random() * 0.5);
|
||||
sparkColors[i*3+2] = Math.min(1.0, nb + Math.random() * 0.5);
|
||||
|
||||
spawned++;
|
||||
if(spawned >= sparkCount) break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 4. Animaatiolooppi
|
||||
let lastTime = performance.now();
|
||||
|
||||
function animate(time: number) {
|
||||
requestAnimationFrame(animate);
|
||||
const dt = (time - lastTime) / 1000; // sekunteja
|
||||
lastTime = time;
|
||||
if (dt > 0.1) return; // vältä lagipiikkien aiheuttamat hyperhypyt
|
||||
|
||||
const elapsedTime = time / 1000;
|
||||
particlesMesh.rotation.y = elapsedTime * 0.05;
|
||||
particlesMesh.rotation.x = elapsedTime * 0.02;
|
||||
|
||||
// Arvo satunnaisia räjähdyksiä (n. 1 per sekunti)
|
||||
if (Math.random() < 1.0 * dt) {
|
||||
triggerExplosion();
|
||||
}
|
||||
|
||||
// Päivitä kipinät
|
||||
let sparksUpdated = false;
|
||||
for(let i=0; i<maxSparks; i++) {
|
||||
if(sparkLifetimes[i] > 0) {
|
||||
sparkLifetimes[i] -= dt;
|
||||
if(sparkLifetimes[i] <= 0) {
|
||||
sparkPositions[i*3] = 1000; // Piilota kuollessaan
|
||||
} else {
|
||||
// Liikuta nopeuden mukaan
|
||||
sparkPositions[i*3] += sparkVelocities[i*3] * dt;
|
||||
sparkPositions[i*3+1] += sparkVelocities[i*3+1] * dt;
|
||||
sparkPositions[i*3+2] += sparkVelocities[i*3+2] * dt;
|
||||
|
||||
// Painovoimaefekti / ilmanvastus
|
||||
sparkVelocities[i*3+1] -= 2.0 * dt; // Painovoima
|
||||
sparkVelocities[i*3] *= 0.98; // Ilmanvastus
|
||||
sparkVelocities[i*3+1] *= 0.98;
|
||||
sparkVelocities[i*3+2] *= 0.98;
|
||||
}
|
||||
sparksUpdated = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (sparksUpdated) {
|
||||
sparkGeometry.attributes.position.needsUpdate = true;
|
||||
sparkGeometry.attributes.color.needsUpdate = true;
|
||||
}
|
||||
|
||||
renderer.render(scene, camera);
|
||||
}
|
||||
|
||||
requestAnimationFrame((time) => { lastTime = time; requestAnimationFrame(animate); });
|
||||
|
||||
// Pakotettu uudelleenkokoyritys
|
||||
window.addEventListener('resize', () => {
|
||||
camera.aspect = window.innerWidth / window.innerHeight;
|
||||
camera.updateProjectionMatrix();
|
||||
renderer.setSize(window.innerWidth, window.innerHeight);
|
||||
});
|
||||
}
|
||||
</script>
|
||||
15
network-poc/frontend/src/components/StatusBar.astro
Normal file
15
network-poc/frontend/src/components/StatusBar.astro
Normal file
@@ -0,0 +1,15 @@
|
||||
<!-- Hub-yhteys + laskentasolmun tila -->
|
||||
<div class="status-bar">
|
||||
<span class="status-group" title="Hub-yhteyden tila">
|
||||
<span id="hub-dot" class="status-dot" style="background:#d29922"></span>
|
||||
<span style="color:#8b949e">Hub:</span>
|
||||
<span id="hub-label" style="color:#d29922">Yhdistetään...</span>
|
||||
</span>
|
||||
<span class="status-separator">│</span>
|
||||
<span class="status-group">
|
||||
<span id="compute-dot" class="status-dot" style="background:#30363d"></span>
|
||||
<span style="color:#8b949e">Laskenta:</span>
|
||||
<span id="compute-label" style="color:#8b949e">—</span>
|
||||
<button id="compute-btn" class="btn btn-accent" title="Käynnistä kielimalli">Alusta</button>
|
||||
</span>
|
||||
</div>
|
||||
10
network-poc/frontend/src/components/Terminal.astro
Normal file
10
network-poc/frontend/src/components/Terminal.astro
Normal file
@@ -0,0 +1,10 @@
|
||||
<!-- Pipeline-palkki + Terminaali + Input -->
|
||||
<div id="pipeline-bar" class="pipeline-bar"></div>
|
||||
<div id="terminal" class="terminal"></div>
|
||||
<div class="terminal-input-row">
|
||||
<span class="terminal-prompt">$</span>
|
||||
<input id="term-input" class="terminal-input" type="text"
|
||||
placeholder='kpn run coder "hello world in python"'
|
||||
spellcheck="false" autocomplete="off">
|
||||
<div id="term-dropdown" class="terminal-dropdown"></div>
|
||||
</div>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,720 +1,128 @@
|
||||
:root {
|
||||
--bg: #0d1117;
|
||||
--panel: #161b22;
|
||||
--text: #c9d1d9;
|
||||
--accent: #58a6ff;
|
||||
--green: #3fb950;
|
||||
--yellow: #d29922;
|
||||
--red: #f85149;
|
||||
--purple: #a371f7;
|
||||
--border: #30363d;
|
||||
}
|
||||
|
||||
:root {
|
||||
--bg-color: #0d1117;
|
||||
--panel-bg: #161b22;
|
||||
--text-color: #c9d1d9;
|
||||
--accent-color: #58a6ff;
|
||||
--success-color: #3fb950;
|
||||
--border-color: #30363d;
|
||||
}
|
||||
|
||||
*, *::before, *::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
||||
background-color: var(--bg-color);
|
||||
color: var(--text-color);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.container {
|
||||
background-color: var(--panel-bg);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
padding: 30px;
|
||||
width: 100%;
|
||||
max-width: 1400px;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
|
||||
|
||||
.device-info {
|
||||
background-color: #0d1117;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 6px;
|
||||
padding: 12px 16px;
|
||||
margin-bottom: 20px;
|
||||
font-family: 'Courier New', Courier, monospace;
|
||||
font-size: 14px;
|
||||
color: #8b949e;
|
||||
text-align: left;
|
||||
display: none;
|
||||
}
|
||||
/* Tabs */
|
||||
.tabs { display: flex; gap: 4px; margin-bottom: 16px; }
|
||||
.tab {
|
||||
padding: 8px 16px; border-radius: 6px 6px 0 0; cursor: pointer;
|
||||
border: 1px solid var(--border); border-bottom: none;
|
||||
background: var(--bg); color: #8b949e; font-size: 14px;
|
||||
}
|
||||
.tab.active { background: var(--panel); color: var(--accent); border-color: var(--border); }
|
||||
|
||||
.device-info span { color: var(--text-color); }
|
||||
/* Panels */
|
||||
.panel { display: none; }
|
||||
.panel.active { display: block; }
|
||||
|
||||
.dashboard-panel {
|
||||
background-color: #0d1117;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 6px;
|
||||
padding: 15px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
/* Status bar */
|
||||
.status-bar {
|
||||
display: flex; align-items: center; gap: 12px;
|
||||
padding: 8px 14px; background: var(--bg);
|
||||
border: 1px solid var(--border); border-radius: 6px 6px 0 0;
|
||||
font-family: 'Courier New', monospace; font-size: 13px;
|
||||
}
|
||||
.status-dot {
|
||||
width: 8px; height: 8px; border-radius: 50%; display: inline-block;
|
||||
}
|
||||
.status-group { display: flex; align-items: center; gap: 6px; }
|
||||
.status-separator { color: var(--border); }
|
||||
|
||||
.stat-box {
|
||||
text-align: center;
|
||||
flex-grow: 1;
|
||||
}
|
||||
/* Terminal */
|
||||
.terminal {
|
||||
background: #010409; border: 1px solid var(--border); border-top: none;
|
||||
font-family: 'Courier New', monospace; font-size: 14px;
|
||||
min-height: 300px; max-height: 60vh; overflow-y: auto;
|
||||
padding: 8px 12px;
|
||||
}
|
||||
.terminal-line { padding: 1px 0; white-space: pre-wrap; word-break: break-word; }
|
||||
.terminal-prompt { color: var(--yellow); margin-right: 8px; }
|
||||
.terminal-input-row {
|
||||
display: flex; align-items: center; position: relative;
|
||||
background: #010409; border: 1px solid var(--border); border-top: none;
|
||||
border-radius: 0 0 6px 6px; padding: 8px 12px;
|
||||
font-family: 'Courier New', monospace; font-size: 14px;
|
||||
}
|
||||
.terminal-input {
|
||||
flex: 1; background: transparent; border: none; outline: none;
|
||||
color: var(--green); font-family: inherit; font-size: inherit;
|
||||
}
|
||||
.terminal-dropdown {
|
||||
display: none; position: absolute; bottom: 100%; left: 30px;
|
||||
background: var(--panel); border: 1px solid var(--border);
|
||||
border-radius: 6px; max-height: 200px; overflow-y: auto;
|
||||
font-size: 13px; min-width: 200px; z-index: 100;
|
||||
box-shadow: 0 4px 12px rgba(0,0,0,0.4);
|
||||
}
|
||||
.dd-item {
|
||||
padding: 6px 12px; cursor: pointer; color: var(--text);
|
||||
white-space: nowrap; border-bottom: 1px solid #21262d;
|
||||
}
|
||||
.dd-item:hover, .dd-item.active { background: var(--border); color: var(--accent); }
|
||||
|
||||
.stat-box h3 {
|
||||
margin: 0;
|
||||
color: var(--accent-color);
|
||||
font-size: 28px;
|
||||
}
|
||||
/* Pipeline progress */
|
||||
.pipeline-bar {
|
||||
display: none; padding: 8px 14px; background: var(--bg);
|
||||
border: 1px solid var(--border); border-top: none;
|
||||
font-family: 'Courier New', monospace; font-size: 12px;
|
||||
overflow-x: auto; white-space: nowrap;
|
||||
}
|
||||
|
||||
.stat-box p {
|
||||
margin: 5px 0 0 0;
|
||||
font-size: 14px;
|
||||
color: #8b949e;
|
||||
}
|
||||
/* Project card */
|
||||
.project-card {
|
||||
margin: 8px 0; border: 1px solid var(--border);
|
||||
border-radius: 6px; background: var(--panel); overflow: hidden;
|
||||
}
|
||||
.project-header {
|
||||
display: flex; align-items: center; justify-content: space-between;
|
||||
padding: 8px 12px; background: var(--bg); border-bottom: 1px solid var(--border);
|
||||
}
|
||||
.project-tabs { display: flex; gap: 2px; padding: 6px 8px 0; background: var(--bg); }
|
||||
.project-tab {
|
||||
padding: 4px 10px; cursor: pointer; border-radius: 4px 4px 0 0;
|
||||
font-size: 12px; color: #8b949e;
|
||||
}
|
||||
.project-tab.active { background: var(--panel); color: var(--accent); border: 1px solid var(--border); border-bottom: none; }
|
||||
|
||||
.slider-container {
|
||||
margin: 20px 0;
|
||||
text-align: left;
|
||||
}
|
||||
/* Buttons */
|
||||
.btn {
|
||||
padding: 2px 10px; border-radius: 4px;
|
||||
border: 1px solid var(--border); background: var(--panel);
|
||||
font-size: 12px; font-family: inherit; cursor: pointer;
|
||||
}
|
||||
.btn-accent { color: var(--accent); }
|
||||
.btn-green { color: var(--green); border-color: var(--green); }
|
||||
.btn-red { color: var(--red); border-color: var(--red); }
|
||||
.btn-muted { color: #8b949e; background: none; }
|
||||
|
||||
input[type=range] {
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
accent-color: var(--accent-color);
|
||||
}
|
||||
/* Code display */
|
||||
.code-block {
|
||||
font-family: 'Courier New', monospace; background: #010409;
|
||||
border: 1px solid var(--border); border-radius: 6px;
|
||||
padding: 14px; font-size: 13px; line-height: 1.6;
|
||||
white-space: pre-wrap; overflow-x: auto; max-height: 400px; overflow-y: auto;
|
||||
}
|
||||
.code-block .hljs { background: transparent; padding: 0; }
|
||||
|
||||
h1 { margin-bottom: 5px; }
|
||||
h1 span { color: var(--accent-color); }
|
||||
.sub { color: #8b949e; margin-bottom: 25px; }
|
||||
|
||||
.main-tabs {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
margin-bottom: 20px;
|
||||
border-bottom: 2px solid var(--border-color);
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.main-tab {
|
||||
padding: 10px 20px;
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: #8b949e;
|
||||
cursor: pointer;
|
||||
border-bottom: 2px solid transparent;
|
||||
margin-bottom: -2px;
|
||||
transition: color 0.2s, border-color 0.2s;
|
||||
}
|
||||
.main-tab:hover { color: var(--text-color); }
|
||||
.main-tab.active { color: var(--accent-color); border-bottom-color: var(--accent-color); }
|
||||
.main-panel { display: none; }
|
||||
.main-panel.active { display: block; }
|
||||
|
||||
@keyframes spin { to { transform: rotate(360deg); } }
|
||||
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }
|
||||
|
||||
.code-output {
|
||||
font-family: 'Courier New', Courier, monospace;
|
||||
background: #010409;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 6px;
|
||||
padding: 14px;
|
||||
font-size: 13px;
|
||||
line-height: 1.6;
|
||||
white-space: pre-wrap;
|
||||
overflow-x: auto;
|
||||
max-height: 400px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.code-output .hljs { background: transparent; padding: 0; }
|
||||
|
||||
#guide-content { scrollbar-color: #30363d transparent; }
|
||||
#guide-content h1 { color: #e6edf3; }
|
||||
#guide-content h2 { color: #e6edf3; }
|
||||
#guide-content a { color: #58a6ff; }
|
||||
#guide-content table { border: 1px solid #30363d; border-radius: 6px; overflow: hidden; }
|
||||
#guide-content pre { scrollbar-color: #30363d transparent; }
|
||||
.builder-tip { position: relative; }
|
||||
.builder-tip[data-tip]:hover::after {
|
||||
content: attr(data-tip);
|
||||
position: absolute; bottom: calc(100% + 8px); left: 0;
|
||||
background: #1c2028; border: 1px solid #30363d; border-radius: 8px;
|
||||
padding: 10px 14px; font-size: 12px; color: #c9d1d9;
|
||||
white-space: pre-wrap; max-width: 340px; min-width: 220px;
|
||||
z-index: 100; box-shadow: 0 6px 16px rgba(0,0,0,0.5);
|
||||
pointer-events: none; line-height: 1.6; font-weight: 400;
|
||||
}
|
||||
|
||||
.code-task-card {
|
||||
background: #0d1117;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 6px;
|
||||
padding: 14px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.code-task-card .prompt { color: #d29922; font-size: 14px; margin-bottom: 10px; }
|
||||
.code-task-card .meta { color: #8b949e; font-size: 12px; margin-top: 10px; }
|
||||
|
||||
.code-step {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
font-size: 13px;
|
||||
color: #8b949e;
|
||||
padding: 6px 0;
|
||||
}
|
||||
.code-step.active { color: var(--accent-color); }
|
||||
.code-step.done { color: var(--success-color); }
|
||||
.code-step.error { color: #f85149; }
|
||||
.step-icon { font-size: 16px; width: 20px; text-align: center; }
|
||||
|
||||
.status-box {
|
||||
font-family: 'Courier New', Courier, monospace;
|
||||
background-color: #010409;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 6px;
|
||||
padding: 15px;
|
||||
height: 120px;
|
||||
overflow-y: auto;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.status-box p {
|
||||
margin: 0 0 5px 0;
|
||||
color: var(--success-color);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
background-color: #238636;
|
||||
color: #ffffff;
|
||||
border: 1px solid rgba(240, 246, 252, 0.1);
|
||||
border-radius: 6px;
|
||||
padding: 10px 20px;
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
|
||||
.btn:hover { background-color: #2ea043; }
|
||||
.hidden { display: none; }
|
||||
|
||||
.compat-banner {
|
||||
border-radius: 6px;
|
||||
padding: 14px 18px;
|
||||
margin-bottom: 20px;
|
||||
font-size: 14px;
|
||||
line-height: 1.6;
|
||||
display: none;
|
||||
}
|
||||
.compat-banner.gpu {
|
||||
background: #23392020;
|
||||
border: 1px solid #3fb95040;
|
||||
color: var(--success-color);
|
||||
}
|
||||
.compat-banner.cpu {
|
||||
background: #d2992215;
|
||||
border: 1px solid #d2992240;
|
||||
color: #d29922;
|
||||
}
|
||||
.compat-banner code {
|
||||
background: #0d1117;
|
||||
padding: 2px 6px;
|
||||
border-radius: 3px;
|
||||
font-size: 12px;
|
||||
color: var(--text-color);
|
||||
}
|
||||
.compat-banner summary {
|
||||
cursor: pointer;
|
||||
font-weight: 600;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
.compat-banner details[open] summary {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.chat-box {
|
||||
background-color: var(--panel-bg);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 6px;
|
||||
padding: 15px;
|
||||
height: 500px;
|
||||
overflow-y: auto;
|
||||
text-align: left;
|
||||
margin-bottom: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.chat-msg {
|
||||
background-color: #0d1117;
|
||||
padding: 12px;
|
||||
border-radius: 6px;
|
||||
border-left: 3px solid var(--accent-color);
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.chat-prompt {
|
||||
color: #8b949e;
|
||||
font-size: 13px;
|
||||
margin-bottom: 5px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.token-detail {
|
||||
background: #010409;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 4px;
|
||||
padding: 10px 12px;
|
||||
margin-top: 8px;
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 13px;
|
||||
line-height: 1.8;
|
||||
display: none;
|
||||
}
|
||||
.token-detail.visible { display: block; }
|
||||
.token-detail .tok {
|
||||
background: #1c2333;
|
||||
border: 1px solid #30363d;
|
||||
border-radius: 3px;
|
||||
padding: 2px 5px;
|
||||
margin: 2px;
|
||||
display: inline-block;
|
||||
color: var(--text-color);
|
||||
}
|
||||
.token-detail .tok-en { border-color: #58a6ff44; }
|
||||
.token-detail .tok-fi { border-color: #d2992244; }
|
||||
.toggle-tokens {
|
||||
background: none;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 4px;
|
||||
color: #8b949e;
|
||||
font-size: 12px;
|
||||
padding: 3px 8px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.toggle-tokens:hover { color: var(--text-color); border-color: #8b949e; }
|
||||
|
||||
.task-option {
|
||||
background: var(--panel-bg);
|
||||
border: 2px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
padding: 14px;
|
||||
cursor: pointer;
|
||||
transition: border-color 0.2s;
|
||||
position: relative;
|
||||
}
|
||||
.task-option:hover { border-color: #8b949e; }
|
||||
.task-option.selected { border-color: var(--accent-color); background: #58a6ff10; }
|
||||
.task-title { font-weight: 600; font-size: 15px; color: var(--text-color); margin-bottom: 4px; }
|
||||
.task-desc { font-size: 12px; color: #8b949e; line-height: 1.4; margin-bottom: 8px; }
|
||||
.task-size { font-size: 11px; color: #6e7681; }
|
||||
.task-badge {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
font-size: 10px;
|
||||
font-weight: 600;
|
||||
padding: 2px 8px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.task-ready { background: #23392050; color: var(--success-color); border: 1px solid #23392080; }
|
||||
.task-soon { background: #d2992215; color: #d29922; border: 1px solid #d2992240; }
|
||||
.task-info {
|
||||
display: none;
|
||||
margin-top: 10px;
|
||||
padding-top: 10px;
|
||||
border-top: 1px solid var(--border-color);
|
||||
font-size: 12px;
|
||||
line-height: 1.6;
|
||||
color: #8b949e;
|
||||
}
|
||||
.task-info strong { color: var(--text-color); }
|
||||
.task-info em { color: var(--accent-color); font-style: normal; }
|
||||
.task-option.selected .task-info { display: block; }
|
||||
|
||||
.download-bar {
|
||||
background: #0d1117;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 6px;
|
||||
padding: 12px 16px;
|
||||
margin-bottom: 16px;
|
||||
display: none;
|
||||
}
|
||||
.download-bar .bar-track {
|
||||
background: #21262d;
|
||||
border-radius: 4px;
|
||||
height: 8px;
|
||||
margin-top: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.download-bar .bar-fill {
|
||||
background: var(--accent-color);
|
||||
height: 100%;
|
||||
border-radius: 4px;
|
||||
transition: width 0.3s ease;
|
||||
}
|
||||
|
||||
.metric-card {
|
||||
background: var(--panel-bg);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 6px;
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
.metric-val {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
.metric-label {
|
||||
font-size: 11px;
|
||||
color: #8b949e;
|
||||
margin-top: 2px;
|
||||
}
|
||||
.terminal-panel {
|
||||
background:#010409;
|
||||
border:1px solid var(--border-color);
|
||||
border-radius:6px;
|
||||
padding:15px;
|
||||
font-family: 'Courier New', Courier, monospace;
|
||||
font-size:14px;
|
||||
color:var(--success-color);
|
||||
height: clamp(200px, 35vh, 500px);
|
||||
overflow-y:auto;
|
||||
text-align:left;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
.terminal-line { margin: 4px 0; }
|
||||
.terminal-prompt { color: #d29922; }
|
||||
.org-chart {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
margin-bottom: 12px;
|
||||
padding: 10px 12px;
|
||||
overflow-x: auto;
|
||||
}
|
||||
.org-level {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.org-connector {
|
||||
width: 20px;
|
||||
height: 2px;
|
||||
background: linear-gradient(to right, rgba(88, 166, 255, 0.8), rgba(88, 166, 255, 0.2));
|
||||
align-self: center;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.org-branch {
|
||||
display: none;
|
||||
}
|
||||
.org-chart.vertical {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
}
|
||||
.org-chart.vertical .org-connector {
|
||||
width: 2px;
|
||||
height: 24px;
|
||||
background: linear-gradient(to bottom, rgba(88, 166, 255, 0.8), rgba(88, 166, 255, 0.2));
|
||||
}
|
||||
.avatar-card {
|
||||
background: linear-gradient(145deg, rgba(33, 38, 45, 0.4) 0%, rgba(13, 17, 23, 0.8) 100%);
|
||||
backdrop-filter: blur(12px);
|
||||
border: 1px solid rgba(240, 246, 252, 0.1);
|
||||
border-radius: 12px;
|
||||
padding: 6px 6px 4px;
|
||||
text-align: center;
|
||||
width: 72px;
|
||||
opacity: 0.8;
|
||||
cursor: pointer;
|
||||
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
||||
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
|
||||
}
|
||||
.avatar-card:hover {
|
||||
opacity: 0.85;
|
||||
transform: translateY(-2px) scale(1.02);
|
||||
border-color: rgba(240, 246, 252, 0.3);
|
||||
box-shadow: 0 8px 14px rgba(0,0,0,0.4);
|
||||
}
|
||||
@keyframes idle-breathe {
|
||||
0%, 100% { transform: translateY(0) scale(1); }
|
||||
50% { transform: translateY(-2px) scale(1.01); }
|
||||
}
|
||||
@keyframes talking-head {
|
||||
0% { transform: scale(1.05) scaleY(1) translateY(0); }
|
||||
25% { transform: scale(1.05) scaleY(0.96) scaleX(1.02) translateY(2px); }
|
||||
50% { transform: scale(1.05) scaleY(1.02) scaleX(0.98) translateY(-2px); }
|
||||
75% { transform: scale(1.05) scaleY(0.97) scaleX(1.01) translateY(1px); }
|
||||
100% { transform: scale(1.05) scaleY(1) translateY(0); }
|
||||
}
|
||||
|
||||
.avatar-card img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border-radius: 12px;
|
||||
margin-bottom: 4px;
|
||||
border: 2px solid rgba(240, 246, 252, 0.1);
|
||||
transition: all 0.4s ease;
|
||||
object-fit: cover;
|
||||
background: #010409;
|
||||
animation: idle-breathe 4s infinite ease-in-out;
|
||||
transform-origin: bottom center;
|
||||
}
|
||||
|
||||
.avatar-card.active, .avatar-card.selected {
|
||||
opacity: 1;
|
||||
transform: translateY(-8px) scale(1.05);
|
||||
border-color: var(--accent-color);
|
||||
background: linear-gradient(145deg, rgba(88, 166, 255, 0.15) 0%, rgba(13, 17, 23, 0.9) 100%);
|
||||
box-shadow: 0 16px 24px rgba(0,0,0,0.5), 0 0 20px rgba(88, 166, 255, 0.3);
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.avatar-card.selected img {
|
||||
border-color: var(--accent-color);
|
||||
box-shadow: 0 0 25px rgba(88, 166, 255, 0.5);
|
||||
transform: scale(1.05);
|
||||
animation: none;
|
||||
}
|
||||
|
||||
.avatar-card.active img {
|
||||
border-color: var(--accent-color);
|
||||
box-shadow: 0 0 25px rgba(88, 166, 255, 0.8);
|
||||
animation: talking-head 0.4s infinite ease-in-out;
|
||||
transform-origin: bottom center;
|
||||
}
|
||||
@keyframes talking-head-gallery {
|
||||
0% { transform: scaleY(1) translateY(0); }
|
||||
25% { transform: scaleY(0.94) scaleX(1.04) translateY(3px); }
|
||||
50% { transform: scaleY(1.04) scaleX(0.96) translateY(-3px); }
|
||||
75% { transform: scaleY(0.96) scaleX(1.02) translateY(1px); }
|
||||
100% { transform: scaleY(1) translateY(0); }
|
||||
}
|
||||
.gallery-head {
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
border-radius: 12px;
|
||||
border: 2px solid rgba(240, 246, 252, 0.1);
|
||||
object-fit: cover;
|
||||
background: #010409;
|
||||
transition: all 0.3s ease;
|
||||
opacity: 0.4;
|
||||
filter: grayscale(80%);
|
||||
}
|
||||
.gallery-head.active {
|
||||
opacity: 1;
|
||||
filter: grayscale(0%);
|
||||
border-color: var(--accent-color);
|
||||
box-shadow: 0 0 15px rgba(88, 166, 255, 0.5);
|
||||
transform-origin: bottom center;
|
||||
}
|
||||
|
||||
@keyframes confused-shake {
|
||||
0% { transform: translateX(0); }
|
||||
25% { transform: translateX(-2px) rotate(-3deg); }
|
||||
50% { transform: translateX(0); }
|
||||
75% { transform: translateX(2px) rotate(3deg); }
|
||||
100% { transform: translateX(0); }
|
||||
}
|
||||
|
||||
.gallery-head-wrap[data-tooltip]::before {
|
||||
content: attr(data-tooltip);
|
||||
position: absolute;
|
||||
bottom: 110%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
background: rgba(13, 17, 23, 0.95);
|
||||
color: #f0f6fc;
|
||||
padding: 8px 12px;
|
||||
border-radius: 6px;
|
||||
font-size: 11px;
|
||||
white-space: pre-wrap;
|
||||
width: 140px;
|
||||
text-align: left;
|
||||
border: 1px solid var(--border-color);
|
||||
z-index: 100;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transition: opacity 0.2s;
|
||||
box-shadow: 0 4px 12px rgba(0,0,0,0.5);
|
||||
}
|
||||
.gallery-head-wrap:hover[data-tooltip]:not([data-tooltip=""])::before { opacity: 1; }
|
||||
|
||||
/* Yhteiset kuplasäännöt */
|
||||
.gallery-head-wrap.state-question::after,
|
||||
.gallery-head-wrap.state-alert::after,
|
||||
.gallery-head-wrap.active:not(.state-question):not(.state-alert)::after {
|
||||
position: absolute;
|
||||
top: -10px;
|
||||
right: -10px;
|
||||
font-size: 14px;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 50%;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
/* State: Kysymys (Oranssi ?) */
|
||||
.gallery-head-wrap.state-question::after {
|
||||
content: '?';
|
||||
color: #ffffff;
|
||||
font-weight: 900;
|
||||
font-family: system-ui, -apple-system, sans-serif;
|
||||
animation: speech-pulse 1s infinite alternate;
|
||||
background: #d29922; border: 1px solid #e3a830;
|
||||
}
|
||||
.gallery-head.state-question {
|
||||
border-color: #d29922; box-shadow: 0 0 15px rgba(210, 153, 34, 0.4);
|
||||
animation: confused-shake 2s infinite ease-in-out; filter: grayscale(10%); opacity: 0.9;
|
||||
}
|
||||
|
||||
/* State: Alert (Punainen !) */
|
||||
.gallery-head-wrap.state-alert::after {
|
||||
content: '!';
|
||||
color: #ffffff;
|
||||
font-weight: 900;
|
||||
font-family: system-ui, -apple-system, sans-serif;
|
||||
animation: speech-pulse 0.5s infinite alternate;
|
||||
background: #da3633; border: 1px solid #ff7b72;
|
||||
}
|
||||
.gallery-head.state-alert {
|
||||
border-color: #ff4444; box-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
|
||||
animation: confused-shake 0.5s infinite; filter: grayscale(30%); opacity: 0.9;
|
||||
}
|
||||
|
||||
.gallery-head-wrap { position: relative; display: inline-block; cursor: help; }
|
||||
@keyframes speech-pulse {
|
||||
0% { transform: scale(0.8) translateY(0); opacity: 0.6; }
|
||||
50% { transform: scale(1.1) translateY(-2px); opacity: 1; }
|
||||
100% { transform: scale(0.8) translateY(0); opacity: 0.6; }
|
||||
}
|
||||
.gallery-head-wrap.active:not(.state-question):not(.state-alert)::after {
|
||||
content: '💬';
|
||||
background: #0d1117;
|
||||
border: 1px solid var(--accent-color);
|
||||
}
|
||||
.avatar-name { font-weight: 700; font-size: 10px; color: #f0f6fc; letter-spacing: 0.3px; margin-bottom: 0; }
|
||||
.avatar-role { font-size: 10px; color: #8b949e; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; line-height: 1.2; word-wrap: break-word; }
|
||||
.agent-prompt-editor {
|
||||
margin-top: 12px;
|
||||
background: var(--panel-bg);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 6px;
|
||||
padding: 12px;
|
||||
display: none;
|
||||
}
|
||||
.agent-prompt-editor.visible { display: block; }
|
||||
.agent-prompt-editor textarea {
|
||||
width: 100%;
|
||||
background: #010409;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 4px;
|
||||
color: var(--text-color);
|
||||
font-size: 13px;
|
||||
font-family: 'Courier New', monospace;
|
||||
padding: 8px;
|
||||
resize: vertical;
|
||||
min-height: 40px;
|
||||
outline: none;
|
||||
}
|
||||
.agent-prompt-editor textarea:focus { border-color: var(--accent-color); }
|
||||
.agent-prompt-label {
|
||||
font-size: 12px;
|
||||
color: #8b949e;
|
||||
margin-bottom: 6px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.agent-prompt-label strong { color: var(--text-color); }
|
||||
.lang-selector { display: flex; gap: 6px; background: #010409; padding: 4px; border-radius: 6px; border: 1px solid var(--border-color); }
|
||||
.lang-btn { background: transparent; border: none; color: #8b949e; font-size: 11px; font-weight: 600; cursor: pointer; padding: 4px 8px; border-radius: 4px; transition: all 0.2s; }
|
||||
.lang-btn:hover { color: #c9d1d9; }
|
||||
.lang-btn.active { background: rgba(88, 166, 255, 0.15); color: var(--accent-color); }
|
||||
|
||||
@media (max-width: 768px) {
|
||||
body { padding: 5px; margin: 0; }
|
||||
.container { padding: 15px; border: none; border-radius: 0; border-bottom: 1px solid var(--border-color); }
|
||||
.dashboard-panel { flex-direction: column; gap: 15px; padding: 10px; }
|
||||
.stat-box { border-right: none !important; border-bottom: 1px solid #30363d; padding-bottom: 10px; }
|
||||
.stat-box:last-child { border-bottom: none; padding-bottom: 0; }
|
||||
|
||||
/* Typography & Header */
|
||||
h1 { font-size: 22px; }
|
||||
.sub { font-size: 11px; }
|
||||
.lang-selector { flex-direction: column; gap: 4px; }
|
||||
[style*="justify-content: space-between; align-items: flex-start"] { align-items: center !important; }
|
||||
|
||||
/* Tabs */
|
||||
.main-tabs { display: flex; overflow-x: auto; white-space: nowrap; padding-bottom: 5px; margin-bottom: 15px; gap: 10px; }
|
||||
.main-tab { padding: 8px 10px; font-size: 13px; text-align: center; }
|
||||
|
||||
/* Grid optimizations */
|
||||
#task-selector { grid-template-columns: 1fr !important; }
|
||||
#metrics-grid { grid-template-columns: 1fr 1fr !important; }
|
||||
|
||||
/* Org chart mobile tweaks */
|
||||
.org-chart { padding: 6px; gap: 4px; }
|
||||
.org-level { flex-wrap: wrap; gap: 4px !important; }
|
||||
.org-connector { width: 12px; }
|
||||
|
||||
/* Avatar cards downscaling */
|
||||
.avatar-card { width: 56px; padding: 4px 3px 2px; }
|
||||
.avatar-card img { width: 36px; height: 36px; margin-bottom: 2px; border-radius: 8px; }
|
||||
.avatar-name { font-size: 9px; margin-bottom: 0; }
|
||||
|
||||
/* User Input Area */
|
||||
#user-input-box > div { flex-direction: column; }
|
||||
#send-btn { width: 100%; padding: 12px; }
|
||||
|
||||
#code-input-container { flex-direction: column !important; }
|
||||
#code-send-btn { width: 100%; margin-top: 5px; }
|
||||
}
|
||||
|
||||
/* Responsiivinen korkeus */
|
||||
@media (max-height: 900px) {
|
||||
.terminal-panel { height: clamp(150px, 25vh, 250px); }
|
||||
.agent-prompt-editor textarea { min-height: 30px; }
|
||||
.container > div:first-child { margin-bottom: 6px; }
|
||||
.container h1 { font-size: 22px; }
|
||||
.container .sub { font-size: 12px; }
|
||||
.avatar-card { padding: 4px 4px 2px; }
|
||||
.avatar-card img { width: 40px; height: 40px; margin-bottom: 2px; }
|
||||
}
|
||||
@media (min-height: 1200px) {
|
||||
.terminal-panel { height: clamp(350px, 40vh, 600px); }
|
||||
.agent-prompt-editor textarea { min-height: 80px; }
|
||||
}
|
||||
|
||||
|
||||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif; background: #0d1117; color: #c9d1d9; padding: 24px; max-width: 960px; margin: 0 auto; line-height: 1.5; }
|
||||
h1 { color: #f0f6fc; margin-bottom: 4px; font-size: 24px; }
|
||||
h2 { color: #c9d1d9; margin: 28px 0 14px; border-bottom: 1px solid #30363d; padding-bottom: 8px; font-size: 18px; }
|
||||
h3 { color: #8b949e; margin: 16px 0 8px; }
|
||||
pre { font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, monospace; tab-size: 4; }
|
||||
a { color: #58a6ff; }
|
||||
details summary { list-style: none; cursor: pointer; }
|
||||
details summary::-webkit-details-marker { display: none; }
|
||||
details[open] summary { color: #58a6ff; }
|
||||
.sl-badge { display: inline-block; border: 1px solid; border-radius: 6px; padding: 3px 10px; margin: 2px; font-size: 11px; cursor: help; white-space: nowrap; position: relative; transition: transform 0.15s; }
|
||||
.sl-badge:hover { transform: translateY(-1px); filter: brightness(1.3); }
|
||||
.sl-badge[data-tip]:hover::after { content: attr(data-tip); position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%); background: #1c2028; border: 1px solid #30363d; border-radius: 6px; padding: 8px 12px; font-size: 11px; color: #c9d1d9; white-space: pre-wrap; max-width: 350px; min-width: 180px; z-index: 10; box-shadow: 0 4px 12px rgba(0,0,0,0.5); pointer-events: none; line-height: 1.5; }
|
||||
/* Animations */
|
||||
@keyframes blink { 0%,100% { opacity:1 } 50% { opacity:0 } }
|
||||
@keyframes spin { to { transform: rotate(360deg) } }
|
||||
|
||||
Reference in New Issue
Block a user