-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (77 loc) · 1.72 KB
/
index.html
File metadata and controls
87 lines (77 loc) · 1.72 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="noindex, nofollow" />
<title>Infinity Crown Events — Site unavailable</title>
<style>
:root {
--bg: #100d28;
--accent: #090dac;
--muted: #c4c2dc;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 1.5rem;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
background: radial-gradient(ellipse at top, var(--accent) 0%, var(--bg) 55%);
color: #fff;
}
.panel {
width: 100%;
max-width: 34rem;
padding: 2.25rem 1.75rem;
border-radius: 16px;
background: rgba(16, 13, 40, 0.92);
border: 1px solid rgba(255, 255, 255, 0.12);
box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
text-align: left;
}
h1 {
font-size: 1.35rem;
font-weight: 700;
margin: 0 0 1rem;
letter-spacing: 0.02em;
}
p {
margin: 0 0 0.75rem;
font-size: 0.95rem;
line-height: 1.55;
color: var(--muted);
}
p:last-of-type {
margin-bottom: 0;
}
.badge {
display: inline-block;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.14em;
color: #f413e2;
margin-bottom: 1rem;
}
</style>
</head>
<body>
<div class="panel">
<span class="badge">Website disabled</span>
<h1>This preview has been turned off</h1>
<p>
This site needs to be connected to its live domain before it can be viewed here.
Until then, public access is blocked.
</p>
<p>
If you are the site owner, contact the developer.
</p>
</div>
</body>
</html>