More actions
| Line 698: | Line 698: | ||
} | } | ||
.linear2 { | .linear2 { | ||
padding:0px; | |||
background-image: linear-gradient(to right, #00AA00, #AA0000); | background-image: linear-gradient(to right, #00AA00, #AA0000); | ||
// The webkit is needed for the ingame browser. | // The webkit is needed for the ingame browser. | ||
background-image: -webkit-gradient(to right, left bottom, left top, color-stop(0, #00AA00), color-stop(1, #AA0000) ); | background-image: -webkit-gradient(to right, left bottom, left top, color-stop(0, #00AA00), color-stop(1, #AA0000) ); | ||
background-color: #111111; | background-color: #111111; | ||
} | } | ||
.radial{ | .radial{ | ||
padding:0px; | |||
background-image: radial-gradient(#00AA00, #AA0000); | background-image: radial-gradient(#00AA00, #AA0000); | ||
background-image: -webkit-gradient(radial, left bottom, left top, color-stop(0, #00AA00), color-stop(1, #AA0000) ); | background-image: -webkit-gradient(radial, left bottom, left top, color-stop(0, #00AA00), color-stop(1, #AA0000) ); | ||