Skip to content

Instantly share code, notes, and snippets.

@ricardozea
Last active June 23, 2020 11:58
Show Gist options
  • Save ricardozea/4261914 to your computer and use it in GitHub Desktop.
Save ricardozea/4261914 to your computer and use it in GitHub Desktop.
SCSS: Aqua style buttons mixin
/* Aqua style buttons mixin
Demo on Codepen:
http://codepen.io/rzea/pen/CgIzG/
*/
//Variables
$solidColor: #000; // Change this color to anything you want, leave everything else as is
$gradientFilters: rgba(255,255,255,.2) 50%, rgba(255,255,255,0) 50.01%;
//Usage
@include background(linear-gradient($gradientFilters), $solidColor);
//Example
.button {
display:inline-block;
padding:15px 30px;
text-decoration:none;
color:#fff;
border-radius:3px;
@include background(linear-gradient($gradientFilters), $solidColor);
}
@ricardozea
Copy link
Author

This is great!

CodePen demo is updated with the mixin and proper credits :)

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment