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.

21 lines
341 B

  1. body{
  2. background-color: antiquewhite;
  3. }
  4. table{
  5. background-color: rgb(29, 6, 233);
  6. border: 3px solid black;
  7. border-radius: 20px;
  8. padding: 5px;
  9. }
  10. td{
  11. border: 1px solid black;
  12. border-radius: 25px;
  13. height: 50px;
  14. width: 50px;
  15. background-color: white;
  16. }
  17. td:hover{
  18. background-color: rgb(80, 80, 80);
  19. }