CSS text effect style : demo 168

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Fredoka One)
                    .text-effect{
                        color: #1abc9c;
                        font-family: 'Fredoka One', cursive;
                        font-size: 100px;
                        text-align: center;
                        text-shadow: #1abc9c 0 0 1px, #19B394 0 4px 3px, #1AAD90 0 9px 3px, 
                                    #16a085 0 12px 1px, rgba(0,0,0,0.2) 0 14px 3px, rgba(0,0,0,0.1) 
                                        0 20px 10px, rgba(0,0,0,0.2) 0 15px 80px;
                        animation: animate 1.5s ease-in-out infinite alternate;
                    }
                    @keyframes animate{
                        100%{
                            color: #fff;
                            text-shadow: #fff 0 0 1px, #eee 0 4px 3px, #ddd 0 9px 3px, 
                                        #ccc 0 12px 1px, rgba(0,0,0,0.2) 1px 14px 3px, 
                                        rgba(0,0,0,0.2) 2px 20px 10px, rgba(0,0,100,0.3) 2px 15px 90px;
                        }
                    }
                    @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: 45px; }
                    }
                    
License Terms