style.css 401 B

123456789101112131415161718192021222324252627282930
  1. .container {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: center;
  6. margin-top: 100px;
  7. }
  8. table {
  9. margin: 10px;
  10. border: 1px solid;
  11. }
  12. table td,
  13. table th {
  14. padding: 10px;
  15. text-align: center;
  16. border: 1px solid;
  17. }
  18. form {
  19. display: flex;
  20. flex-direction: column;
  21. max-width: 200px;
  22. width: 100%;
  23. margin: 10px;
  24. }
  25. form > * {
  26. margin-bottom: 10px;
  27. }