Skip to content

Instantly share code, notes, and snippets.

@carlesandres
Created October 18, 2012 16:53
Show Gist options
  • Save carlesandres/3913227 to your computer and use it in GitHub Desktop.
Save carlesandres/3913227 to your computer and use it in GitHub Desktop.
sinbutton
/* 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;
}
<!-- content to be placed inside <body>…</body> -->
<label class=sinbutton>Something</label>
{"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