Skip to content

Instantly share code, notes, and snippets.

@aramboyajyan
Created July 11, 2013 09:59
Show Gist options
  • Save aramboyajyan/5974170 to your computer and use it in GitHub Desktop.
Save aramboyajyan/5974170 to your computer and use it in GitHub Desktop.
Basic responsive CSS
/**
* @file
* Main responsive stylesheet file.
*
* Created by: Topsitemakers
* http://www.topsitemakers.com/
*/
/*****************************************************************************
* Desktop
****************************************************************************/
@media (min-width: 980px) {
.show-mobile {
display: none!important;
}
.show-desktop {
display: inline!important;
}
}
/* Desktop end */
/*****************************************************************************
* mobile
****************************************************************************/
@media (max-width: 980px) {
.show-mobile {
display: inline!important;
}
.show-desktop {
display: none!important;
}
}
/* mobile end */
/*****************************************************************************
* Various other styles
****************************************************************************/
/* Various other styles end */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment