plakasync-pulse / style.css
alitan37's picture
güzel, peki https://emlak.alitan.net.tr/odbc/plakaListe.json dosyasının oluşturulma tarihini de alıp bunu en son güncelleme zamanı olarak bağlantı durumunun altına ekleyebilir misin. "Veri güncelleme kontrol paneli" yerine "Plaka Listesi Güncelleme Paneli" yaz. "Plaka Pulse Pro" gerek yok. Görselliği biraz daha değiştir daha keskin renkler kullan
f116a1e verified
raw
history blame contribute delete
937 Bytes
/* Custom animations */
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-5px); }
100% { transform: translateY(0px); }
}
.floating {
animation: float 3s ease-in-out infinite;
}
/* Custom tooltip */
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltip-text {
visibility: hidden;
width: 120px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -60px;
opacity: 0;
transition: opacity 0.3s;
}
.tooltip:hover .tooltip-text {
visibility: visible;
opacity: 1;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}