CSS text effect style : demo 184

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Acme)
                    .text-effect{
                        color: #fff;
                        font-family: 'Allerta Stencil', sans-serif;
                        font-size: 100px;
                        font-weight: 400;
                        text-align: center;
                        animation: neon 1s ease infinite;
                    }
                    @keyframes neon{
                        0%,100%{
                            color: #f5efcb;
                            text-shadow: 0 0 10px #ef00e3a8, 0 0 20px #ef00e3a8, 0 0 20px #ef00e3a8,
                                        0 0 20px #ef00e3a8, 0 0 2px #fed128, 2px 2px 2px #806914;
                        }
                        50%{
                            color: #eda0d3;
                            text-shadow: 0 0 2px #800e0b, 0 0 5px #800e0b, 0 0 5px #800e0b, 
                                        0 0 5px #800e0b, 0 0 2px #800e0b, 4px 4px 2px #40340a;
                        }
                    }
                    @media only screen and (max-width: 990px){
                        .text-effect{ font-size: 80px; }
                    }
                    @media only screen and (max-width: 767px){
                        .text-effect{ font-size: 60px; }
                    }
                    @media only screen and (max-width: 576px){
                        .text-effect{ font-size: 35px; }
                    }
                    
License Terms