Created
February 6, 2018 16:41
-
-
Save ScarletPonytail/ebf4cdcd0fd78f28450e326312ad8aba to your computer and use it in GitHub Desktop.
CSS - Transition
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input[type=submit] { | |
min-width: 150px; | |
border-radius: 25px; | |
background-color: #b10205; | |
color: #ffffff; | |
-webkit-transition: all 0.5s; | |
-moz-transition: all 0.5s; | |
-o-transition: all 0.5s; | |
transition: all 0.5s; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment