|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | +<meta charset="UTF-8"> |
| 5 | +<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | +<meta name="robots" content="noindex, nofollow"> |
| 7 | +<title>KeePass Web — Parked Domain</title> |
| 8 | +<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 7V5a3.5 3.5 0 0 1 7 0v2' fill='none' stroke='%230e7c5a' stroke-width='2' stroke-linecap='round'/%3E%3Crect x='2' y='7' width='12' height='8' rx='2' fill='%230e7c5a'/%3E%3C/svg%3E"> |
| 9 | +<style> |
| 10 | +*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } |
| 11 | + |
| 12 | +:root { |
| 13 | + --bg: #eef2ef; |
| 14 | + --surface: #ffffff; |
| 15 | + --border: #d8e2dc; |
| 16 | + --text: #0e1714; |
| 17 | + --muted: #5a6a62; |
| 18 | + --accent: #0e7c5a; |
| 19 | +} |
| 20 | + |
| 21 | +body { |
| 22 | + background: var(--bg); |
| 23 | + color: var(--text); |
| 24 | + font-family: ui-monospace, monospace; |
| 25 | + font-size: 16px; |
| 26 | + line-height: 1.6; |
| 27 | + min-height: 100vh; |
| 28 | + display: flex; |
| 29 | + flex-direction: column; |
| 30 | + align-items: center; |
| 31 | + justify-content: center; |
| 32 | + padding: 2rem; |
| 33 | +} |
| 34 | + |
| 35 | +main { |
| 36 | + max-width: 560px; |
| 37 | + width: 100%; |
| 38 | + text-align: center; |
| 39 | +} |
| 40 | + |
| 41 | +.wordmark { |
| 42 | + display: inline-flex; |
| 43 | + align-items: center; |
| 44 | + font-size: 1.1rem; |
| 45 | + font-weight: 600; |
| 46 | + letter-spacing: 0.05em; |
| 47 | + text-transform: uppercase; |
| 48 | + color: var(--muted); |
| 49 | + margin-bottom: 2rem; |
| 50 | +} |
| 51 | + |
| 52 | +.mark { |
| 53 | + position: relative; |
| 54 | + width: 18px; |
| 55 | + height: 18px; |
| 56 | + margin-right: 0.5rem; |
| 57 | + flex-shrink: 0; |
| 58 | +} |
| 59 | + |
| 60 | +.mark::before { |
| 61 | + content: ""; |
| 62 | + position: absolute; |
| 63 | + top: 0; |
| 64 | + left: 3px; |
| 65 | + width: 12px; |
| 66 | + height: 10px; |
| 67 | + border: 2.5px solid var(--accent); |
| 68 | + border-bottom: none; |
| 69 | + border-radius: 7px 7px 0 0; |
| 70 | +} |
| 71 | + |
| 72 | +.mark::after { |
| 73 | + content: ""; |
| 74 | + position: absolute; |
| 75 | + bottom: 0; |
| 76 | + left: 0; |
| 77 | + width: 18px; |
| 78 | + height: 11px; |
| 79 | + background: var(--accent); |
| 80 | + border-radius: 3px; |
| 81 | +} |
| 82 | + |
| 83 | +h1 { |
| 84 | + font-size: 2.25rem; |
| 85 | + font-weight: 700; |
| 86 | + letter-spacing: -0.02em; |
| 87 | + line-height: 1.2; |
| 88 | + margin-bottom: 1.25rem; |
| 89 | +} |
| 90 | + |
| 91 | +.description { |
| 92 | + color: var(--muted); |
| 93 | + margin-bottom: 2rem; |
| 94 | +} |
| 95 | + |
| 96 | +a { |
| 97 | + color: var(--accent); |
| 98 | + text-decoration: none; |
| 99 | +} |
| 100 | + |
| 101 | +a:hover { |
| 102 | + text-decoration: underline; |
| 103 | +} |
| 104 | + |
| 105 | +.go { |
| 106 | + display: block; |
| 107 | + padding: 0.85rem 1.5rem; |
| 108 | + border-radius: 0.5rem; |
| 109 | + background: var(--accent); |
| 110 | + color: var(--bg); |
| 111 | + font-weight: 500; |
| 112 | + text-decoration: none; |
| 113 | + margin-bottom: 2rem; |
| 114 | + transition: opacity 0.15s; |
| 115 | +} |
| 116 | + |
| 117 | +.go:hover { |
| 118 | + opacity: 0.85; |
| 119 | + text-decoration: none; |
| 120 | +} |
| 121 | + |
| 122 | +.notice { |
| 123 | + border: 1px solid var(--border); |
| 124 | + border-radius: 0.5rem; |
| 125 | + padding: 1rem 1.25rem; |
| 126 | + font-size: 0.85rem; |
| 127 | + color: var(--muted); |
| 128 | + text-align: left; |
| 129 | + margin-bottom: 2rem; |
| 130 | +} |
| 131 | + |
| 132 | +.notice strong { |
| 133 | + color: var(--text); |
| 134 | +} |
| 135 | + |
| 136 | +footer { |
| 137 | + font-size: 0.75rem; |
| 138 | + color: var(--muted); |
| 139 | +} |
| 140 | +</style> |
| 141 | +</head> |
| 142 | +<body> |
| 143 | +<main> |
| 144 | + <div class="wordmark"><span class="mark"></span>KeePass Web</div> |
| 145 | + <h1>This domain is parked.</h1> |
| 146 | + <p class="description"> |
| 147 | + This page is held by the team behind KeePass Web to keep it from being |
| 148 | + used to impersonate the real application. It has no functionality of |
| 149 | + its own. |
| 150 | + </p> |
| 151 | + <a class="go" href="https://keepass-web.app/">Go to keepass-web.app</a> |
| 152 | + <div class="notice"> |
| 153 | + <strong>There is no login form on this page.</strong> Never enter your |
| 154 | + KeePass master password here, or anywhere other than |
| 155 | + <a href="https://keepass-web.app/">keepass-web.app</a>. |
| 156 | + </div> |
| 157 | + <footer> |
| 158 | + Source: <a href="https://github.com/keepass-web/keepass-web.github.io">github.com/keepass-web/keepass-web.github.io</a> |
| 159 | + </footer> |
| 160 | +</main> |
| 161 | +</body> |
| 162 | +</html> |
0 commit comments