Hello, thank you for support and all lesson, there are incredible helpful. At this point I am making a website for my personal portfolio. However, I have issue with setting background linear gradient color, which I want to have inclined by 45%.
Here is web site: https://codepen.io/ssandr1kka/full/dyGjywe
Here is the code:
background: rgb(16,10,92);
background: -moz-linear-gradient(174deg, rgba(16,10,92,1) 0%, rgba(170,0,182,1) 61%, rgba(38,119,135,1) 100%);
background: -webkit-linear-gradient(174deg, rgba(16,10,92,1) 0%, rgba(170,0,182,1) 61%, rgba(38,119,135,1) 100%);
background: linear-gradient(174deg, rgba(16,10,92,1) 0%, rgba(170,0,182,1) 61%, rgba(38,119,135,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#100a5c",endColorstr="#267787",GradientType=1);
Here is the picture of my web:
This is what I want it to look like:
Thank you!