main.css 797 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. table {
  2. font-size: 14px;
  3. text-align: center;
  4. border: 1px solid #9c9c9c;
  5. margin: 20px;
  6. }
  7. td:first-child {
  8. background: #3f96e2;
  9. color: white;
  10. padding: 10px;
  11. }
  12. td {
  13. border-style: solid;
  14. border-width: 0 1px 1px 0;
  15. border-color: white;
  16. background: #d8e6f3;
  17. }
  18. input[type="button"] {
  19. border: none;
  20. color: white;
  21. padding: 5px 15px;
  22. text-decoration: none;
  23. cursor: pointer;
  24. margin: 5px;
  25. background-color: #afcde7;
  26. border-radius: 10px;
  27. transition: all 0.5s;
  28. }
  29. input[type="button"]:hover {
  30. background-color: #64a7e2;
  31. border-radius: 10px;
  32. transform: translate(-2px, -2px);
  33. transition: all 0.5s;
  34. }
  35. input[type="button"]:active {
  36. box-shadow: none;
  37. transform: translate(0, 0);
  38. transition: all 0.5s;
  39. }