JSFiddle - React, Tailwind, and code Playground

HTML

<a href="#"><span>Для туристов</span></a>

<script>
    function ActiveLink(){

  $("a.active").removeClass("active");

}    
</script>

CSS

a {
    width:150px;
    display:block;
	text-align:center;
	border: 1px solid #dadada;
	padding: 5px;
	
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	-khtml-border-radius:10px;
	
	background: #ffffff;
	background: -moz-linear-gradient(-45deg,  #ffffff 0%, #dedede 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#ffffff), color-stop(100%,#dedede));
	background: -webkit-linear-gradient(-45deg,  #ffffff 0%,#dedede 100%);
	background: -o-linear-gradient(-45deg,  #ffffff 0%,#dedede 100%);
	background: -ms-linear-gradient(-45deg,  #ffffff 0%,#dedede 100%);
	background: linear-gradient(135deg,  #ffffff 0%,#dedede 100%);
}
a span {
    width:150px;
	height: 42px;
	display:table-cell;
	vertical-align:middle;
	padding:0 5px;
	text-decoration:none;
	font-size:12px;
	font-family: Tahoma, "Trebuchet MS", Calibri, "Century Gothic";
	color:#006496;
	text-transform:uppercase;
	
	border-radius: 5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	-khtml-border-radius:5px;

	background: #ebebeb;
	background: -moz-linear-gradient(top,  #ebebeb 0%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb), color-stop(100%,#ffffff));
	background: -webkit-linear-gradient(top,  #ebebeb 0%,#ffffff 100%);
	background: -o-linear-gradient(top,  #ebebeb 0%,#ffffff 100%);
	background: -ms-linear-gradient(top,  #ebebeb 0%,#ffffff 100%);
	background: linear-gradient(to bottom,  #ebebeb 0%,#ffffff 100%);
}

a span:hover {
	background: #e0edf3;
	background: -moz-linear-gradient(top,  #e0edf3 0%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e0edf3), color-stop(100%,#ffffff));
	background: -webkit-linear-gradient(top,  #e0edf3 0%,#ffffff 100%);
	background: -o-linear-gradient(top,  #e0edf3 0%,#ffffff 100%);
	background: -ms-linear-gradient(top,  #e0edf3 0%,#ffffff 100%);
	background: linear-gradient(to bottom,  #e0edf3 0%,#ffffff...

JavaScript

$("a").click(function(){
  $(this).addClass("active");
    setTimeout("ActiveLink()",100);
})