style.css 793 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. table{
  2. display: flex;
  3. text-align: center;
  4. flex-direction: column;
  5. margin-bottom: 50px;
  6. }
  7. td, th{
  8. height: 40px;
  9. border: 1px solid black;
  10. }
  11. td{
  12. width: 300px
  13. }
  14. th{
  15. min-width: 200px;
  16. }
  17. .list {
  18. display: flex;
  19. justify-content: center;
  20. flex-direction: column;
  21. }
  22. .li {
  23. text-decoration: none;
  24. }
  25. .div {
  26. display: flex;
  27. align-items: center;
  28. }
  29. .button {
  30. margin: 5px 15px;
  31. height: 25px;
  32. border: 1px solid tan;
  33. border-radius: 3px;
  34. cursor: pointer;
  35. background-color: cornsilk;
  36. color: darkred;
  37. position: relative;
  38. font-weight: 600;
  39. left: 10px;
  40. }
  41. .button:hover {
  42. height: 25px;
  43. border: 1px solid darkred;
  44. border-radius: 3px;
  45. cursor: pointer;
  46. background-color: darkred;
  47. color: white;
  48. }