-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
71 lines (64 loc) · 1.73 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
70
71
@keyframes reveal {
0% {
background-position: 100% 0;
color: #fff; /* Commence par blanc */
}
50% {
color: #000; /* Passe au noir au milieu */
}
100% {
background-position: -100% 0;
color: #fff; /* Revient au blanc à la fin */
}
}
@keyframes oscillate {
0%, 100% {
transform: translateY(-10%);
}
50% {
transform: translateY(10%);
}
}
.signature-container {
position: fixed;
bottom: 10px; /* Ajustez la position selon vos besoins */
width: 100%;
text-align: center;
z-index: 1000; /* Assurez-vous qu'il est au premier plan */
}
.footer-link {
font-size: 0.8rem; /* Petite taille de texte */
text-decoration: none;
display: inline-block;
position: relative;
background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.2));
background-size: 200% 100%;
animation: reveal 3s linear infinite, oscillate 1.5s ease-in-out infinite;
padding: 5px;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
overflow: hidden; /* Assurez-vous que les effets restent dans les limites du texte */
transition: transform 0.3s ease;
}
.footer-link::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 300%;
height: 300%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 70%);
transform: translate(-50%, -50%) scale(0);
transition: transform 0.4s ease;
pointer-events: none;
}
.footer-link:hover {
animation: reveal 3s linear infinite, none; /* Arrête l'oscillation au survol */
transform: scale(1.05); /* Légère agrandissement au survol */
}
.footer-link:active {
transform: scale(0.95); /* Réduction au clic */
}
.footer-link:hover::before {
transform: translate(-50%, -50%) scale(1);
}