From what I've seen, this crash is usually caused by having syntax in your CSS that Pixate can't process correctly.
Try removing the commas from background-inset
and background-size
in your .button-search-cancel
selector.
.button-search-cancel{
background-inset:15px 6px;
background-size:13px 32px;
background-image:url(ButtonSearchCancel.png);
color:#fff;
font-weight:700;
}
If that doesn't work, start by commenting out all your CSS and see if it still crashes. Then comment out half of it, then a quarter of it, etc. until you can narrow down where the issue is. I hope this helps. :)