Styling links as buttons

Thursday, Jul 30, 2020
Frontend

Buttons are glorified links. Here are some pointers to style a link to create a button look:

before

.btn {
    text-decoration: none;
    background: #fbd46d;
    color: #222831;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 0.8em 1.6em;
    border-radius: 2em;
    font-family: arial, sans-serif;
}

.btn:hover {
    background: #eebb4d;
}

after

Fancy!