Skip to content

Instantly share code, notes, and snippets.

@drocarmo
Last active January 4, 2016 07:59
Show Gist options
  • Save drocarmo/8592708 to your computer and use it in GitHub Desktop.
Save drocarmo/8592708 to your computer and use it in GitHub Desktop.
Create a sky feeeeeel, ya feel?
$darkblue: #0C346B;
$lightblue: #1C7AFC;
@mixin gradient($from, $to) {
background-color: $from;
background: -moz-linear-gradient(top, $from 0%, $to 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$from), color-stop(100%,$to));
background: -webkit-linear-gradient(top, $from 0%,$to 100%);
background: -o-linear-gradient(top, $from 0%,$to 100%);
}
body {
@include gradient($lightblue, $darkblue);
background-size: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment