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.

104 lines
1.4 KiB

  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. #activeRegistrationCodes {
  19. display: block;
  20. width: 100%;
  21. }
  22. #activeRegistrationCodes table {
  23. margin: 0 auto; /* or margin: 0 auto 0 auto */
  24. }
  25. #registeredUsers {
  26. display: block;
  27. width: 100%;
  28. }
  29. #registeredUsers table {
  30. margin: 0 auto; /* or margin: 0 auto 0 auto */
  31. }
  32. table {
  33. border-collapse: collapse;
  34. }
  35. table tr:nth-child(even) {
  36. background: #CCC
  37. }
  38. table th, td {
  39. padding-left: 1em;
  40. padding-right: 1em;
  41. text-align: center;
  42. height: 2.5em;
  43. }
  44. table tbody td {
  45. border: 1px solid black;
  46. }
  47. table tbody tr .borderless {
  48. border: none;
  49. background: white;
  50. }
  51. #register {
  52. width: 100%;
  53. text-align: center;
  54. }
  55. #register form {
  56. display: inline-block;
  57. }
  58. form div .row {
  59. display: table-cell;
  60. }
  61. label {
  62. display: inline-block;
  63. float: left;
  64. clear: left;
  65. width: 250px;
  66. text-align: right;
  67. padding-right: 1em;
  68. vertical-align: middle;
  69. }
  70. input {
  71. display: inline-block;
  72. float: left;
  73. vertical-align: middle;
  74. width: auto;
  75. }
  76. .formSubmit input {
  77. float: right;
  78. }
  79. .flashMessages {
  80. padding: 1em;
  81. }
  82. .flash {
  83. width: 100%;
  84. text-align: center;
  85. }