-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathblocked.html
More file actions
69 lines (66 loc) · 1.57 KB
/
blocked.html
File metadata and controls
69 lines (66 loc) · 1.57 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>Time's Up!</title>
<style>
body {
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #f7f7f9;
color: #222;
transition: background 0.3s, color 0.3s;
}
.message {
text-align: center;
padding: 30px;
background-color: #fff;
border: 1px solid #d3d6db;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
max-width: 400px;
margin: 20px;
}
h1 {
color: #FC9F16;
font-size: 2em;
margin-bottom: 20px;
font-weight: bold;
}
p {
color: inherit;
font-size: 16px;
line-height: 1.4;
margin: 10px 0;
}
a {
color: #2980b9;
text-decoration: underline;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #161616;
color: #fff;
}
.message {
background-color: #262626;
border: 1px solid #444;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
h1 { color: #FC9F16; }
a { color: #81b0f9; }
}
</style>
</head>
<body>
<div class="message">
<h1>Time's Up!</h1>
<p>You've used all your social media time for today.</p>
<p>Solve more <a href="https://leetcode.com/problemset/" target="_blank">LeetCode</a> problems to earn more time!</p>
</div>
</body>
</html>