Forum Moderators: not2easy
if I discard styles that aren't CSS 3.0 compatibleThis line made my blood run cold, because just what have you got in there? <font> tags? Oh, wait, that's HTML, like all those formats that used to be attached to table elements.
I've always done it by searching manually in any text editor that allows multi-file searches
This line made my blood run cold, because just what have you got in there?
/* Default */
background: #313943;
/* IE10 */
background: -ms-linear-gradient(top, #000 0%, #313943 100%);
/* IE8+ */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000', endColorstr='#313943');
/* Safari, Chrome 10 */
background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#313943));
/* Chrome 11+ */
background: -webkit-linear-gradient(top, #000 0%, #313943 100%);
/* FF 3.6+ */
background: -moz-linear-gradient(top, #000, #313943);
/* Opera */
background: -o-linear-gradient(top, #000 0%, #313943 100%);
/* Proposed W3C Markup */
background: linear-gradient(to bottom, #000 0%, #313943 100%);