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.

44 lines
492 B

  1. nav {
  2. overflow: hidden;
  3. padding: 0px 0px;
  4. }
  5. nav ul {
  6. display: block;
  7. float: right;
  8. }
  9. nav ul li {
  10. display: block;
  11. float: left;
  12. padding-left: 1em;
  13. }
  14. .flash {
  15. padding: 0.2em;
  16. }
  17. .flash-error {
  18. color: black;
  19. background: red;
  20. font-weight: bold;
  21. }
  22. .full-width {
  23. width: 100%;
  24. }
  25. .text-center {
  26. text-align: center;
  27. }
  28. .justify-center {
  29. justify-content: center;
  30. }
  31. .pad-top {
  32. padding-top: 2em;
  33. }
  34. .pad-bottom {
  35. padding-bottom: 2em;
  36. }