email signature style : demo 52

HTML

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

CSS

(Fonts required: Muli)
                        .email-signature{
                            color: #222f42;
                            background: #fff;
                            font-family: 'Muli', sans-serif;
                            padding: 20px 190px 20px 20px;
                            border: 15px solid #222f42;
                            box-shadow: 0 0 0 3px #91b33c inset, 0 0 10px rgba(0, 0, 0, 0.5);
                            position: relative;
                        }
                        .email-signature:before{
                            content: "";
                            background: #91b33c;
                            width: 230px;
                            border: 15px solid #fefdfa;
                            position: absolute;
                            top: -15px;
                            bottom: -15px;
                            right: -16px;
                            clip-path: polygon(0 0, 100% 0, 100% 100%);
                        }
                        .email-signature .signature-icon{
                            width: 150px;
                            height: 150px;
                            border: 10px solid #fff;
                            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
                            overflow: hidden;
                            transform: translateY(-50%);
                            position: absolute;
                            top: 50%;
                            right: 20px;
                            width: 150px;
                        }
                        .email-signature .signature-icon img{
                            width: 100%;
                            height: auto;
                        }
                        .email-signature .signature-details{
                            padding-bottom: 10px;
                            margin-bottom: 12px;
                            border-bottom: 1px solid rgba(0,0,0,0.1);
                        }
                        .email-signature .title{
                            font-size: 22px;
                            font-weight: 800;
                            text-transform: capitalize;
                            margin: 0;
                        }
                        .email-signature .post{
                            font-size: 15px;
                            font-weight: 400;
                            text-transform: lowercase;
                        }
                        .email-signature .signature-content{
                            padding: 0;
                            margin: 0;
                            list-style: none;
                        }
                        .email-signature .signature-content li{
                            font-size: 13px;
                            font-weight: 600;
                            margin: 0 0 7px;
                        }
                        .email-signature .signature-content li:last-child{ margin: 0; }
                        .email-signature .signature-content li span{ margin-right: 6px; }
                        @media screen and (max-width:576px) {
                            .email-signature{ padding: 190px 0 20px 0; }
                            .email-signature:before{
                                height: 200px;
                                width: auto;
                                right: -15px;
                                left: -15px;
                                top: -15px;
                                bottom: auto;
                                clip-path: polygon(0% 0%, 100% 0%, 100% 95%);
                            }
                            .email-signature .signature-icon{
                                transform: translateY(0) translateX(-50%);
                                left: 50%;
                                top: 20px;
                            }
                            .email-signature .signature-details,
                            .email-signature .signature-content{
                                text-align: center;
                            }
                        }
                    
License Terms