Created
April 20, 2015 10:30
-
-
Save ShawInnes/54417dbd9ecc42a9f6fa to your computer and use it in GitHub Desktop.
Background Gradient
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@background: #0A10AB; | |
html { | |
background: @background; | |
background: linear-gradient(to bottom, lighten(@background, 0%), darken(@background, 100%)); | |
min-height: 100%; | |
} | |
body { | |
background: none; | |
padding-top: 12px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment