be2078779d
The result password was a fixed 19px with white-space:pre, so it overflowed the card on phones. Scope .result .secret to a dynamic font (clamp 13-19px, ~15px at 390px) that wraps (pre-wrap + overflow-wrap:anywhere + min-width:0). Desktop is unchanged (fits one line at 19px); the console gen-table keeps its pre alignment.
260 lines
14 KiB
CSS
260 lines
14 KiB
CSS
/* LesS/KEY web app — visual language mirrored from kaizenkodo.org
|
|
(~/Repos/Identity/website/main.css): washi-paper cream, ocean blue, hanko red,
|
|
Poppins / Inter / JetBrains Mono. Light, responsive, restrained. */
|
|
|
|
:root {
|
|
--cream: #f4f0e8;
|
|
--paper: #fbf8f2;
|
|
--ink: #15181b;
|
|
--muted: #6a675e;
|
|
--line: #ddd6c6;
|
|
--ocean: #1b4161;
|
|
--ocean-2: #2f6286;
|
|
--deep: #0a2540;
|
|
--seal: #e23b2e;
|
|
--disp: "Poppins", system-ui, sans-serif;
|
|
--body: "Inter", system-ui, sans-serif;
|
|
--mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
|
|
--maxw: 1320px;
|
|
--gutter: clamp(16px, 3.5vw, 48px);
|
|
--radius: 16px;
|
|
}
|
|
|
|
/* Self-hosted fonts — bundled with the app so it makes NO external requests and
|
|
talks to no third party (no Google Fonts, no CDN). Latin subset only. */
|
|
@font-face { font-family:"Poppins"; font-style:normal; font-weight:600; font-display:swap; src:url("./assets/fonts/Poppins-600.woff2") format("woff2"); }
|
|
@font-face { font-family:"Poppins"; font-style:normal; font-weight:700; font-display:swap; src:url("./assets/fonts/Poppins-700.woff2") format("woff2"); }
|
|
@font-face { font-family:"Inter"; font-style:normal; font-weight:400; font-display:swap; src:url("./assets/fonts/Inter-400.woff2") format("woff2"); }
|
|
@font-face { font-family:"Inter"; font-style:normal; font-weight:500; font-display:swap; src:url("./assets/fonts/Inter-500.woff2") format("woff2"); }
|
|
@font-face { font-family:"Inter"; font-style:normal; font-weight:600; font-display:swap; src:url("./assets/fonts/Inter-600.woff2") format("woff2"); }
|
|
@font-face { font-family:"JetBrains Mono"; font-style:normal; font-weight:400; font-display:swap; src:url("./assets/fonts/JetBrainsMono-400.woff2") format("woff2"); }
|
|
@font-face { font-family:"JetBrains Mono"; font-style:normal; font-weight:500; font-display:swap; src:url("./assets/fonts/JetBrainsMono-500.woff2") format("woff2"); }
|
|
/* Masked-secret font: dots glyphs so the real chars stay selectable/copyable.
|
|
WebKit/Blink use -webkit-text-security; Firefox falls back to this font. */
|
|
@font-face { font-family:"text-security-disc"; font-display:swap; src:url("./assets/fonts/text-security-disc.woff2") format("woff2"); }
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
html { height: 100%; }
|
|
|
|
body {
|
|
min-height: 100%;
|
|
font-family: var(--body);
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
color: var(--ink);
|
|
background-color: var(--cream);
|
|
background-image:
|
|
linear-gradient(rgba(27, 65, 97, 0.05) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(27, 65, 97, 0.05) 1px, transparent 1px);
|
|
background-size: 48px 48px;
|
|
-webkit-font-smoothing: antialiased;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
|
|
|
|
/* Header */
|
|
.site {
|
|
position: sticky; top: 0; z-index: 50;
|
|
background: rgba(244, 240, 232, 0.82);
|
|
backdrop-filter: blur(12px);
|
|
border-bottom: 1px solid var(--line);
|
|
}
|
|
.nav { display: flex; align-items: center; gap: 14px; height: 68px; }
|
|
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
|
|
.enso { width: 36px; height: 36px; display: block; flex: none; object-fit: contain; }
|
|
.wordmark { font-family: var(--disp); font-weight: 700; font-size: 22px; color: var(--ocean); letter-spacing: -0.01em; }
|
|
.tagline { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }
|
|
.nav-spacer { flex: 1; }
|
|
|
|
/* Eyebrow label */
|
|
.eyebrow {
|
|
font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
|
|
text-transform: uppercase; color: var(--ocean);
|
|
display: inline-flex; align-items: center; gap: 9px; margin-bottom: 12px;
|
|
}
|
|
.eyebrow::before {
|
|
content: ""; width: 7px; height: 7px; border-radius: 50%;
|
|
background: var(--seal); box-shadow: 0 0 0 3px rgba(226, 59, 46, 0.16);
|
|
}
|
|
|
|
/* minmax(0,1fr) lets the cards shrink below their content's intrinsic width, so
|
|
the console's pre/no-wrap lines scroll inside it instead of widening the page. */
|
|
main { padding: clamp(20px, 3vw, 34px) 0 56px; display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(16px, 2.4vw, 24px); }
|
|
|
|
/* About / how-it-works (collapsible <details>) */
|
|
.about { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
|
|
.about > summary {
|
|
list-style: none; cursor: pointer; display: flex; align-items: center; gap: 12px;
|
|
padding: clamp(14px, 2.2vw, 19px) clamp(16px, 2.6vw, 28px);
|
|
font-family: var(--disp); font-weight: 600; font-size: clamp(16px, 2vw, 20px); color: var(--ocean);
|
|
}
|
|
.about > summary::-webkit-details-marker { display: none; }
|
|
.about > summary:hover { color: var(--ocean-2); }
|
|
/* attention badge — draws the eye to open the help panel; hidden once open */
|
|
.about-badge {
|
|
font-family: var(--mono); font-size: 10.5px; font-weight: 500;
|
|
text-transform: uppercase; letter-spacing: 0.1em;
|
|
color: #fff; background: var(--seal); border-radius: 999px; padding: 3px 10px; flex: none;
|
|
animation: badgePulse 2.2s ease-out infinite;
|
|
}
|
|
@keyframes badgePulse {
|
|
0% { box-shadow: 0 0 0 0 rgba(226, 59, 46, 0.45); }
|
|
70% { box-shadow: 0 0 0 9px rgba(226, 59, 46, 0); }
|
|
100% { box-shadow: 0 0 0 0 rgba(226, 59, 46, 0); }
|
|
}
|
|
@media (prefers-reduced-motion: reduce) { .about-badge { animation: none; } }
|
|
.about-hint { font-family: var(--mono); font-size: 11px; font-weight: 400; color: var(--muted); }
|
|
.about[open] .about-badge, .about[open] .about-hint { display: none; }
|
|
@media (max-width: 680px) { .about-hint { display: none; } }
|
|
.about .about-toggle {
|
|
margin-left: auto; width: 9px; height: 9px; flex: none;
|
|
border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
|
|
transform: rotate(45deg); transition: transform .2s;
|
|
}
|
|
.about[open] .about-toggle { transform: rotate(-135deg); }
|
|
.about-body { padding: 0 clamp(16px, 2.6vw, 28px) clamp(16px, 2.6vw, 24px); }
|
|
.about-body p { color: var(--muted); font-size: 14.5px; max-width: 76ch; }
|
|
.about-body > p:first-child { color: var(--ink); font-size: 15.5px; }
|
|
.about-body code { font-family: var(--mono); font-size: 12px; color: var(--ocean-2); background: rgba(27,65,97,.06); padding: 1px 5px; border-radius: 5px; }
|
|
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 18px 0 6px; }
|
|
.about-grid h4 { font-family: var(--disp); font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 5px; }
|
|
.about-grid p { font-size: 13.5px; }
|
|
.about-note { font-family: var(--mono); font-size: 12px; margin-top: 10px; }
|
|
/* Privacy callout — make the "no server" promise visually prominent. */
|
|
.about-privacy {
|
|
margin: 6px 0 2px; padding: 13px 16px; border-radius: 12px;
|
|
border: 1px solid var(--line); border-left: 3px solid var(--ocean);
|
|
background: rgba(27, 65, 97, 0.045); color: var(--ink); font-size: 14.5px; max-width: 76ch;
|
|
}
|
|
.about-privacy strong { color: var(--ocean); }
|
|
@media (max-width: 680px) { .about-grid { grid-template-columns: 1fr; } }
|
|
|
|
/* Cards */
|
|
.card {
|
|
background: var(--paper); border: 1px solid var(--line);
|
|
border-radius: var(--radius); padding: clamp(16px, 2.6vw, 28px);
|
|
}
|
|
.card h2 { font-family: var(--disp); font-weight: 600; font-size: clamp(20px, 2.6vw, 27px); color: var(--ink); margin-bottom: 4px; }
|
|
.card .hint { color: var(--muted); font-size: 14px; margin-bottom: 18px; max-width: 70ch; }
|
|
.card .hint code { font-family: var(--mono); font-size: 12.5px; color: var(--ocean-2); background: rgba(27,65,97,0.06); padding: 1px 5px; border-radius: 5px; }
|
|
|
|
/* Form fields */
|
|
.fields { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; align-items: end; }
|
|
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
|
|
.field label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
|
|
input[type="text"], input[type="password"] {
|
|
/* 16px min: iOS Safari auto-zooms (and stays zoomed) when a focused input is
|
|
under 16px. Keep all focusable fields >= 16px to stop that. */
|
|
font-family: var(--mono); font-size: 16px; color: var(--ink);
|
|
background: #fff; border: 1px solid var(--line); border-radius: 10px;
|
|
padding: 12px 14px; width: 100%; outline: none;
|
|
transition: border-color .15s, box-shadow .15s;
|
|
}
|
|
input:focus { border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(27, 65, 97, 0.12); }
|
|
/* Masked TEXT inputs (master, pass overlay): visually masked but type=text, so
|
|
the browser never treats them as password fields — no autofill / save / "suggest
|
|
strong password". Firefox uses the bundled disc font. */
|
|
input.mask { -webkit-text-security: disc; }
|
|
@supports not (-webkit-text-security: disc) { input.mask { font-family: "text-security-disc", var(--mono); } }
|
|
|
|
/* Buttons */
|
|
.btn {
|
|
display: inline-flex; align-items: center; gap: 8px; cursor: pointer; white-space: nowrap;
|
|
font-family: var(--disp); font-weight: 600; font-size: 14px;
|
|
background: var(--ocean); color: var(--cream);
|
|
border: 1px solid var(--ocean); border-radius: 999px; padding: 10px 20px;
|
|
transition: transform .15s, background .15s, border-color .15s;
|
|
}
|
|
.btn:hover { transform: translateY(-1px); background: var(--deep); border-color: var(--deep); }
|
|
.btn:active { transform: none; }
|
|
.btn.ghost { background: transparent; color: var(--ocean); }
|
|
.btn.ghost:hover { background: rgba(27, 65, 97, 0.06); color: var(--ocean); border-color: var(--ocean); }
|
|
.btn.small { padding: 7px 15px; font-size: 13px; }
|
|
|
|
/* Quick-gen result row */
|
|
.result {
|
|
display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
|
|
margin-top: 20px; padding: 14px 16px; border: 1px solid var(--line);
|
|
border-radius: 12px; background: #fff; min-height: 58px;
|
|
}
|
|
.result .tag { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
|
|
.result .actions { margin-left: auto; display: flex; gap: 8px; }
|
|
.result .len { font-family: var(--mono); font-size: 11px; color: var(--muted); }
|
|
/* Quick-gen result: dynamic font (scales down on narrow phones) and wraps so a
|
|
long password stays inside the card. min-width:0 lets it shrink/wrap within
|
|
the flex row. Scoped so the console table keeps its fixed-width alignment. */
|
|
.result .secret { font-size: clamp(13px, 4vw, 19px); white-space: pre-wrap; overflow-wrap: anywhere; min-width: 0; }
|
|
|
|
/* Secret rendering: real text in the DOM, visually masked. Click toggles.
|
|
Mask via -webkit-text-security on the MONO font so each disc keeps the mono
|
|
advance width — gen tables stay aligned. (No letter-spacing, no disc webfont
|
|
here, both of which would break the column widths.) */
|
|
.secret {
|
|
font-family: var(--mono);
|
|
-webkit-text-security: disc;
|
|
font-size: 19px; color: var(--ink);
|
|
cursor: pointer; user-select: text; white-space: pre;
|
|
}
|
|
.secret.revealed { -webkit-text-security: none; color: var(--ocean); }
|
|
/* Firefox lacks -webkit-text-security: fall back to the disc webfont for masking
|
|
(single-line result only; the console table is a WebKit/Blink concern). */
|
|
@supports not (-webkit-text-security: disc) {
|
|
.secret { font-family: "text-security-disc", var(--mono); }
|
|
.secret.revealed { font-family: var(--mono); }
|
|
}
|
|
.secret:empty::before { content: "type a name + master"; color: var(--muted); font-size: 14px; -webkit-text-security: none; font-family: var(--body); cursor: default; }
|
|
|
|
/* Console */
|
|
.console-out {
|
|
font-family: var(--mono); font-size: 13.5px; line-height: 1.55;
|
|
background: #fff; border: 1px solid var(--line); border-radius: 10px;
|
|
padding: 14px; height: clamp(280px, 46vh, 560px);
|
|
overflow: auto; white-space: pre; /* no wrap — scroll left/right */
|
|
}
|
|
.console-out > div { min-width: max-content; }
|
|
.console-out .cmd { color: var(--ocean); font-weight: 500; }
|
|
.console-out .err { color: var(--seal); }
|
|
.console-out .muted { color: var(--muted); }
|
|
.console-out .secret { font-size: 13.5px; vertical-align: baseline; }
|
|
.console-in { display: flex; align-items: center; gap: 8px; margin-top: 10px;
|
|
background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 4px 14px; }
|
|
.console-in:focus-within { border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(27,65,97,0.12); }
|
|
.console-in .prompt { font-family: var(--mono); color: var(--ocean); font-weight: 600; }
|
|
.console-in input { border: none; box-shadow: none; padding: 9px 0; background: transparent; }
|
|
.console-in input:focus { box-shadow: none; }
|
|
|
|
.toast {
|
|
position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%);
|
|
background: var(--deep); color: var(--cream); font-family: var(--mono); font-size: 13px;
|
|
padding: 10px 18px; border-radius: 999px; box-shadow: 0 8px 24px rgba(10, 16, 24, 0.35);
|
|
opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 80;
|
|
}
|
|
.toast.show { opacity: 1; }
|
|
|
|
/* Modal (import/export) */
|
|
.modal-bg {
|
|
position: fixed; inset: 0; background: rgba(10, 16, 24, 0.45);
|
|
display: none; align-items: center; justify-content: center; padding: 20px; z-index: 90;
|
|
}
|
|
.modal-bg.show { display: flex; }
|
|
.modal { background: var(--paper); border-radius: 18px; border: 1px solid var(--line);
|
|
width: 100%; max-width: 680px; padding: 24px; }
|
|
.modal h3 { font-family: var(--disp); font-weight: 600; margin-bottom: 10px; }
|
|
.modal textarea {
|
|
width: 100%; height: 260px; resize: vertical; font-family: var(--mono); font-size: 16px;
|
|
border: 1px solid var(--line); border-radius: 10px; padding: 12px; outline: none; white-space: pre;
|
|
}
|
|
.modal textarea:focus { border-color: var(--ocean); }
|
|
.modal .row { display: flex; gap: 10px; margin-top: 14px; }
|
|
|
|
.foot { color: var(--muted); font-family: var(--mono); font-size: 12px; text-align: center; padding: 8px 0 40px; }
|
|
|
|
@media (max-width: 680px) {
|
|
.fields { grid-template-columns: 1fr; align-items: stretch; }
|
|
.nav { gap: 9px; height: 60px; }
|
|
.tagline { display: none; }
|
|
body { font-size: 15px; }
|
|
.result .actions { margin-left: 0; }
|
|
}
|