-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpausedediffusion.html
More file actions
75 lines (66 loc) · 1.6 KB
/
Copy pathpausedediffusion.html
File metadata and controls
75 lines (66 loc) · 1.6 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SOCO TV - Pause de diffusion </title>
<style>
body {
background-color: #000;
color: #fff;
font-family: "Segoe UI", sans-serif;
height: 100vh;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
overflow: hidden;
}
.logo {
width: 120px;
height: 120px;
margin-bottom: 20px;
animation: rotate 5s linear infinite;
filter: drop-shadow(0 0 10px #fff);
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
animation: pulse 2s infinite;
}
p {
color: #aaa;
font-size: 1.1rem;
margin-top: 0;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
.loader {
margin-top: 30px;
width: 60px;
height: 60px;
border: 5px solid rgba(255,255,255,0.2);
border-top-color: #fff;
border-radius: 50%;
animation: spin 1.2s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
</style>
</head>
<body>
<img src="logo.png" alt="SOCO TV" class="logo">
<h1>Pause de diffusion... </h1>
<p>Le canal a été endommagé. La chaîne concernée va changer de canal, le plus proche ou un canal aléatoire.</p>
<div class="loader"></div>
</body>
</html>