-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrogella.html
56 lines (54 loc) · 1.52 KB
/
rogella.html
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ROGELLA</title>
<style>
.loader {
position: absolute;
width: 100%;
height: 100%;
background: #000;
display: flex;
justify-content: center;
align-items: center;
}
.lettre {
color: #484848;
font-size: 80px;
letter-spacing: 15px;
margin-bottom: 150px;
animation: flash 2s linear infinite;
}
@keyframes flash {
0% {
color:red;
text-shadow: 0 0 7px red;
}
90% {
color: white;
text-shadow: none;
}
100% {
color: red;
text-shadow: 0 0 7px red;
}
}
.lettre{
animation-delay: 2.5s;
}
</style>
</head>
<body>
<div class="loader">
<span class="lettre">R</span>
<span class="lettre">O</span>
<span class="lettre">G</span>
<span class="lettre">E</span>
<span class="lettre">L</span>
<span class="lettre">L</span>
<span class="lettre">A</span>
</div>
</body>
</html>