JSFiddle - React, Tailwind, and code Playground

by Ben Noble

HTML

<div id="bg">
<a href="default.asp" target="_blank">Offnet Dash</a>
<a href="default.asp" target="_blank">GPON Dash</a>
<a href="default.asp" target="_blank">CE Dash</a>
</div>

CSS

#bg
{
  background:#f8f8f8;
  width:100%;
  height:1000px;
}

a:link, a:visited {
    background-color: #335075;
    color: white;
    width: 200px;
    height: 120px;
    padding: 80px 10px 10px 10px;
    text-align: center;
    text-decoration: none;
    font-size:25px;
    display: inline-block;
    margin: 25px;
}

a:hover, a:active {
    /*background-color: #f9f9f9;*/
    text-decoration: underline;
}