email signature style : demo 55

HTML

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

CSS

(Fonts required: Muli)
                        :root{ --color1: #E9E9E9; }
                        .email-signature{
                            background: var(--color1);
                            font-family: 'Muli', sans-serif;
                            text-align: center;
                            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
                            position: relative;
                            z-index: 1;
                        }
                        .email-signature:before{
                            content: '';
                            background: linear-gradient(to right,#7F00FF,#E100FF);
                            height: 100%;
                            width: 60%;
                            border-left: 7px solid var(--color1);
                            box-shadow: -10px 0 0 #7F00FF;
                            position: absolute;
                            top: 0;
                            right: 0;
                            z-index: -1;
                        }
                        .email-signature .signature-details{
                            color: #4D6067;
                            width: 40%;
                            padding: 15px;
                            display: inline-block;
                        }
                        .email-signature .title{
                            font-size: 20px;
                            font-weight: 700;
                            text-transform: uppercase;
                            margin: 0 0 3px;
                        }
                        .email-signature .post{
                            font-size: 15px;
                            font-weight: 600;
                            text-transform: capitalize;
                            margin: 0 0 15px;
                            display: block;
                        }
                        .email-signature .signature-icon{
                            font-size: 45px;
                            line-height: 80px;
                            height: 94px;
                            width: 80%;
                            margin: 0 auto;
                            border: 3px dashed #7F00FF;
                        }
                        .email-signature .icon{
                            width: 60%;
                            padding: 10px;
                            margin: 0;
                            list-style: none;
                            vertical-align: top;
                            display: inline-block;
                            position: relative;
                            z-index: 1;
                        }
                        .email-signature .icon:before{
                            content: '';
                            background-color: var(--color1);
                            height: 100%;
                            width: 70%;
                            border-radius: 0 0 50px 50px;
                            transform: translateX(-50%);
                            position: absolute;
                            left: 50%;
                            top: 0;
                            z-index: -1;
                        }
                        .email-signature .icon li{
                            display: inline-block;
                            margin: 0 5px;
                        }
                        .email-signature .icon li a{
                            color: #fff;
                            background: #4D6067;
                            font-size: 14px;
                            line-height: 28px;
                            width: 28px;
                            height: 28px;
                            border-radius: 50px;
                            transition: all 0.3s ease 0s;
                        }
                        .email-signature .icon li a:hover{
                            color: #fff;
                            background: #7F00FF;
                            box-shadow: 0 0 5px rgba(0,0,0,0.5);
                        }
                        .email-signature .signature-content{
                            color: #fff;
                            width: 60%;
                            padding: 15px;
                            margin: 0;
                            list-style: none;
                            vertical-align: top;
                            display: inline-block;
                        }
                        .email-signature .signature-content li{
                            font-size: 14px;
                            font-weight: 600;
                            letter-spacing: 0.5px;
                            margin: 0 0 10px;
                        }
                        .email-signature .signature-content li:last-child{ margin: 0; }
                        .email-signature .signature-content li span{
                            font-size: 11px;
                            margin-right: 3px;
                        }
                        .email-signature .signature-website{
                            font-size: 14px;
                            font-weight: 600;
                            width: 60%;
                            padding: 10px;
                            display: inline-block;
                            position: relative;
                            z-index: 1;
                        }
                        .email-signature .signature-website:before{
                            content: '';
                            background-color: var(--color1);
                            height: 100%;
                            width: 70%;
                            border-radius: 50px 50px 0 0;
                            transform: translateX(-50%);
                            position: absolute;
                            left: 50%;
                            top: 0;
                            z-index: -1;
                        }
                        @media screen and (max-width:576px) {
                            .email-signature:before{
                                background: linear-gradient(to bottom,#7F00FF,#E100FF);
                                height: 48.5%;
                                width: 100%;
                                border-left: none;
                                box-shadow: none;
                                top: auto;
                                bottom: 0;
                            }
                            .email-signature .signature-details,
                            .email-signature .signature-content,
                            .email-signature .icon,
                            .email-signature .signature-website{
                                width: 100%;
                            }
                            .email-signature .signature-details{ margin: 0 0 20px; }
                        }
                    
License Terms