Skip to content
Snippets Groups Projects
Commit bfd805e1 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #1150340 by aspilicious: CSS gradient background doesn't work with...

- Patch #1150340 by aspilicious: CSS gradient background doesn't work with newest opera and IE versions.
parent 252148a7
No related branches found
No related tags found
No related merge requests found
......@@ -23,8 +23,12 @@ body.overlay {
}
#header {
background-color: #48a9e4;
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0779bf), to(#48a9e4));
background-image: -moz-linear-gradient(-90deg, #0779bf, #48a9e4);
background-image: -moz-linear-gradient(top, #0779bf 0%, #48a9e4 100%);
background-image: -ms-linear-gradient(top, #0779bf 0%, #48a9e4 100%);
background-image: -o-linear-gradient(top, #0779bf 0%, #48a9e4 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #0779bf), color-stop(1, #48a9e4));
background-image: -webkit-linear-gradient(top, #0779bf 0%, #48a9e4 100%);
background-image: linear-gradient(top, #0779bf 0%, #48a9e4 100%);
}
a {
color: #0071B3;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment