<div class="container">
<div class="button">
<div class="icon">
<i class="fa fa-floppy-o"></i>
</div>
</div>
<p>Save Button</p>
</div>
$blue : #91CCC2;
body{
background-color:$blue;
}
.container{
width:250px;
height:100px;
margin: 20% auto;
color:white;
font-size:1rem;
font-family:Arial,Helvetica Neue,Helvetica,sans-serif;
}
p{
text-align:center;
}
.button{
font-size:1.5rem;
border:2px solid white;
border-radius:100px;
width:40px;
height:40px;
padding:5px;
margin: 10% auto;
transition: .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.icon{
position: relative;
top: 50%;
transform: translateY(-50%);
text-align:center;
}
//Hover
//-----------------------
.button:hover{
width:125px;
background-color: white;
box-shadow: 0px 5px 5px rgba(0,0,0,0.2);
color: $blue;
transition:.3s;
}
.button:active{
box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
transition: .05s
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.