Created
February 6, 2014 06:35
-
-
Save yoksel/8839294 to your computer and use it in GitHub Desktop.
A Pen by yoksel.
This file contains hidden or 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
<html> | |
<head> | |
<script src="http://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script> | |
<meta charset=utf-8 /> | |
<title>Gradients</title> | |
</head> | |
<body> | |
</body> | |
</html> |
This file contains hidden or 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
HTML { | |
height: 100%; | |
} | |
BODY { | |
background: | |
repeating-linear-gradient( -45deg, | |
rgba(255,255,255, 0) 1.9em, | |
rgba(0, 0, 0, .1) 2em, | |
rgba(255,255,255, 0) 2.1em ) | |
0 0; | |
background-color: ivory; | |
font: 16px/2 'Trebuchet MS', Verdana, sans-serif; | |
} | |
P { | |
margin: 2.5em 3em 1em 8em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment