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.

43 lines
721 B

9 years ago
  1. /*!
  2. Pure v0.6.0
  3. Copyright 2014 Yahoo! Inc. All rights reserved.
  4. Licensed under the BSD License.
  5. https://github.com/yahoo/pure/blob/master/LICENSE.md
  6. */
  7. /*csslint adjoining-classes: false, box-model:false*/
  8. .pure-menu {
  9. -webkit-box-sizing: border-box;
  10. -moz-box-sizing: border-box;
  11. box-sizing: border-box;
  12. }
  13. .pure-menu-fixed {
  14. position: fixed;
  15. left: 0;
  16. top: 0;
  17. z-index: 3;
  18. }
  19. .pure-menu-list,
  20. .pure-menu-item {
  21. position: relative;
  22. }
  23. .pure-menu-list {
  24. list-style: none;
  25. margin: 0;
  26. padding: 0;
  27. }
  28. .pure-menu-item {
  29. padding: 0;
  30. margin: 0;
  31. height: 100%;
  32. }
  33. .pure-menu-link,
  34. .pure-menu-heading {
  35. display: block;
  36. text-decoration: none;
  37. white-space: nowrap;
  38. }