feat: Dernière modification
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-05-15 01:32:24 +02:00
parent c6880dc188
commit 5674e2d946
22 changed files with 25 additions and 6 deletions

View File

@ -62,6 +62,7 @@
margin: .6rem;
padding: .6rem;
font-size: 1rem;
box-shadow: 1px 1px var(--color-red3),-1px -1px var(--color-red3),1px -1px var(--color-red3),-1px 1px var(--color-red3);
}
h1 {
@ -72,6 +73,7 @@
a.active {
text-decoration: underline;
box-shadow: 1px 1px var(--color-yellow2),-1px -1px var(--color-yellow2),1px -1px var(--color-yellow2),-1px 1px var(--color-yellow2);
}
}

View File

@ -173,6 +173,24 @@ body {
display: flex;
align-items: center;
max-width: 500px;
&:hover img {
animation: tiltBottle 1s 1 linear;
}
@keyframes tiltBottle{
20%{
transform: rotate(2deg);
}
40%{
transform: rotate(-2deg);
}
60%{
transform: rotate(2deg);
}
80%{
transform: rotate(-2deg);
}
}
}
.gamme img {
width: var(--bottle-width);