1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| .menuButton { position: relative; transition-property: background-color, color; transition-duration: .5s; transition-timing-function: ease-out; text-align: left; background-color: grey; left: 5px; top: 5px; height: 26px; color: white; border-color: black; border-radius: 5px; font-family: sans-serif; text-decoration: none; box-shadow: 2px 2px 1px black; padding: 2px 4px; border: 1px solid black; }
.menuButton:hover { position: relative; transition-property: background-color, color; transition-duration: .5s; transition-timing-function: ease-out; background-color:white; color:black; box-shadow: 2px 2px 1px black; }
|