Update static/css/main.css

This commit is contained in:
gru
2025-08-30 18:06:54 +02:00
parent 79b7ea77f4
commit 78cf869354

View File

@@ -685,4 +685,18 @@ select:focus {
#error-dump {
max-height: 300px
}
}
}
.result-box {
margin-top: 14px;
padding: 12px;
border: 1px dashed var(--border);
border-radius: 12px;
background: var(--bg-elev);
box-shadow: 0 0 8px 2px color-mix(in srgb, var(--brand) 50%, transparent 50%);
transition: box-shadow 0.3s ease;
}
.result-box:hover {
box-shadow: 0 0 12px 4px color-mix(in srgb, var(--brand) 70%, transparent 30%);
}