style.css 723 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. *, html {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. .container {
  6. position: relative;
  7. max-width: 1140px;
  8. margin: 0 auto;
  9. padding: 50px;
  10. }
  11. table {
  12. margin-top: 20px;
  13. border-style: ridge;
  14. text-align: center;
  15. vertical-align: middle;
  16. background-color: rgb(228, 217, 217);
  17. color: rgb(38, 21, 127);
  18. }
  19. /* table:before {
  20. content: 'REDUX';
  21. position: absolute;
  22. top: 90px;
  23. left: 52px;
  24. width: 62%;
  25. height: 100px;
  26. border-bottom: 0;
  27. background-color:chartreuse;
  28. } */
  29. td {
  30. border-style: ridge;
  31. padding: 5px;
  32. width: 40px;
  33. height: 40px;
  34. text-align: center;
  35. vertical-align: middle;
  36. }
  37. tr:nth-child(2n + 1) {
  38. background-color: rgb(223, 227, 235);
  39. }