Created
October 18, 2012 16:53
-
-
Save carlesandres/3913227 to your computer and use it in GitHub Desktop.
sinbutton
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
/* sinbutton */ | |
.sinbutton { | |
background: black; | |
background-image: -webkit-linear-gradient(top, #333, #666); | |
color: white; | |
font-size: 14px; | |
margin: 5px; | |
padding: 3px; | |
border-radius: 3px; | |
display: inline-block; | |
min-width: 100px; | |
text-align: center; | |
text-decoration: none; | |
transition: all 2s; | |
} | |
.sinbutton:hover { | |
background: red; | |
background: -webkit-linear-gradient(top, red, #F66); | |
color: white; | |
cursor: pointer; | |
} | |
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
<!-- content to be placed inside <body>…</body> --> | |
<label class=sinbutton>Something</label> |
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
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment