/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 14, 2015, 4:14:45 PM
    Author     : Ryan Wilson
*/

#divWeatherBig
{
    display: none;
}

#divWeatherSmall
{
    display: none;
}

@media only screen and (max-width: 500px) 
{
    #divWeatherBig
    {
        display: none;
    }
    
    #divWeatherSmall
    {
        display: block;
    }
}

@media only screen and (min-width: 501px)
{
    #divWeatherBig
    {
        display: block;
    }
    
    #divWeatherSmall
    {
        display: none;
    }
    
}