Files
project-kino/runtime-current/kino/app-src/browser-extension/kino-capture/popup.css

36 lines
1.0 KiB
CSS

body {
min-width: 380px;
max-width: 520px;
margin: 0;
background: #111827;
color: #f9fafb;
font: 14px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
main { padding: 14px; }
h1 { margin: 0 0 8px; font-size: 18px; }
label { display: grid; gap: 4px; margin: 10px 0; }
input {
padding: 8px;
border-radius: 8px;
border: 1px solid #374151;
background: #1f2937;
color: #fff;
}
button {
padding: 8px 10px;
border: 0;
border-radius: 8px;
background: #38bdf8;
color: #082f49;
font-weight: 700;
cursor: pointer;
}
button.secondary { background: #374151; color: #f9fafb; }
button:disabled { opacity: .5; cursor: not-allowed; }
.actions { display: flex; flex-wrap: wrap; gap: 8px; }
ol { padding-left: 20px; max-height: 320px; overflow: auto; }
li { margin: 8px 0; border-top: 1px solid #374151; padding-top: 8px; }
code { display: block; color: #bae6fd; overflow-wrap: anywhere; font-size: 12px; }
.meta, .hint { color: #d1d5db; font-size: 12px; }
.error { color: #fca5a5; }