CSS Buttons

HTML

<table>
<tr>
<td class="href">
  <a href="#">Test Title</a>
</td>
<td class="delete">
  <a href="#">Delete</a>
</td>
</tr>
</table>

SCSS

table {
  width: 100%;
}
.href,
.delete {
  padding: 0;
  text-align: center;
  cursor: pointer;
  border: 1px solid black;
     -moz-box-shadow:    inset 0 0 10px #000000;
   -webkit-box-shadow: inset 0 0 10px #000000;
   box-shadow:         inset 0 0 10px #000000;
}

.href a,
.delete a {
  text-decoration: none;
  color: black;
}