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.

35 lines
395 B

  1. nav {
  2. overflow: hidden;
  3. padding: 0px 0px;
  4. }
  5. nav h1 {
  6. display: block;
  7. float: left;
  8. }
  9. nav ul {
  10. display: block;
  11. float: right;
  12. }
  13. nav ul li {
  14. display: block;
  15. float: left;
  16. padding-left: 1em;
  17. }
  18. .text-center {
  19. text-align: center;
  20. }
  21. .justify-center {
  22. justify-content: center;
  23. }
  24. .pad-top {
  25. padding-top: 2em;
  26. }
  27. .pad-bottom {
  28. padding-bottom: 2em;
  29. }