style.css 544 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. :root {
  2. block-size: border-box;
  3. font-size: 16px;
  4. line-height: 20px;
  5. font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  6. }
  7. button {
  8. width: 100%;
  9. font-size: 2em;
  10. }
  11. input,
  12. button,
  13. select {
  14. width: 100%;
  15. font-size: 2em;
  16. }
  17. table {
  18. border: 1px;
  19. border-collapse: collapse;
  20. }
  21. td,
  22. th {
  23. border: 1px solid black;
  24. padding: 2px 5px;
  25. }
  26. .products {
  27. margin-top: 10px;
  28. display: flex;
  29. justify-content: center;
  30. font-size: 20px;
  31. }
  32. .wrapper {
  33. display: flex;
  34. justify-content: space-evenly;
  35. align-items: center;
  36. }