style.css 487 B

123456789101112131415161718192021222324252627282930313233
  1. * {
  2. box-sizing: border-box;
  3. }
  4. body {
  5. margin: 0;
  6. }
  7. .main {
  8. display: flex;
  9. width: 1920px;
  10. height: 100vh;
  11. }
  12. .reg, .log {
  13. width: 50%;
  14. height: 100%;
  15. display: flex;
  16. flex-direction: column;
  17. justify-content: center;
  18. align-items: center;
  19. }
  20. input {
  21. margin-bottom: 20px;
  22. width: 300px;
  23. height: 50px;
  24. }
  25. table {
  26. width: 100px;
  27. height: 100px;
  28. border: 1px solid black;
  29. margin-bottom: 100px;
  30. }
  31. /* tr {
  32. background-color: red;
  33. } */