.email-signature{
background: #2f3430;
font-family: 'Poppins', sans-serif;
padding: 20px;
box-shadow: 0 20px 20px -20px rgba(0, 0, 0, 0.8);
position: relative;
}
.email-signature:before,
.email-signature:after{
content: "";
background: #01bec4;
width: 15px;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.email-signature:after{
width: 20px;
height: 70%;
border-radius: 20px 0 0 20px;
transform: translateY(-50%);
top: 50%;
left: auto;
right: 0;
}
.email-signature .signature-details{
width: 55%;
padding: 35px 0 15px 85px;
display: inline-block;
position: relative;
}
.email-signature .signature-icon{
width: 125px;
height: 120px;
border: 3px solid #000;
border-radius: 15px 15px;
overflow: hidden;
transform: translateY(-50%) rotate(45deg);
position: absolute;
top: 50%;
left: 25px;
}
.email-signature .signature-icon img{
width: 135%;
height: auto;
margin: -20px 0 0 -20px;
transform: rotate(-45deg);
}
.email-signature .inner-content{
color: #fff;
background: #00bfc7;
text-align: right;
padding: 10px 20px 10px 10px;
margin: 0 0 15px;
border-radius: 0 30px 30px 0;
}
.email-signature .title{
font-size: 25px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
margin: 0;
}
.email-signature .post{
font-size: 14px;
font-weight: 400;
text-transform: capitalize;
letter-spacing: 1px;
}
.email-signature .social-icon{
text-align: right;
padding: 0;
margin: 0 15px 0 0;
list-style: none;
}
.email-signature .social-icon li{
display: inline-block;
margin: 0 3px;
}
.email-signature .social-icon li a{
color: #fff;
background-color: #EA2027;
font-size: 13px;
text-align: center;
line-height: 28px;
text-shadow: 2px 2px 1px rgba(0, 0, 0, .4);
height: 28px;
width: 28px;
border-radius: 50%;
display: block;
transition: all 0.3s ease 0s;
}
.email-signature .social-icon li:nth-child(2) a{ background: #009432; }
.email-signature .social-icon li:nth-child(3) a{ background: #0652DD; }
.email-signature .social-icon li:nth-child(4) a{ background: #EE5A24; }
.email-signature .social-icon li a:hover{
color: #EA2027;
background-color: #fff;
text-shadow: 2px 2px 1px rgba(0, 0, 0, .2);
}
.email-signature .social-icon li:nth-child(2) a:hover{ color: #0c0c0c; }
.email-signature .social-icon li:nth-child(3) a:hover{ color: #0652DD; }
.email-signature .social-icon li:nth-child(4) a:hover{ color: #EE5A24; }
.email-signature .signature-content{
width: 44%;
padding: 30px 10px 25px 20px;
margin: 0;
list-style: none;
vertical-align: top;
display: inline-block;
}
.email-signature .signature-content li{
color: #fff;
font-size: 13px;
margin: 0 0 10px;
}
.email-signature .signature-content li:last-child{ margin-bottom: 0; }
@media screen and (max-width:767px) {
.email-signature{ padding: 20px 20px 30px; }
.email-signature:before{
width: 100%;
height: 15px;
}
.email-signature:after{
width: 70%;
height: 20px;
border-radius: 20px 20px 0 0;
transform: translateY(0) translateX(-50%);
top: auto;
bottom: 0;
left: 50%;
right: auto;
}
.email-signature .signature-details{
width: 100%;
padding: 150px 0 0;
margin: 0 0 15px;
}
.email-signature .signature-icon{
transform: translateY(0) translateX(-50%) rotate(45deg);
top: 25px;
left: 50%;
}
.email-signature .inner-content{
text-align: center;
padding: 25px 10px 10px;
border-radius: 30px;
}
.email-signature .social-icon{ text-align: center; }
.email-signature .signature-content{
text-align: center;
width: 100%;
padding: 15px 15px 5px;
}
}