-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
44 lines (44 loc) · 1.16 KB
/
Copy pathoffline.html
File metadata and controls
44 lines (44 loc) · 1.16 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
<!doctype html>
<html lang="tr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Çevrimdışı</title>
<style>
body {
margin: 0;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
min-height: 100vh;
display: grid;
place-items: center;
background: #f8fafc;
color: #0f172a;
}
.card {
width: min(92vw, 420px);
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 14px;
padding: 20px;
text-align: center;
box-shadow: 0 8px 28px rgba(2, 6, 23, 0.08);
}
h1 {
margin: 0 0 10px;
font-size: 1.2rem;
}
p {
margin: 0;
color: #334155;
line-height: 1.45;
font-size: 0.95rem;
}
</style>
</head>
<body>
<main class="card">
<h1>İnternet bağlantısı yok</h1>
<p>Bağlantı geri geldiğinde sayfayı yenileyerek devam edebilirsiniz.</p>
</main>
</body>
</html>