A simple web application that allows invitation based registration to a matrix instance
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.

41 lines
626 B

  1. /*!
  2. Pure v1.0.0
  3. Copyright 2013 Yahoo!
  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. box-sizing: border-box;
  10. }
  11. .pure-menu-fixed {
  12. position: fixed;
  13. left: 0;
  14. top: 0;
  15. z-index: 3;
  16. }
  17. .pure-menu-list,
  18. .pure-menu-item {
  19. position: relative;
  20. }
  21. .pure-menu-list {
  22. list-style: none;
  23. margin: 0;
  24. padding: 0;
  25. }
  26. .pure-menu-item {
  27. padding: 0;
  28. margin: 0;
  29. height: 100%;
  30. }
  31. .pure-menu-link,
  32. .pure-menu-heading {
  33. display: block;
  34. text-decoration: none;
  35. white-space: nowrap;
  36. }