Hyip Member
By signing up to the account
.telegram-button {
position: fixed;
bottom: 120px;
right: 20px;
width: 43px;
height: 43px;
background-color: transparent;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 24px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: background-color 0.3s ease;
}
.telegram-button:hover {
background-color: rgba(0, 136, 204, 0.5);
}
.telegram-button svg {
width: 30px;
height: 30px;
transition: transform 0.3s ease;
}
.telegram-button:hover svg {
transform: rotate(360deg);
}
You can use it for any kind of floating link display.
By signing up to the account