Skip to content

Instantly share code, notes, and snippets.

@karlwestin
Created July 11, 2014 13:50
Show Gist options
  • Save karlwestin/543f09deaa24d6ac4a29 to your computer and use it in GitHub Desktop.
Save karlwestin/543f09deaa24d6ac4a29 to your computer and use it in GitHub Desktop.
classnames
{
/*
allgemeiner css kram von
http://www.cssmatic.com/gradient-generator#'\-moz\-linear\-gradient\%28\-45deg\%2C\%20rgba\%28246\%2C41\%2C12\%2C1\%29\%200\%25\%2C\%20rgba\%28246\%2C41\%2C12\%2C1\%29\%2050\%25\%2C\%20rgba\%28241\%2C111\%2C92\%2C1\%29\%2050\%25\%2C\%20rgba\%28241\%2C111\%2C92\%2C1\%29\%20100\%25\%29\%3B'
*/
background: rgba(246,41,12,1);
background: -moz-linear-gradient(-45deg, rgba(246,41,12,1) 0%, rgba(246,41,12,1) 50%, rgba(241,111,92,1) 50%, rgba(241,111,92,1) 100%);
background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(246,41,12,1)), color-stop(50%, rgba(246,41,12,1)), color-stop(50%, rgba(241,111,92,1)), color-stop(100%, rgba(241,111,92,1)));
background: -webkit-linear-gradient(-45deg, rgba(246,41,12,1) 0%, rgba(246,41,12,1) 50%, rgba(241,111,92,1) 50%, rgba(241,111,92,1) 100%);
background: -o-linear-gradient(-45deg, rgba(246,41,12,1) 0%, rgba(246,41,12,1) 50%, rgba(241,111,92,1) 50%, rgba(241,111,92,1) 100%);
background: -ms-linear-gradient(-45deg, rgba(246,41,12,1) 0%, rgba(246,41,12,1) 50%, rgba(241,111,92,1) 50%, rgba(241,111,92,1) 100%);
background: linear-gradient(135deg, rgba(246,41,12,1) 0%, rgba(246,41,12,1) 50%, rgba(241,111,92,1) 50%, rgba(241,111,92,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6290c', endColorstr='#f16f5c', GradientType=1 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment