Skip to content

Instantly share code, notes, and snippets.

@NaserKhoshfetrat
Last active June 9, 2018 13:46
Show Gist options
  • Save NaserKhoshfetrat/0964547a04c78f72e3dc3633f94decc1 to your computer and use it in GitHub Desktop.
Save NaserKhoshfetrat/0964547a04c78f72e3dc3633f94decc1 to your computer and use it in GitHub Desktop.
css button highlighted
/*#region button_highlighted */
.button_highlighted {
background-color: white;
color: black;
border: 2px solid #008CBA;
border-radius: 4px;
font-size: 18px;
padding-top: 3px;
padding-bottom: 3px;
padding-left: 5px;
padding-right: 5px;
}
.button_highlighted:hover {
background-color: #008CBA;
color: white;
}
/*#endregion */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment