email signature style : demo 57

HTML

(Icon Fonts Used : Fontawesome & CSS Framwork: Bootstrap)
                        
                        

CSS

(Fonts required: Muli)
                        .email-signature{
                            background: linear-gradient(to right bottom, #fff 49%, #f5f5f5 50%);
                            font-family: 'Poppins', sans-serif;
                            width: 260px;
                            padding: 15px 10px;
                            margin: 0 auto;
                            border-left: 25px solid #20bf6b;
                            box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
                            border-radius: 5px;
                        }
                        .email-signature .signature-icon{
                            color: #333;
                            background-color: #fff;
                            font-size: 95px;
                            text-align: center;
                            line-height: 116px;
                            height: 120px;
                            width: 120px;
                            margin: 0 auto 15px;
                            border: 5px solid #20bf6b;
                            box-shadow:  0 0 10px rgba(0,0,0,0.7) inset;
                            border-radius: 50%;
                        }
                        .email-signature .signature-details{
                            text-align: center;
                            margin: 0 0 20px;
                        }
                        .email-signature .title{
                            color: #20bf6b;
                            font-size: 27px;
                            font-weight: 500;
                            text-transform: capitalize;
                            margin: 0;
                        }
                        .email-signature .post{
                            color: #333;
                            font-size: 15px;
                            font-weight: 500;
                            text-transform: uppercase;
                        }
                        .email-signature .signature-content{
                            padding: 0;
                            margin: 0;
                            list-style: none;
                        }
                        .email-signature .signature-content li{
                            color: #333;
                            font-size: 13px;
                            font-weight: 500;
                            margin-bottom: 20px;
                        }
                        .email-signature .signature-content li span{
                            color: #20bf6b;
                            font-size: 15px;
                            margin: 0 5px;
                        }
                        .email-signature .icon{
                            padding: 0;
                            margin: 0;
                            list-style: none;
                        }
                        .email-signature .icon li{
                            display: inline-block;
                            margin: 0 7px;
                        }
                        .email-signature .icon li a{
                            color: #20bf6b;
                            font-size: 17px;
                            transition: all 0.3s ease 0s;
                        }
                        .email-signature .icon li a:hover{
                            color: #333;
                            text-shadow: 0 0 3px #20bf6b;
                        }
                        @media screen and (max-width:300px) {
                            .email-signature{ width: 100%; }
                        }
                    
License Terms