Merge pull request #2 from ComputerCraftr/Development

Add box for social media icons
This commit is contained in:
juFried 2024-02-27 16:13:54 -08:00 committed by GitHub
commit 40cbcd0c5f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 68 additions and 18 deletions

View file

@ -277,6 +277,43 @@ main {
display: flex;
}
.social-icons {
position: relative;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
background: #fff;
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px; /* Optional, for rounded corners */
}
.social-icons ul {
list-style: none;
padding: 0;
margin: 0;
display: flex; /* Displays the icons in a row */
}
.social-icons ul li {
margin-right: 10px; /* Adds some space between icons */
}
.social-icons ul li:last-child {
margin-right: 0; /* Removes margin from the last icon */
}
.social-icons ul li a img {
width: 30px; /* Adjusts the size of the icons */
height: auto;
transition: transform 0.3s ease; /* Smooth scaling effect on hover */
}
.social-icons ul li a:hover img {
transform: scale(1.1); /* Scales the icon on hover */
}
/*Mobile*/
@media screen and (max-width: 1200px) {
/* comes into effect for screens larger than or equal to 481 pixels */

View file

@ -231,24 +231,37 @@
</section>
<section class="footer">
<section id="footer-instagram">
<img src="/Resources/Instagram.png" style="width: 5%" />
<div>teamparadise.1165</div>
</section>
<section id="footer-facebook">
<img
src="/Resources/Facebook.png"
style="width: 5%; padding-bottom: 10px"
/>
<div>Team Paradise 1165</div>
</section>
<section id="footer-gmail">
<img
src="/Resources/Gmail Logo.png"
style="width: 5%; padding-bottom: 10px"
/>
<div>team1165@gmail.com</div>
</section>
<div class="social-icons">
<ul>
<li>
<a
href="https://www.facebook.com/Team1165"
target="_blank"
><img
src="/Resources/Facebook.png"
alt="Facebook"
/></a>
</li>
<li>
<a
href="mailto:team1165@gmail.com"
target="_blank"
><img
src="/Resources/Gmail Logo.png"
alt="Gmail"
/></a>
</li>
<li>
<a
href="https://www.instagram.com/teamparadise.1165"
target="_blank"
><img
src="/Resources/Instagram.png"
alt="Instagram"
/></a>
</li>
</ul>
</div>
</section>
</section>
</main>