<link href='https://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
<body>
  <a href="https://superdevresources.com/super-simple-ghost-button-css/" class="ghost-button" target="_blank">Ghost Button</a>
  <br/>
  <a href="https://superdevresources.com" class="ghost-button">Super Dev</a>
  <br/>
  <!-- Read the blog post -->
  <a href="https://superdevresources.com/super-simple-ghost-button-css/" class="ghost-button" target="_blank">Learn More</a>
 
</body>
body {
  background: #eee;
  text-align: center;
  padding-top: 20px;
}

.ghost-button {
    color: #009688;
    background: #fff;
    border: 1px solid #009688;
    font-size: 17px;
    padding: 7px 12px;
    font-weight: normal;
    margin: 6px 0;
    margin-right: 12px;
    display: inline-block;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    min-width: 120px;
}

.ghost-button:hover, .ghost-button:active {
  color:#fff;
  background:#009688;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.