buttons.css 690 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .buttons-choose {
  2. border: 1px solid black;
  3. width: 258px;
  4. height: 56px;
  5. background-color: white;
  6. }
  7. .buttons-choose:hover {
  8. background-color: black;
  9. color:white;
  10. transition: 1.2s;
  11. }
  12. .buttons-order {
  13. border: 1px solid black;
  14. width: 150px;
  15. height: 50px;
  16. margin-top: 25px;
  17. background-color: white;
  18. }
  19. .buttons-order:hover {
  20. background-color: black;
  21. color:white;
  22. transition: 1.2s;
  23. }
  24. .buttons-receive {
  25. border: 1px solid black;
  26. width: 160px;
  27. height: 56px;
  28. margin-top: 50px;
  29. }
  30. .buttons-receive:hover {
  31. background-color: black;
  32. color:white;
  33. transition: 1.2s;
  34. }