/*
Theme Name: Muze
Theme URI: http://muze.stonedthemes.com/
Description: Muze - Creative & Business Portfolio
Author: StonedThemes
Author URI: http://stonedthemes.com/
Tags: light, dark
Version: 1.0.3
License: General Public License
License URI: http://www.gnu.org/licenses/gpl.html
*/

/*classes to hide things on mobile only, or on desktop only */

/* always assume hidden first, show if over 750 */

#mobilehide {
    display:none;
}

/* if screen size gets wider than 750 */

@media screen and (min-width:750px){
    #mobilehide {
        display:block;
    }
}

/* always assume shown first, hide if over 750 */

#deskhide {
    display:block;
}

/* if screen size gets wider than 750 */

@media screen and (min-width:750px){
    #deskhide {
        display:none;
    }
}