You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

variables.less 630B

1234567891011121314
  1. // here a standard set of media queries is defined, that is compatible with the
  2. // responsive grid used in fomantic css. As there only is a precompiled build
  3. // of fomantic checked in (since 946bbbe), we can't use their less variables
  4. // here, but these breakpoints shouldn't change in the foreseeable future.
  5. @mediaMdAndUp: ~"(min-width: 768px)";
  6. @mediaMdAndDown: ~"(max-width: 991px)";
  7. @mediaLgAndUp: ~"(min-width: 992px)";
  8. @mediaLgAndDown: ~"(max-width: 1200px)";
  9. @mediaSm: ~"(max-width: 767px)";
  10. @mediaMd: @mediaMdAndUp and @mediaMdAndDown;
  11. @mediaLg: @mediaLgAndUp and @mediaLgAndDown;
  12. @mediaXl: ~"(min-width: 1201px)";