<div class="wrapper">
<div class="battery icon"></div>
<div class="hourglass icon"></div>
</div>
<footer>
<p>
Created with <i class="fa fa-heart"></i> by
<a target="_blank" href="https://codepen.io/ahmadbassamemran/">Ahmad Emran</a>
Follow me :
<a target="_blank" href="https://www.instagram.com/ahmadbassamemran/"><i class="fab fa-instagram"></i></a>
<a target="_blank" href="https://www.linkedin.com/in/ahmademarn/"><i class="fab fa-linkedin"></i></a>
<a target="_blank" href="https://codepen.io/ahmadbassamemran/"><i class="fab fa-codepen"></i></a>
<a target="_blank" href="https://dev.to/ahmadbassamemran"><i class="fab fa-dev"></i></a>
<a target="_blank" href="https://twitter.com/ahmadbassamemra"><i class="fab fa-twitter-square"></i></a>
</p>
</footer>
<div class="youtubeBtn">
<a target="_blank" href="https://www.youtube.com/AhmadEmran?sub_confirmation=1">
<span>Watch on YouTube</span>
<i class="fab fa-youtube"></i>
</a>
</div>
body{
padding: 0px;
margin:0px;
background-color: #fcdc29;
height:100vh;
}
.wrapper{
position: absolute;
top: 50%;
left:50%;
transform: translate(-50%, -50%);
}
.icon{
position: relative;
text-align: center;
display: inline-block;
font-family: 'Font Awesome 5 Free';
font-weight: 900;
font-size: 50px;
color:#ff6f61;
}
.battery{
width: 100px;
height: 50px;
}
.battery:before{
content: '\f244';
display: block;
animation: iconAnimation 3s infinite;
}
@keyframes iconAnimation{
0%{
content: '\f244';
}
20%{
content: '\f243';
}
40%{
content: '\f242';
}
60%{
content: '\f241';
}
80%{
content: '\f240';
}
}
.hourglass{
width: 100px;
height: 50px;
}
.hourglass:before{
content: '\f251';
animation: iconAnimation2 3s infinite;
display: block;
}
@keyframes iconAnimation2{
0%{
content: '\f251';
transform: rotate(0deg);
}
50%{
content: '\f252';
transform: rotate(0deg);
}
75%{
content: '\f253';
transform: rotate(0deg);
}
100%{
content: '\f253';
transform: rotate(180deg);
}
}
/* footer */
footer {
background-color: #222;
color: #fff;
font-size: 14px;
bottom: 0;
position: fixed;
left: 0;
right: 0;
text-align: center;
z-index: 999;
}
footer p {
margin: 10px 0;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
footer .fa-heart{
color: red;
}
footer .fa-dev{
color: #fff;
}
footer .fa-twitter-square{
color:#1da0f1;
}
footer .fa-instagram{
color: #f0007c;
}
fotter .fa-linkedin{
color:#0073b1;
}
footer .fa-codepen{
color:#fff
}
footer a {
color: #3c97bf;
text-decoration: none;
margin-right:5px;
}
.youtubeBtn{
position: fixed;
left: 50%;
transform:translatex(-50%);
bottom: 45px;
cursor: pointer;
transition: all .3s;
vertical-align: middle;
text-align: center;
display: inline-block;
}
.youtubeBtn i{
font-size:20px;
float:left;
}
.youtubeBtn a{
color:#ff0000;
text-shadow: 0px 2px 5px rgba(0,0,0,.5);
animation: youtubeAnim 1000ms linear infinite;
float:right;
}
.youtubeBtn a:hover{
color:#c9110f;
transition:all .3s ease-in-out;
text-shadow: none;
}
.youtubeBtn i:active{
transform:scale(.9);
transition:all .3s ease-in-out;
}
.youtubeBtn span{
font-family: 'Lato';
font-weight: bold;
color: #000;
display: block;
font-size: 12px;
float: right;
line-height: 20px;
padding-left: 5px;
}
@keyframes youtubeAnim{
0%,100%{
color:#c9110f;
}
50%{
color:#ff0000;
}
}
/* footer */
This Pen doesn't use any external JavaScript resources.