CSS

Getting Started Selectors Background Transform Transition Grid Filter Fonts Dead Center SASS Mobile (@media) Animation Print ***
O O

Weather Controls

Time Of Day
Rain
Wind Speed
Wind Direction
Clouds

CSS : Mobile (@media)

2018-05-03

Media Query For Mobile

These styles will only show on screens 768px and lower.

.mobile, .mobile-inline {display: none !important;}
@media screen and (max-width: 768px) {
    .mobile {display: block !important;}
    .mobile-inline {display: inline !important;}
    .desktop {display: none !important;}
}