Edit in JSFiddle

<p>Ширина вашего экрана <strong class="size">большая</strong>.</p>
body {
   color: #666;
  font: 14px/24px "Helvetica Neue", Helvetica, Arial, "Lucida Grande", Sans-Serif;
}
strong {
  color: #42444e;
  font-weight: bold;
}
$(document).ready(function() {
  if (Modernizr.mq('screen and (max-width: 800px)')) {
    $('.size').text('маленькая');
  }
});