user3109249
user3109249

Reputation:

glass effect with linear-gradient

I'm looking for a glass effect with a linear-gradient like in enter image description here. I've tried several effect and the one that most resembles is:

background: linear-gradient(#1f87ab, #004961 50%, #004961 90%);

I've also looked at:

Creating a Two-Color Sharp Gradient on Text With CSS3

Horizontal sharp background gradient with specific length of first color

But they didn't help

Upvotes: 0

Views: 4787

Answers (1)

user3109249
user3109249

Reputation:

I solved using

linear-gradient(#2396bf, #0d5b77 40%, #004961 3%, #004961);

And it even looks a little bit better

Upvotes: 1

Related Questions