Ajout d'un avertissement sur la page carte

This commit is contained in:
leosw
2025-08-18 18:56:59 +02:00
parent 54226e3cbd
commit 83df17669d
2 changed files with 43 additions and 0 deletions

View File

@@ -16,6 +16,47 @@ footer {
z-index: 10000;
}
#advert {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 9999;
background: rgba(50,50,50,0.8);
color: #ddd;
padding: 20px;
border-bottom: 6px solid blue;
text-align: center;
}
#advert a{
color: white;
}
#advert .dots span {
opacity: 0;
animation: appear 1.5s infinite;
}
#advert .dots span:nth-child(1) {
animation-delay: 0s;
}
#advert .dots span:nth-child(2) {
animation-delay: 0.3s;
}
#advert .dots span:nth-child(3) {
animation-delay: 0.6s;
}
@keyframes appear {
0%, 80%, 100% {
opacity: 0;
}
40% {
opacity: 1;
}
}
/*****************************************
Controls of the map
*****************************************/