-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
69 lines (60 loc) · 1.74 KB
/
styles.css
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
body {
background-color: rgb(128, 164, 197);
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
.glitch {
color: white;
position: relative;
animation: glitch 1s infinite;
}
@keyframes glitch {
0% {
text-shadow: 2px 2px red; /* Ombre rouge en haut à gauche */
transform: translate(2px, 2px); /* Légèrement décalé */
}
25% {
text-shadow: -2px -2px blue; /* Ombre bleue en bas à droite */
transform: translate(-2px, -2px); /* Décalé dans l'autre sens */
}
50% {
text-shadow: 2px -2px green; /* Ombre verte à un angle différent */
transform: translate(2px, -2px); /* Nouveau décalage */
}
75% {
text-shadow: -2px 2px purple; /* Ombre violette */
transform: translate(-2px, 2px); /* Retour à une autre position */
}
100% {
text-shadow: 2px 2px red; /* Retour à la position initiale */
transform: translate(0, 0); /* Le texte revient à sa place */
}
}
@keyframes warningBlink {
0%, 100% {
color: red;
}
50% {
color: yellow;
}
}
.warning-text {
animation: warningBlink 1s infinite;
}
@keyframes buttonanimate {
0% {
border-color: blue;
}
100% {
border-color: red;
}
}
button {
background-color: aqua;
animation: buttonanimate 2s infinite;
border-radius: 10px;
}
input {
background-color: rgb(128, 164, 197);
border-radius: 3px;
animation: buttonanimate 2s infinite;
}