Button preview
Button styles HTML
<button>Example text</button>
Button Styles CSS
button { cursor: pointer; display: block; font-size: 26px; width: auto; height: auto; font-weight: normal; color: #ffa260; background-color: #2f2f2f; padding: 10px 10px 10px 10px; border-radius: none; border: 3px solid #ffa260; box-shadow: none; transition: all 0.2s ease-in; } button:hover { color: #ffffff; background-color: #2f2f2f; border-radius: none; border: 3px solid #e5ff60; box-shadow: 0px 11px 12px 0px #e5ff60; transition: all 0.2s ease-out; }