js.module.css 402 B

12345678910111213141516171819202122
  1. /**
  2. * @file
  3. * Utility classes to assist with Javascript functionality.
  4. */
  5. /**
  6. * For anything you want to hide on page load when JS is enabled, so
  7. * that you can use the JS to control visibility and avoid flicker.
  8. */
  9. .js .js-hide {
  10. display: none;
  11. }
  12. /**
  13. * For anything you want to show on page load only when JS is enabled.
  14. */
  15. .js-show {
  16. display: none;
  17. }
  18. .js .js-show {
  19. display: block;
  20. }