Skip to content

Instantly share code, notes, and snippets.

@iqbalmauludy
Created January 5, 2017 16:17
Show Gist options
  • Save iqbalmauludy/a2a825f4f7319d4150ba4abf2c57a82d to your computer and use it in GitHub Desktop.
Save iqbalmauludy/a2a825f4f7319d4150ba4abf2c57a82d to your computer and use it in GitHub Desktop.
Button Gradien
.btn {
background: #8134d9;
background-image: -webkit-linear-gradient(top, #8134d9, #b82b4e);
background-image: -moz-linear-gradient(top, #8134d9, #b82b4e);
background-image: -ms-linear-gradient(top, #8134d9, #b82b4e);
background-image: -o-linear-gradient(top, #8134d9, #b82b4e);
background-image: linear-gradient(to bottom, #8134d9, #b82b4e);
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
}
.btn:hover {
background: #3cb0fd;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment