Published on:

100 Buttons 036


button{
    outline: none;
    position: relative;
    top: 0;
    cursor: pointer;
    display: block;
    text-align: center;
    border: none;
    background-color: transparent;
    color: #FFF;
    padding: 1.25em 2em 1em;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .3em;
    text-transform: uppercase;
    transition: all .2s ease;
}

button:before,
button:after{
    content: "";
    position: absolute;
    z-index: -1;
    background-color: #85d5cf;
    transition: all .2s ease;
}

button:before{
    border-top: 2px solid #FFF;
    border-left: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    box-shadow: 3px 3px 0 #62c5fb;
    width: 50%;
    height: 100%;
    left: 0;
    top: 2px;
    transform: skew(0, -6deg);
}

button:after{
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    box-shadow: 3px 3px 0 #62c5fb;
    width: 50%;
    height: 100%;
    right: 0;
    top: 2px;
    transform: skew(0, 6deg);
}

button:hover{
    top: -5px;
}

button:hover:before,
button:focus:before,
button:hover:after,
button:focus:after{
    box-shadow: 3px 8px 0 #62c5fb;
}

Published on:

100 Buttons 035


button{
    outline: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-align: center;
    border: none;
    border-radius: 50px 15px 35px 0;
    background-color: rgba(0,0,0,.2);
    color: #fff;
    padding: 1em 2em;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .3em;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px #000;
    box-shadow: 2px 2px 5px rgba(3, 95, 8, 0.73);
    transition: all .4s ease;
}

button:before{
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    background-image: -webkit-repeating-linear-gradient(-65deg, #f1c900, #f1c900 10px, #673f00 20px, #673f00 25px);
    background-image: repeating-linear-gradient(-65deg, #f1c900, #f1c900 10px, #673f00 20px, #673f00 25px);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

button:hover{
    background-color: transparent;
}

Published on:

100 Buttons 034


button{
    outline: none;
    position: relative;
    cursor: pointer;
    display: block;
    text-align: center;
    border: none;
    border: 1px solid rgba(255,255,255,.5);
    background: transparent;
    color: #fff;
    padding: 1em 2em;
    font-family: serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: .3em;
    text-transform: uppercase;
    transition: all .4s ease;
}

button:before,
button:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    transition: all .4s ease;
}

button:before{
    border-top: 1px solid #edaeff;
    border-left: 1px solid #edaeff;
    max-width: 0;
    max-height: 0;
    left: -1px;
    top: -1px;
}

button:after{
    border-bottom: 1px solid #edaeff;
    border-right: 1px solid #edaeff;
    max-width: 0;
    max-height: 0;
    bottom: -1px;
    right: -1px;
}

button:hover{
    border-color: transparent;
    color: #edaeff;
}

button:focus:before,
button:hover:before,
button:focus:after,
button:hover:after{
    max-width: 100%;
    max-height: 100%;
}

Published on:

100 Buttons 033


button{
    outline: none;
    position: relative;
    cursor: pointer;
    display: block;
    text-align: center;
    border: 6px double #ffd500;
    border-radius: 60px;
    background: transparent;
    color: #ffd500;
    padding: .75em 2em;
    font-family: monospace;
    font-size: 18px;
    line-height: 1;
    letter-spacing: .3em;
    text-transform: uppercase;
    transition: all .2s ease;
}

button:focus,
button:hover{
    background-color: rgba(255, 213, 0, 0.5);
    color: #252b69;
}

Published on:

100 Buttons 032


button{
    outline: none;
    position: relative;
    cursor: pointer;
    display: block;
    text-align: center;
    border: none;
    background: #da450f;
    color: #ffd8c8;
    padding: 1em 2em;
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    text-transform: uppercase;
    transform: skew(-12deg);
    transition: all .2s ease;
}

button:focus,
button:hover{
    transform: skew(0deg);
}

Published on:

100 Buttons 031


button{
    outline: none;
    position: relative;
    cursor: pointer;
    display: block;
    text-align: center;
    border: 2px solid #cd9191;
    border-radius: 10px;
    background: linear-gradient(#ff7e7e 0%, #ce0000 100%);
    box-shadow: 0 5px 0px 2px #4c0000;
    color: #ffebeb;
    padding: .5em 1em;
    font-family: sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #631313, -1px -1px 2px #631313;
    transition: all .2s ease;

}

button:focus,
button:hover{
    color: #ffffff;
    background: linear-gradient(#ff7e7e 0%, #e23d3d 100%);          
}

Published on:

100 Buttons 030


button{
    outline: none;
    position: relative;
    cursor: pointer;
    display: block;
    text-align: center;
    border: 2px solid #FFF;
    border-radius: 30px;
    background: linear-gradient(#ffae00 0%, #ff7c00 100%);
    box-shadow: 0 0 10px #024888;
    color: #FFF;
    padding: 1em 2em;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: all .2s ease;
}

button:focus,
button:hover{
    background: linear-gradient(#ffbb00 0%, #ff8e1d 100%);
}

button:active{
    position: relative;
    top: 2px;
    box-shadow: 0 0 5px #032d54;
}

Published on:

100 Buttons 029


button{
    outline: none;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
    text-align: center;
    border: 1px solid #d44e25;
    background-color: transparent;
    color: #d44e25;
    padding: 1em 2em;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: all .2s ease;
}

button:after{
    content: '';
    display: none;
    height: 7px;
    width: 100%;
    background-image: -webkit-repeating-linear-gradient(45deg, #d44e25, #d44e25 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(45deg, #d44e25, #d44e25 1px, transparent 2px, transparent 5px);
    border-top: 1px solid #d44e25;
    position: absolute;
    left: 0;
    bottom: 0;
    background-size: 7px 7px;
}

button:focus,
button:hover{
    padding-bottom: 20px;
}

button:focus:after,
button:hover:after{
    display: block;
    -webkit-animation: stripe-slide 12s infinite linear forwards;
    animation: stripe-slide 12s infinite linear forwards;
}

@-webkit-keyframes stripe-slide {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 100% 0;
    }
}
@keyframes stripe-slide {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

Published on:

100 Buttons 028


button{
    outline: none;
    cursor: pointer;
    display: block;
    text-align: center;
    border: 2px solid #FFF;
    background-color: rgba(255,255,255,.8);
    color: #d44e25;
    padding: 1em 2em;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
    box-shadow: 0 0 5px rgba(0,0,0,.6);
    transition: all .3s ease;           
}

button:focus,
button:hover{
    background-color: #FFF;
    box-shadow: 0 0 10px rgba(0,0,0,.7);
}

Published on:

100 Buttons 027


button{
    outline: none;
    cursor: pointer;
    display: block;
    text-align: center;
    border: none;
    background-color: #647389;
    color: #FFF;
    padding: 0;
    width: 6em;
    height: 6em;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .3em;
    text-transform: uppercase;
    box-shadow: 0 0 5px rgba(0,0,0,.4);
    transition: all .3s ease;           
}

button:focus,
button:hover{
    color: #89c3ec;
    box-shadow: 0 0 10px rgba(0,0,0,.7);
}

Published on:

100 Buttons 026


button{
    outline: none;
    cursor: pointer;
    display: block;
    position: relative;
    text-align: center;
    border: 2px solid #FFF;
    background-color: transparent;
    color: #FFF;
    padding: 1em 1.75em;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .3em;
    text-transform: uppercase;
    transition: all .3s ease;           
}

button:focus,
button:hover{
    color: #65d0a3;
}

button:before,
button:after{
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 50%;
    max-height: 0;
    left: 0;
    background-color: #FFF;
    transition: all .3s ease;
}

button:before{
    top: 0;
}

button:after{
    bottom: 0;
}

button:hover:before,
button:focus:before{
    max-height: 50%;
}

button:hover:after,
button:focus:after{
    max-height: 50%;
}

Published on:

100 Buttons 025


button{
    outline: none;
    cursor: pointer;
    display: block;
    position: relative;
    text-align: center;
    border: 2px solid #ff6700;
    background-color: transparent;
    color: #ff6700;
    padding: 1em 1.75em;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .3em;
    text-transform: uppercase;
    transition: all .3s ease;           
}

button:focus,
button:hover{
    color: #ff9e00;
    background-color: rgba(255, 103, 0, 0.31);
}

button:before,
button:after{
    content: "";
    position: absolute;
    z-index: -1;
    width: 1em;
    height: 1em;
    transition: all .3s ease;
}

button:before{
    top: -7px;
    left: -7px;
    border-top: 2px solid #ff6700;
    border-left: 2px solid #ff6700;
}

button:after{
    right: -7px;
    bottom: -7px;
    border-bottom: 2px solid #ff6700;
    border-right: 2px solid #ff6700;
}

button:hover:before,
button:focus:before{
    top: -12px;
    left: -12px;
}

button:hover:after,
button:focus:after{
    right: -12px;
    bottom: -12px;
}

Published on:

100 Buttons 024


button{
    outline: none;
    cursor: pointer;
    display: block;
    position: relative;
    text-align: center;
    border: 6px solid rgba(0, 158, 255, 0.7);
    border-radius: 10px 10px 35px 15px;
    background-color: transparent;
    color: #900000;
    padding: .75em 1.5em;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .3em;
    text-transform: uppercase;
    transition: all .3s ease;           
}

button:focus,
button:hover{
    color: #bc5413;
}

button:before,
button:after{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .3s ease;
}

button:before{
    top: -13px;
    left: -15px;
    border: 12px solid rgba(255, 213, 0, 0.75);
    border-radius: 10px 10px 35px 15px;
    transform: rotate(-8deg);
}

button:after{
    top: -10px;
    left: -20px;
    transform-origin: center;
    width: 108%;
    border: 8px solid rgba(244, 82, 0, 0.6);
    border-radius: 50px 20px 25px 15px;
    transform: rotate(6deg);
}

button:hover:before,
button:hover:after,
button:focus:before,
button:focus:after{
    top: -6px;
    left: -6px;
    width: 100%;
    border-radius: 10px 10px 35px 15px;
    transform: rotate(0deg);
    border-width: 6px;
}

Published on:

100 Buttons 023


button{
    outline: none;
    cursor: pointer;
    display: block;
    position: relative;
    text-align: center;
    border: none;
    border-radius: 4px;
    background-color: #000000;
    color: #ffffff;
    padding: .75em 1.5em;
    font-family: monospace;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    text-transform: lowercase;
    transition: all .3s ease;           
}

button:hover,
button:focus{
    text-shadow: 1px 1px 0px #00ff1f,
                -1px -1px 0px #ff0000,
                -1px 1px 0px #005aff;
    box-shadow: 2px 2px 0px #00ff1f,
                -2px -2px 0px #ff0000,
                -2px 2px 0px #005aff;
}

Published on:

100 Buttons 022


button{
    outline: none;
    cursor: pointer;
    display: block;
    position: relative;
    text-align: center;
    border: none;
    background-color: transparent;
    color: #ffffff;
    width: 212px;
    height: 60px;
    padding: 0;
    font-family: serif;
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    text-transform: lowercase;
    text-shadow: 1px 1px 2px #395280;
    transition: all .2s ease;
}

button:hover,
button:focus{
    text-shadow: 2px 2px 4px #395280;
}

button:before,
button:after{
    content: "";
    position: absolute;
    z-index: -1;
    top: -20px;
    left: 0;
    width: 60px;
    height: 60px;
    border: 20px solid #c4ebf5;
    border-radius: 50px 50px 0 50px;
    transform: rotate(-45deg);
    transition: all .3s ease;
}

button:after{
    left: auto;
    right: 0;
    border-radius: 50px 50px 50px 0;
    transform: rotate(45deg);
}

button:focus:after,
button:hover:after,
button:focus:before,
button:hover:before{
    border-color: #d4efff;
}

Published on:

100 Buttons 021


button{
    outline: none;
    cursor: pointer;
    display: block;
    position: relative;
    text-align: center;
    border: none;
    background: #ff9e00;
    color: #253f43;
    padding: 1.25em 2em;
    font-family: serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .5em;
    transition: padding .2s ease;
}

button:before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 1em;
    z-index: 2;
    border-bottom: 1px solid #253f43;
    width: 100%;
    max-width: 0;
    transform: translate(-55%,0);
    transition: max-width .2s ease;
}

button:focus,
button:hover{
    padding-top: 1em;
    padding-bottom: 1.5em;
}

button:focus:before,
button:hover:before{
    max-width: 40%;
}

Published on:

100 Buttons 020


button{
    outline: none;
    cursor: pointer;
    display: block;
    position: relative;
    text-align: center;
    border: 1px dashed #FFF;
    background: transparent;
    color: #FFF;
    padding: 1.5em 3em;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .5em;
    transition: all .2s ease;
    overflow: hidden;
}

button:before{
    content: "\25b6";
    position: absolute;
    left: 2em;
    top: -1em;
    opacity: 0;
    transition: all .4s ease;
}

button:focus,
button:hover{
    border-style: solid;
    padding-left: 4em;
    padding-right: 2em;
}

button:focus:before,
button:hover:before{
    top: 50%;
    transform: translate(0,-50%);
    opacity: 1;
}

Published on:

100 Buttons 019


button{
    outline: none;
    cursor: pointer;
    display: block;
    text-align: center;
    border: none;
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    background-size: 400% 400%;
    color: #FFF;
    padding: 1em 2.5em;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .3em;
}

button:focus,
button:hover{
    -webkit-animation: Gradient .7s ease 1;
    -moz-animation: Gradient .7s ease 1;
    animation: Gradient .7s ease 1;
    background-position: 100% 50%;
}

@-webkit-keyframes Gradient {
    0% {background-position: 0% 50%}
    100% {background-position: 100% 50%}
}

@-moz-keyframes Gradient {
    0% {background-position: 0% 50%}
    100% {background-position: 100% 50%}
}

@keyframes Gradient {
    0% {background-position: 0% 50%}
    100% {background-position: 100% 50%}
}