Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Created February 6, 2018 16:41
Show Gist options
  • Save ScarletPonytail/ebf4cdcd0fd78f28450e326312ad8aba to your computer and use it in GitHub Desktop.
Save ScarletPonytail/ebf4cdcd0fd78f28450e326312ad8aba to your computer and use it in GitHub Desktop.
CSS - Transition
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