Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed contact page hover issue in quick links and contact info section. #916

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
103 changes: 103 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,116 @@
}
}
.map {


width: 860px;
height: 400px;
border: 3px 3px 3px 3px solid #090202;
border-radius: 5px;
margin: 20px auto;
object-fit: cover;
}

.translate-btn {
background-color: #2980b9;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}

.translate-btn:hover {
background-color: #3498db;
}

.g-translate-popup {
position: fixed;
top: 60px;
right: 20px;
background-color: white;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
z-index: 1000;
padding: 10px;
}

.buttons {
display: flex;
align-items: center;
gap: 10px;
}

.chatbot-container {
position: fixed;
transition: right 0.3s ease;
bottom: 20px;
right: 7rem;
z-index: 1000;
}

.chatbot-button {
background-color: #007bff;
border: none;
border-radius: 50%;
padding: 10px;
/* Smaller padding */
cursor: pointer;
position: relative;
width: 50px;
/* Adjusted size */
height: 50px;
/* Adjusted size */
right: -60px;
}

.chatbot-button img {
width: 30px;
/* Adjusted image size */
height: 30px;
/* Adjusted image size */
}

.tooltip-text {
display: none;
/* Hide by default */
position: absolute;
bottom: 100%;
/* Position above the button */
right: 50%;
transform: translateX(50%);
background-color: #333;
/* Background color for tooltip */
color: #fff;
/* Tooltip text color */
padding: 5px;
border-radius: 5px;
white-space: nowrap;
/* Prevent text from wrapping */
}

.chatbot-button:hover .tooltip-text {
display: block;
/* Show on hover */
}
ul li a:hover{
color: blue !important;
}
a:hover{
color: blue !important;
}

=======
width: 860px;
height: 400px;
border: 3px 3px 3px 3px solid #090202;
border-radius: 5px;
margin: 20px auto;
object-fit: cover;
}

</style>
</head>

Expand Down