email signature style : demo 51

HTML

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

CSS

(Fonts required: Ubuntu)
                        .email-signature{
                            background: #fff;
                            font-family: 'Ubuntu', sans-serif;
                            padding: 40px 15px 10px 230px;
                            box-shadow: 0 0 10px -5px #555;
                            overflow: hidden;
                            position: relative;
                        }
                        .email-signature:before,
                        .email-signature:after{
                            content: '';
                            background: radial-gradient(#7509E7,#7509E7,#2E41FD);
                            height: 400px;
                            width: 400px;
                            border-radius: 50%;
                            position: absolute;
                            left: 0;
                            bottom: -160px;
                            left: -215px;
                        }
                        .email-signature:after{
                            background: radial-gradient(#7509E7,#7509E7,#2E41FD);
                            height: 330px;
                            width: 330px;
                            border: 25px solid #fff;
                            box-shadow: 0 0 10px rgba(0,0,0,0.5);
                        }
                        .email-signature .signature-icon{
                            color: #7509E7;
                            background-color: #fff;
                            font-size: 70px;
                            text-align: center;
                            line-height: 150px;
                            height: 150px;
                            width: 150px;
                            border-radius: 50%;
                            box-shadow: 0 0 10px #555;
                            position: absolute;
                            left: 30px;
                            bottom: 30px;
                            z-index: 1;
                        }
                        .email-signature .signature-details{ margin: 0 0 10px 0; }
                        .email-signature .signature-details:before{
                            content: '';
                            background: radial-gradient(#7509E7,#7509E7,#2E41FD);
                            height: 100px;
                            width: 100px;
                            border-radius: 50%;
                            position: absolute;
                            top: -40px;
                            right: -40px;
                        }
                        .email-signature .title{
                            color: #7509E7;
                            font-size: 27px;
                            font-weight: 700;
                            text-transform: uppercase;
                            margin: 0;
                        }
                        .email-signature .title span{
                            color: #222;
                            font-weight: 500;
                        }
                        .email-signature .post{
                            color: #555;
                            font-size: 13px;
                            font-weight: 400;
                            letter-spacing: 3px;
                            text-transform: uppercase;
                        }
                        .email-signature .signature-content{
                            font-size: 0;
                            padding: 0;
                            margin: 0;
                            list-style: none;
                        }
                        .email-signature .signature-content li{
                            color: #666;
                            font-size: 13px;
                            letter-spacing: 0.5px;
                            margin: 0 0 4px;
                        }
                        .email-signature .signature-content li span{
                            font-size: 12px;
                            margin: 0 5px 0 0;
                        }
                        .email-signature .icon{
                            text-align: right;
                            padding: 0;
                            margin: 0;
                            list-style: none;
                        }
                        .email-signature .icon li{
                            margin: 0 1px;
                            display: inline-block;
                        }
                        .email-signature .icon li a{
                            color: #888;
                            font-size: 13px;
                            text-align: center;
                            line-height: 25px;
                            height: 25px;
                            width: 25px;
                            border: 1px solid #888;
                            border-radius: 50%;
                            transition: all 0.3s ease 0s;
                        }
                        .email-signature .icon li a:hover{ color: #7509E7; }
                        @media screen and (max-width:576px) {
                            .email-signature{ padding: 190px 10px 10px; }
                            .email-signature:before,
                            .email-signature:after{
                                transform: translateX(-50%);
                                bottom: auto;
                                top: -240px;
                                left: 50%;
                            }
                            .email-signature .signature-details,
                            .email-signature .signature-content{
                                text-align: center;
                                margin: 0 0 15px;
                            }
                            .email-signature .signature-details:before{ display: none; }
                            .email-signature .signature-icon{
                                transform: translateX(-50%);
                                left: 50%;
                                bottom: auto;
                                top: 20px;
                            }
                            .email-signature .icon{ text-align: center; }
                        }
                    
License Terms