I am using major media breakpoints in the head of the doc:
<!-- Base = Normalize for basic and small screens -->
<link rel="stylesheet" href="css/base.css">
<!-- Enhanced = Styles for devices that understand media queries -->
<link rel="stylesheet" href="css/enhanced.css" media=”screen, handheld” />
<!-- Medium = Devices larger then generlized phone size -->
<link rel="stylesheet" href="css/medium.css" media=”only screen and (min-width:37em)”/>
<!-- Large = Larger tablets and desktops -->
<link rel="stylesheet" href="css/large.css" media=”only screen and (min-width:45em)”/>
<!-- Extralarge = Large displays and tv -->
<link rel="stylesheet" href="css/extralarge.css" media=”only screen and (min-width:60em)”/>
The four stylesheets are made up of several _partials. When I save in one of the scss files codekit runs and Chrome refreshes and everything renders just fine. However when I refresh the browser all the styles are not applied. The css files are present but nothing gets applied. Everything worked fine when I had one screen.scss file with media queries inside that file but now that they are split up nothing applies. What am I missing here?
I see curly fancy quotes in your HTML. Fixing them should cause your media queries to be recognized: