Ghost Button

by Charles Butler

HTML

<div class="ghost-wrapper"><a data-scroll-reveal="enter bottom and move 50px over 3.9s" href="#" class="ghost-button">OPEN AN ACCOUNT</a></div>

CSS

body {background: #07151E; padding: 80px;}

.ghost-wrapper {
  transition: background-color 0.5s ease;
  text-align: center;
  padding: 10px 20px;
  margin: 0 auto;
}
a.ghost-button {
  transition: background-color 0.5s ease;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  border: 2px solid #FFF;
  text-decoration: none;
  margin: 0 auto;
}
a.ghost-button:hover {
  color: #07151E;
  padding: 10px 20px;
  border: 2px solid #FFF;
  background: #FFF;
}