fix queue execute scraping syncronize simbg add new column to resume
This commit is contained in:
@@ -3,32 +3,57 @@
|
||||
|
||||
<style>
|
||||
/* .floating-icon {
|
||||
position: fixed;
|
||||
right: 30px;
|
||||
bottom: 70px;
|
||||
background: white;
|
||||
padding: 10px;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||||
cursor: pointer;
|
||||
z-index: 1000;
|
||||
} */
|
||||
.floating-icon {
|
||||
position: fixed;
|
||||
right: 40px;
|
||||
bottom: 100px;
|
||||
width: 70px; /* Sesuaikan ukuran */
|
||||
height: 70px; /* Sesuaikan ukuran */
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
background: white;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||||
cursor: pointer;
|
||||
z-index: 1000;
|
||||
background-image: url('/images/iconchatbot.jpeg'); /* Path ke gambar */
|
||||
background-size: cover; /* Agar gambar menyesuaikan */
|
||||
background-position: center; /* Memusatkan gambar */
|
||||
background-image: url('/images/iconchatbot.jpeg');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
} */
|
||||
|
||||
|
||||
.floating-icon {
|
||||
position: fixed;
|
||||
right: 20px;
|
||||
bottom: 20px;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
background: white;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
||||
cursor: pointer;
|
||||
z-index: 1000;
|
||||
background-image: url('/images/iconchatbot.jpeg');
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
.floating-icon:hover {
|
||||
transform: scale(1.1);
|
||||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
@keyframes bounce {
|
||||
0%, 100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
}
|
||||
|
||||
.floating-icon.animate {
|
||||
animation: bounce 1s infinite;
|
||||
}
|
||||
</style>
|
||||
|
||||
<head>
|
||||
|
||||
Reference in New Issue
Block a user