Question
Hello, can you enlarge these icons and make only the location, phone , and email icon flip over to reveal the information with the information
Hello, can you enlarge these icons and make only the location, phone , and email icon flip over to reveal the information with the information on the back...make the linkdien and github clickable... also please make icons color: #17d1ac.....also, PLEASE make sure it sticks to the bottom..thanks! See the photo of what I want and the code below
code:
body{
background-color: white;
padding: 0;
margin: 0;
}
#footer{
background-color: black;
color: white;
}
.footicon{
display: inline;
font-size: 30px;
transition: 0.5s ease;
}
#phonedetail{
display: none;
transition: 0.5s ease;
}
#phone:hover + #phonedetail{
transform: scale(1.07);
display: inline;
}
/* map */
#mapdetail{
display: none;
}
#map:hover + #mapdetail{
/* transform: scale(3.07); */
display: inline;
}
/* github */
#gitdetail{
display: none;
}
#github:hover + #gitdetail{
/* transform: scale(3.07); */
display: inline;
}
/* LinkedIn */
#linkdetail{
display: none;
}
#link:hover + #linkdetail{
/* transform: scale(3.07); */
display: inline;
}
/* Mail */
#maildetail{
display: none;
}
#mail:hover + #maildetail{
transform: scale(1.07);
display: inline;
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started