You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
573 B

  1. body{
  2. background-color: antiquewhite;
  3. }
  4. h1{
  5. font-size: 50px;
  6. }
  7. p{
  8. font-size: 20px;
  9. }
  10. table{
  11. background-color: rgb(29, 6, 233);
  12. border: 3px solid black;
  13. border-radius: 20px;
  14. padding: 5px;
  15. margin: 20px;
  16. }
  17. td{
  18. border: 1px solid black;
  19. border-radius: 25px;
  20. height: 50px;
  21. width: 50px;
  22. background-color: white;
  23. }
  24. td:hover{
  25. background-color: rgb(80, 80, 80);
  26. }
  27. button{
  28. background-color: azure;
  29. font-size: 20px;
  30. border-color: blue;
  31. border-radius: 3px;
  32. }
  33. button:hover{
  34. background-color: lightblue;
  35. }