-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblocked.html
More file actions
45 lines (41 loc) · 1.84 KB
/
Copy pathblocked.html
File metadata and controls
45 lines (41 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Focus Mode</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" sizes="16x16" href="icons/icon16.png">
<link rel="icon" type="image/png" sizes="19x19" href="icons/icon19.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/icon32.png">
<link rel="icon" type="image/png" sizes="38x38" href="icons/icon38.png">
<link rel="icon" type="image/png" sizes="48x48" href="icons/icon48.png">
<link rel="icon" type="image/png" sizes="128x128" href="icons/icon128.png">
<style>
:root { color-scheme: light dark; }
body { margin:0; min-height:100dvh; display:grid; place-items:center;
font:16px system-ui,-apple-system,Segoe UI,Roboto,Arial;
background: canvas; color: canvastext; }
.card { max-width:520px; padding:28px; border-radius:16px;
box-shadow:0 6px 24px rgba(0,0,0,.12);
background: color-mix(in srgb, canvas 92%, #fff); text-align:center; }
h1 { margin:0 0 8px; font-size:24px; }
p { margin:0 0 12px; line-height:1.45; }
.count { font-weight:600; }
.row { display:flex; gap:10px; justify-content:center; margin-top:8px; }
a, button { padding:8px 12px; border-radius:10px; border:1px solid rgba(0,0,0,.15);
background:transparent; cursor:pointer; text-decoration:none; color:inherit; }
</style>
</head>
<body>
<div class="card">
<img src="icons/icon128.png" alt="Lock In Logo" width="64" height="64" style="margin-bottom:12px;">
<h1>Focus Mode Active</h1>
<p>This site is blocked by: <b>Your Future Self</b></p>
<p id="time">Time remaining: <span class="count">—</span></p>
<div class="row">
<button id="goBack">Go Back</button>
</div>
</div>
<script src="blocked.js"></script>
</body>
</html>