1. body {
  2. margin: 20px;
  3. }
  4.  
  5. table {
  6. border-collapse: collapse;
  7. }
  8.  
  9. thead, tfoot {
  10. color: #fff;
  11. background-color: #427fef;
  12. }
  13.  
  14.  
  15. tbody > tr {
  16. border-top: 1px solid #c4dcf3;
  17. border-bottom: 1px solid #c4dcf3;
  18. }
  19.  
  20. th, td {
  21. padding: 10px;
  22. }
  23.  
  24. tbody > tr:nth-child(odd) {
  25. background-color: #eef7ff;
  26. }
  27.  
  28. .box {
  29. width: 300px;
  30. height: 300px;
  31. background-color: tomato;
  32. border-radius: 4%;
  33. box-shadow: 10px 10px lightgrey;
  34. }