remove non standard gradient

This commit is contained in:
Dennis Eichhorn 2016-08-20 12:19:14 +02:00
parent fc0afe4fe1
commit 724741d1f5

View File

@ -11,18 +11,10 @@
height: 100%; height: 100%;
@include border-radius(3px); @include border-radius(3px);
background-color: rgb(43,194,83); background-color: rgb(43,194,83);
background-image: -webkit-gradient( background-image: linear-gradient(
linear, to left top,
left bottom,
left top,
color-stop(0, rgb(43,194,83)), color-stop(0, rgb(43,194,83)),
color-stop(1, rgb(84,240,84)) color-stop(1, rgb(84,240,84))););
);
background-image: -moz-linear-gradient(
center bottom,
rgb(43,194,83) 37%,
rgb(84,240,84) 69%
);
position: relative; position: relative;
overflow: hidden; overflow: hidden;
} }