Thanks! Can you give me the code to make a gradient work? I tried using the codes below but they aren't working.
/* IE10+ */
background-image: -ms-linear-gradient(top, #7A94A5 0%, #1A2730 100%);
/* Mozilla Firefox */
background-image: -moz-linear-gradient(top, #7A94A5 0%, #1A2730 100%);
/* Opera */
background-image: -o-linear-gradient(top, #7A94A5 0%, #1A2730 100%);
/* Webkit (Safari/Chrome 10) */
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #7A94A5), color-stop(100, #1A2730));
/* Webkit (Chrome 11+) */
background-image: -webkit-linear-gradient(top, #7A94A5 0%, #1A2730 100%);
/* W3C Markup */
background-image: linear-gradient(to bottom, #7A94A5 0%, #1A2730 100%);