Skip to content

Instantly share code, notes, and snippets.

@frontendbeast
Created May 13, 2014 12:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frontendbeast/890ff27698f59cd5a4b4 to your computer and use it in GitHub Desktop.
Save frontendbeast/890ff27698f59cd5a4b4 to your computer and use it in GitHub Desktop.
SASS vertical rhythm background lines
$color__blue: #0CF;
$font__line-height: 1.5rem;
body {
background: linear-gradient(bottom, rgba($color__blue, 0.25), rgba($color__blue, 0.25) 1px, transparent 1px, transparent);
background-size: 1px $font__line-height;
background-repeat: repeat;
background-position: 0 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment