email signature style : demo 45

HTML

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

CSS

(Fonts required: Open Sans)
                        .email-signature{
                            color: #fff;
                            background: #3c40c6;
                            font-family: 'Open Sans', sans-serif;
                            text-align: center;
                            padding: 20px 35px;
                            border-radius: 50px 0;
                            overflow: hidden;
                            position: relative;
                        }
                        .email-signature:before,
                        .email-signature:after{
                            content: '';
                            background-color: #fff;
                            height: 25%;
                            width: 5px;
                            border-radius: 0 0 20px 20px;
                            box-shadow: -10px -20px 0 0 #fff, -20px -40px 0 0 #fff;
                            position: absolute;
                            right: 5px;
                            top: 0;
                        }
                        .email-signature:after{
                            box-shadow: 10px -20px 0 0 #fff, 20px -40px 0 0 #fff;
                            transform: rotateX(180deg);
                            left: 5px;
                            right: auto;
                            top: auto;
                            bottom: 0;
                        }
                        .email-signature .signature-icon{
                            width: 170px;
                            height: 170px;
                            padding: 15px;
                            margin: 0 auto 20px;
                            position: relative;
                            z-index: 1;
                        }
                        .email-signature .signature-icon:before{
                            content: '';
                            background-color: #fff;
                            height: 100%;
                            width: 100%;
                            position: absolute;
                            left: 0;
                            top: 0;
                            z-index: -1;
                            clip-path: polygon(0% 15%, 25% 25%, 15% 0%, 85% 0%, 75% 25%, 100% 15%, 100% 85%, 75% 75%, 85% 100%, 15% 100%, 25% 75%, 0% 85%);
                        }
                        .email-signature .signature-icon img{
                            width: 100%;
                            height: auto;
                            border: 3px solid #fff;
                            box-shadow: 0 0 5px #555;
                        }
                        .email-signature .icon{
                            padding: 0;
                            margin: 0 0 15px;
                            list-style: none;
                        }
                        .email-signature .icon li{
                            display: inline-block;
                            margin: 0 3px;
                        }
                        .email-signature .icon li a{
                            color: #3c40c6;
                            background: #fff;
                            font-size: 15px;
                            line-height: 35px;
                            width: 35px;
                            height: 35px;
                            border-radius: 50%;
                            display: block;
                            transition: all 0.3s ease 0s;
                        }
                        .email-signature .icon li a:hover{
                            color: #fff;
                            background: #3c40c6;
                            box-shadow: 0 0 5px #fff
                        }
                        .email-signature .signature-details{ margin: 0 0 15px; }
                        .email-signature .signature-details:before,
                        .email-signature .signature-details:after{
                            content: '';
                            background-color: #fff;
                            height: 2px;
                            width: 40%;
                            margin: 0 auto 15px;
                            display: block;
                        }
                        .email-signature .signature-details:after{
                            width: 60%;
                            margin: 15px auto 0;
                        }
                        .email-signature .title{
                            font-size: 24px;
                            font-weight: 600;
                            text-transform: uppercase;
                            margin: 0 0 5px;
                        }
                        .email-signature .title span{ font-weight: 500; }
                        .email-signature .post{
                            font-size: 14px;
                            text-transform: capitalize;
                            letter-spacing: 1px;
                        }
                        .email-signature .signature-content{
                            padding: 0;
                            margin: 0;
                            list-style: none;
                        }
                        .email-signature .signature-content li{
                            font-size: 14px;
                            margin: 0 0 7px;
                        }
                        .email-signature .signature-content li:after{
                            content: '';
                            height: 2px;
                            width: 30%;
                            margin: 7px auto 0;
                            border-top: 2px dotted rgba(255,255,255,0.2);
                            display: block;
                        }
                        .email-signature .signature-content li:last-child{ margin: 0; }
                        .email-signature .signature-content li:last-child:after{ display: none; }
                        .email-signature .signature-content li span{
                            font-size: 13px;
                            margin-right: 6px;
                        }
                    
License Terms