JSFiddle - React, Tailwind, and code Playground

by tickietick

HTML

<body>
  <div id="golden-rec-container">
      <a id="golden-rec-btn" href="/departments/it/governance/Shared%20Documents/FODS_MDM_GoldenRecord_WellMaster.xlsx">Well Header - Golden Record</a>
  </div>
</body>

CSS

body{
  font-family: "Segoe UI";
  font-size: 13px;
}
#golden-rec-container {
  background-color: grey;
  width: 250px;
  padding: 25px;
}

#golden-rec-btn {
  color: white;
  font-size: 16px;
  font-weight: 600;
  background-color: #003466;
  border: 3px solid white;
  border-radius: 15px;
  height: 22px;
  padding: 14px 10px;
  text-align: center;
  text-decoration: none;
}

#golden-rec-btn:hover {  
  color: #003466;
  background-color: #9ec3d3;
  border-color: #003466;
  text-decoration: underline;
}
#golden-rec-btn:active {
  color: #9ec3d3;
  background-color: #0069a6;
}