Keyboard Enter Key Style Button #109

CSS keyboard key style button. enter button

Adding these style CSS buttons to your website is easier than you think. Simply copy and paste the CSS code provided with each button design into your stylesheet

Preview Button Style

You can view the default style of buttons, the disabled state mode style of buttons, and the full-width block style of the button here. Some buttons style may not display in full width format

Button style

Disabled style

Full width block style

Button Source Code HTML and CSS

Click the button below to download the source code or edit it live.
To copy this click on the icon at the top right of the code box
Button HTML
<button class="btn-109">
  <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 40 27" class="arrow" >
    <line stroke-width="2" stroke="white" y2="14" x2="40" y1="14" x1="1"></line>
    <line stroke-width="2" stroke="white" y2="1.41537" x2="10.4324" y1="14.2433" x1="1.18869" ></line>
    <line stroke-width="2" stroke="white" y2="13.6007" x2="1.20055" y1="26.2411" x1="10.699" ></line>
    <line  stroke="white" y2="14.3133" x2="1.07325"  y1="13.6334"  x1="0.33996"></line>
    <line stroke-width="2" stroke="white" y2="13" x2="39" y1="8" x1="39"></line>
  </svg>
  ENTER
</button>
Button CSS
.btn-109 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    gap: 25px;
    font-size: 0.7em;
    letter-spacing: 2px;
    color: white;
    background: linear-gradient(to right, rgb(59, 59, 59), rgb(34, 34, 34));
    position: relative;
    border-radius: 8px;
    border: 1px solid rgb(65, 65, 65);
    transition-duration: 0.3s;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    /*** full width block ***/
    /* width: 100%; */
}

.btn-109 .arrow {
    height: 20px;
}

.btn-109:hover {
    transition-duration: 0.3s;
    box-shadow: 0px 0px 2px rgb(185, 185, 185), 0px 0px 10px rgb(97, 97, 97);
}

.btn-109:active {
    transform: scale(0.95);
}

/*** disabled style ***/
.btn-109:disabled {
    pointer-events: none;
    opacity: .65;
    color: #7e7e7e;
    background: #b9b9b9;
    box-shadow: none;
    text-shadow: none;
}