Created
September 8, 2015 12:07
-
-
Save dhunmoon/feb2025a333363558aec to your computer and use it in GitHub Desktop.
CSS: Diagonal Gradient BL
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
/* IE9 SVG, needs conditional override of 'filter' to 'none' */ | |
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjEwMCUiIHkyPSIwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjlmOWY5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjIiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==); | |
background: -moz-linear-gradient(45deg, rgba(249,249,249,1) 0%, rgba(0,0,0,0.2) 100%); /* FF3.6+ */ | |
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,rgba(249,249,249,1)), color-stop(100%,rgba(0,0,0,0.2))); /* Chrome,Safari4+ */ | |
background: -webkit-linear-gradient(45deg, rgba(249,249,249,1) 0%,rgba(0,0,0,0.2) 100%); /* Chrome10+,Safari5.1+ */ | |
background: -o-linear-gradient(45deg, rgba(249,249,249,1) 0%,rgba(0,0,0,0.2) 100%); /* Opera 11.10+ */ | |
background: -ms-linear-gradient(45deg, rgba(249,249,249,1) 0%,rgba(0,0,0,0.2) 100%); /* IE10+ */ | |
background: linear-gradient(45deg, rgba(249,249,249,1) 0%,rgba(0,0,0,0.2) 100%); /* W3C */ | |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#33000000',GradientType=1 ); /* IE6-8 fallback on horizontal gradient */ | |
/* | |
Link to CSS Generator: | |
http://www.colorzilla.com/gradient-editor/ | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment