diff --git a/nearby.html b/nearby.html index cf27f98..dd1a551 100644 --- a/nearby.html +++ b/nearby.html @@ -108,6 +108,124 @@ .dark-mode h2 { color: #e7f3fe; } + footer { + background-color: #C4D7FF; + color: #f3f4f6; + text-align: center; + padding: 15px 0; + width: 100%; + } + footer a{ + text-decoration: none; + color: #f3f4f6; + } + + .checkbtn { + font-size: 30px; + color: #333; + float: right; + line-height: 80px; + margin-right: 40px; + cursor: pointer; + display: none; + + } + + #check { + display: none; + } + + /* Added the hover animation on the footer social icons */ + .social-icon { + transition: transform 0.3s ease; + /* Smooth transition effect */ + } + + .social-icon:hover { + transform: scale(1.3); + /* Scale the element to 1.3 times its size */ + } + + .fa-facebook:hover { + color: blue; + /* Icon color change to blue on hover */ + } + + .fa-x-twitter:hover { + color: black; + /* Icon color change to black on hover */ + } + + .fa-instagram:hover { + color: orangered; + /* Icon color change to orangered on hover */ + } + + .fa-linkedin-in:hover { + color: rgb(16, 13, 195); + /* Icon color change to rgb(16, 13, 195) on hover */ + } + + .feature p { + color: #555; + } + + .team-feature { + background-color: #e7ffe7; + padding: 20px; + display: flex; + align-items: center; + text-align: left; + border-radius: 10px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); + grid-column: 1 / -1; + } + + .team-feature img { + width: 150px; + height: auto; + margin-right: 20px; + border-radius: 10px; + } + + .contact-feature { + background-color: #f2e4aa; + padding: 20px; + display: flex; + align-items: center; + text-align: left; + border-radius: 10px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); + grid-column: 1 / -1; + } + + .contact-feature img { + width: 150px; + height: auto; + margin-right: 20px; + border-radius: 10px; + } + + @keyframes fadeIn { + from { + opacity: 0; + } + + to { + opacity: 1; + } + } + + + + .container { + width: 98vw; + } + + #contact-hvr:hover { + background: none; + } + @@ -353,6 +471,198 @@