Master #42

Merged
sasha-astiadi merged 41 commits from master into development 2024-10-24 13:59:12 +00:00
2 changed files with 9 additions and 1 deletions
Showing only changes of commit 903c9a93e7 - Show all commits

View File

@ -312,6 +312,14 @@ header {
background: #6366f1;
}
.main-button:hover {
color: #fff; /* Keep the text white */
background: #4f46e5; /* A slightly darker shade for the hover state */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Add a soft shadow effect */
transform: scale(1.05); /* Slightly enlarges the button on hover */
transition: all 0.3s ease; /* Smooth transition for hover effects */
}
a:hover{
color: #5e5b59;
}

View File

@ -19,7 +19,7 @@
</div>
</figcaption>
<div class="mt-12 flex items-center justify-center gap-x-6">
<a href="/contact" class="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600">Contact Us</a>
<a href="/contact" class="rounded-md main-button px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm ">Contact Us</a>
</div>
</figure>