Created
January 14, 2011 21:06
-
-
Save mrkurt/780239 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.button, input[type=submit], input[type=button]{ | |
border: 0px; | |
margin: 0px; | |
color: white; | |
font-size: 12px; | |
padding: 5px 12px; | |
vertical-align: middle; | |
text-align: center; | |
text-decoration: none; | |
font-weight: bold; | |
@include border-radius(5px); | |
@include text-shadow(#1067ae); | |
@include inline-block; | |
background-color: #50a4d0; | |
@include linear-gradient(color-stops(#50a4d0, #126baf)); | |
@include box-shadow(#000, 0, 1px, 1px); | |
cursor: pointer; | |
&.secondary{ | |
background-color: #777; | |
@include linear-gradient(color-stops(#999, #777)); | |
@include text-shadow(#444); | |
} | |
&:hover{ | |
color: #FF9; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment