Стили @import не работают в медиа-запросе

Я пытаюсь импортировать стиль, основанный на медиа-запросе, но импорт не запускается. Если я помещаю стили непосредственно в медиа-запрос, они отображаются на странице.

Вот ссылка на живой сайтhttp://update.techbasics.ca

Вот мой style.css с медиа-запросами и импортом

Я использую WordPress, если это помогает отладить.

@import url('base.css');
/******************************************************************
Site Name: Tech Basics
Author: Anders Kitson

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.
******************************************************************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/*****************************************************************
BASE CSS
*****************************************************************/

/*****************************************************************
MEDIA QUERIES
*****************************************************************/
@media only screen and (min-width: 480px) {
    @import url('min480.css');
  }
@media only screen and (min-width: 600px) {
     @import url('min600.css');
  }
 @media only screen and (min-width: 768px) {
  body {
    background: purple; } }
@media only screen and (min-width: 992px) {
  body {
    background: orange; } }
@media only screen and (min-width: 1382px) {
  body {
    background: url("../img/noisy_grid.png"); } }
/* iPhone 4 ----------- */
@media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {
  @import url('base.css'); 
}

и здесь min600.css (находится в том же каталоге, что и файл style.css)

header {
  text-align: left; }
  body{
    background: green;
  }

Ответы на вопрос(6)

Ваш ответ на вопрос