Skip to content

Instantly share code, notes, and snippets.

@cleitonfco
Created April 13, 2012 13:48
Show Gist options
  • Save cleitonfco/2376973 to your computer and use it in GitHub Desktop.
Save cleitonfco/2376973 to your computer and use it in GitHub Desktop.
Button CSS
/**
* Button CSS
*/
.user-register input[type="submit"] {
border: none;
color: #FFFFFF;
font-size: 15px;
height: 35px;
margin: 0 0 20px;
width: 150px;
border-radius: 10px;
background-color: #FF001A;
background-image: linear-gradient(45deg, #FF001A 0%, #99001A 100%);
}
.user-register input[type="submit"]:hover {
box-shadow: 0 0 5px 1px #778877;
}
<form class="user-register">
<input type="submit" name="button" value="Send">
</form>
{"view":"separate","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment