1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .buttons-choose {
- border: 1px solid black;
- width: 258px;
- height: 56px;
- background-color: white;
- }
- .buttons-choose:hover {
- background-color: black;
- color:white;
- transition: 1.2s;
- }
- .buttons-order {
- border: 1px solid black;
- width: 150px;
- height: 50px;
- margin-top: 25px;
- background-color: white;
- }
- .buttons-order:hover {
- background-color: black;
- color:white;
- transition: 1.2s;
- }
- .buttons-receive {
- border: 1px solid black;
- width: 160px;
- height: 56px;
- margin-top: 50px;
- }
- .buttons-receive:hover {
- background-color: black;
- color:white;
- transition: 1.2s;
- }
|