Whatsapp Icon Added
This commit is contained in:
parent
e71054b0e1
commit
25fad790e4
@ -674,6 +674,11 @@
|
||||
<div class="corces"></div>
|
||||
</section>
|
||||
|
||||
<div class="whatsapp-icon" onclick="getInTouch()">
|
||||
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg" alt="WhatsApp" />
|
||||
</div>
|
||||
|
||||
|
||||
<footer class="footer">
|
||||
<div class="footer-container">
|
||||
<div class="footer-section company-section">
|
||||
|
||||
27
main.css
27
main.css
@ -2214,4 +2214,29 @@
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.whatsapp-icon {
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
cursor: pointer;
|
||||
z-index: 1000;
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
.whatsapp-icon:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.whatsapp-icon img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user