





/* FOR SCREEN SIZES BETWEEN 970PX AND 800PX */

/*It works as if this css only loads with screens within that range, so it
overwrites the above rules but does not remove them. We have to take this into
account if we want to undo something

In this case I put the minimum size that fits with the smallest size, because if
not the smallest size also apply this rules, and it is a mess*/
@media (max-width: 970px) and (min-width: 800px) {




}

/* FOR SCREEN SIZES < 800PX */

@media (max-width: 799px) {


}

/*VERY SMALL SCREENS*/
@media (max-width: 550px) {





}

// vim: expandtab noai ts=4 sw=4
