Reputation: 4906
See below for an example of what I want to achieve.
I can see the difference between the two, but if you can't, here's another image.
Upvotes: 1
Views: 149
Reputation: 273777
by applying another gradient on a top of it:
html {
height:100%;
background:
linear-gradient(transparent,rgba(0,0,0,0.03)) 0 0/100% 20px,
linear-gradient(#1ec5a6,#fff);
}
Upvotes: 3