Skip to content

Instantly share code, notes, and snippets.

@acafourek
Last active August 29, 2015 14:00
Show Gist options
  • Save acafourek/11290718 to your computer and use it in GitHub Desktop.
Save acafourek/11290718 to your computer and use it in GitHub Desktop.
Create a Signup Button for an MAA Alumni Spaces Site
a.reg {
border-top: 1px solid #f1ba2d;
background: #d6a765;
background: -webkit-gradient(linear, left top, left bottom, from(#f1ba2d), to(#d6a765));
background: -webkit-linear-gradient(top, #f1ba2d, #d6a765);
background: -moz-linear-gradient(top, #f1ba2d, #d6a765);
background: -ms-linear-gradient(top, #f1ba2d, #d6a765);
background: -o-linear-gradient(top, #f1ba2d, #d6a765);
padding: 6.5px 13px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
-webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
-moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
box-shadow: rgba(0,0,0,1) 0 1px 0;
text-shadow: rgba(0,0,0,.4) 0 1px 0;
color: #000000;
font-size: 14px;
font-family: Georgia, serif;
text-decoration: none;
vertical-align: middle;
}
a.reg:hover {
border-top-color: #f1ba2d;
background: #f1ba2d;
color: #383838;
}
a.reg:active {
border-top-color: #f1ba2d;
background: #f1ba2d;
}
<div style="text-align: center;">
<a href="http://www.mizzou.com/joinbayarea" target="_blank" class="reg">Become a Member Today!</a><br /><br />
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment