Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivanmarkovich/1dd79bf8bdbeddf7bc97470a2ac08240 to your computer and use it in GitHub Desktop.
Save ivanmarkovich/1dd79bf8bdbeddf7bc97470a2ac08240 to your computer and use it in GitHub Desktop.
mediacss
/*====== Screen-Size ====== */
@screen-iphone-max: 480px;
@screen-xs-max: 767px;
@screen-sm-min: 768px;
@screen-sm-max: 991px;
@screen-md-min: 992px;
@screen-md-max: 1199px;
@screen-lg-min: 1200px;
/*========= Media ========= */
@media (min-width: @screen-lg-min) {}
@media (min-width: @screen-md-min) and (max-width: @screen-md-max) {}
@media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {}
@media (max-width: @screen-xs-max) {}
@media (max-width: @screen-iphone-max) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment