04/17/2026 update launch button, password generation, and password checker

This commit is contained in:
2026-04-17 16:57:34 -04:00
parent 6f4a7e47da
commit 802e29857f
3 changed files with 217 additions and 2 deletions
+9
View File
@@ -108,6 +108,15 @@ ul { list-style: none; }
.notice-success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; border-radius: var(--radius); padding: 10px 14px; margin-bottom: 16px; font-size: 13px; }
.notice-info { background: #e3f2fd; border: 1px solid #90caf9; color: #1565c0; border-radius: var(--radius); padding: 10px 14px; margin-bottom: 16px; font-size: 13px; }
/* ── Password Generator modal ────────────────────────────────────────── */
.gen-opt { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 13px; }
.gen-opt input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--color-primary); cursor: pointer; }
#gen-output { letter-spacing: .5px; font-family: 'Courier New', monospace; }
/* Launch (open URL) button — distinct colour so it reads as navigation */
.btn-icon[data-action="launch"] { color: #1a73e8; }
.btn-icon[data-action="launch"]:hover { background: #e8f0fe; color: #1558b0; }
/* Password strength */
.password-strength { margin-top: 6px; font-size: 12px; font-weight: 500; }
.strength-1 { color: #c62828; }