JSFiddle - React, Tailwind, and code Playground

by fersterin

HTML

<div class="container">
	<div class="dog">&larr;</div>
	<div class="dog">1</div>
	<div class="dog">2</div>
	<div class="dog">3</div>
	<div class="dog">&rarr;</div>
</div>

CSS

.container {
	width: 100%;
	text-align: center;
}
.dog {
	display: inline-block;
	margin: 0 5px;
	border-radius: 15px;
	border: 1px solid #d3d3d3;
	height: 30px;
	line-height: 30px;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
}
.dog:first-child,.dog:last-child {
	width: 80px;
} 
.dog:hover {
	background-color: green;
	color: white;
	cursor: pointer;
}