Note print and responsive mediums

@media print
{ 
   ...
}

 

@media tablet
/* becomes the following in output */
/* @media only screen and (max-width: 1279px) */
{
   ...
}

 

@media mobile
/* becomes the following in output */
/* @media only screen and (max-width: 767px) */
{
   ...
}