You are here

toc.responsive.css in TOC API 8

TOC responsive styling

File

css/toc.responsive.css
View source
  1. /**
  2. * @file
  3. * TOC responsive styling
  4. */
  5. /* If [device width] is greater than or equal to [specified #], then display 'desktop' */
  6. @media only screen and (min-width: 768px) {
  7. .toc-mobile {
  8. display: none;
  9. }
  10. .toc-desktop {
  11. display: block;
  12. }
  13. }
  14. /* If [device width] is less than or equal to [specified #], then display 'mobile' */
  15. @media only screen and (max-width: 767px) {
  16. .toc-mobile {
  17. display: block;
  18. }
  19. .toc-desktop {
  20. display: none;
  21. }
  22. }