"button hover effects"
Bootstrap 4.1.1 Snippet by ALIMUL AL RAZY

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <a class="btn" href="#">Explore Us</a> <a class="btn" href="#">Read More</a> </div> </div>
@import url('https://fonts.googleapis.com/css?family=PT+Sans'); .btn { display: inline-block; background: transparent; text-transform: uppercase; font-weight: 500; font-style: normal; font-size: 0.625rem; letter-spacing: 0.3em; color: rgba(223,190,106,0.7); border-radius: 0; padding: 18px 80px 20px; transition: all 0.7s ease-out; background-image: linear-gradient(to right, #2b5876 0%, #4e4376 51%, #2b5876 100%); background-position: 1% 50%; background-size: 300% 300%; text-decoration: none; margin: 0.625rem; border: none; border: 1px solid rgba(223,190,106,0.3); } .btn:hover { color: #fff; border: 1px solid rgba(223,190,106,0); color: #fff; background-position: right center; } body { background: #231f20; color: #fff; font-family: 'PT Sans', sans-serif; } article { height: 100vh; } body { display: flex; align-items: center; justify-content: center; height: 100vh; }

Related: See More


Questions / Comments: