-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslowko-support.html
More file actions
100 lines (99 loc) · 3.12 KB
/
slowko-support.html
File metadata and controls
100 lines (99 loc) · 3.12 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
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="2;url=slowko.html">
<title>Przekierowanie — Słówko</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
background: radial-gradient(circle at 50% 30%, rgba(33, 74, 60, 0.12) 0%, rgba(5, 5, 5, 0) 60%);
}
.redirect-container {
max-width: 520px;
padding: 48px;
text-align: center;
background: var(--bg-surface);
border: 1px solid var(--bg-glass-border);
border-radius: var(--radius-lg);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.redirect-icon {
width: 80px;
height: 80px;
margin: 0 auto 24px;
background: linear-gradient(135deg, #214A3C, #2d8f6f);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
}
.redirect-title {
font-size: 1.75rem;
margin-bottom: 16px;
color: var(--text-primary);
}
.redirect-text {
font-size: 1rem;
color: var(--text-secondary);
line-height: 1.6;
margin-bottom: 32px;
}
.redirect-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 28px;
background: #2d8f6f;
color: #ffffff;
text-decoration: none;
border-radius: 12px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 16px rgba(78, 204, 163, 0.25);
}
.redirect-btn:hover {
background: #3ba88a;
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(78, 204, 163, 0.35);
}
.countdown {
display: inline-block;
font-weight: 600;
color: #4ecca3;
}
</style>
</head>
<body>
<div class="redirect-container">
<div class="redirect-icon">🔄</div>
<h1 class="redirect-title">Strona została przeniesiona</h1>
<p class="redirect-text">
Zawartość tej strony została przeniesiona na nową stronę Słówko.<br>
Automatyczne przekierowanie za <span class="countdown" id="countdown">2</span> sekundy...
</p>
<a href="slowko.html" class="redirect-btn">
Przejdź teraz →
</a>
</div>
<script>
let seconds = 2;
const countdownEl = document.getElementById('countdown');
const interval = setInterval(() => {
seconds--;
if (seconds > 0) {
countdownEl.textContent = seconds;
} else {
clearInterval(interval);
}
}, 1000);
</script>
</body>
</html>