// Declaring variables @background-color:#000000; @border:transparent; @color:#ffffff; @background-color-hover:#d5c4cf; @border-hover:transparent; @color-hover:#434343; // Using variables a.btn-default{ display: inline-block; background: @background-color; color: @color; border: 0px solid @border; border-radius: 0px; min-width: 4em; max-width: 100%; font-size: 100%; line-height: 1.8; text-align: center; text-decoration: none; cursor:pointer; padding-top: 1em; padding-bottom: 1em; padding-left: 3em; padding-right: 3em; transition: all 0.2s; } a.btn-default:visited{ background: @background-color; color: @color; border: 0px solid @border; text-decoration: none; } a.btn-default:active{ background: @background-color-hover; color: @color-hover; border: 0px solid @border-hover; text-decoration: none; } a.btn-default:hover{ background: @background-color-hover; color: @color-hover; border: 0px solid @border-hover; text-decoration: none; opacity: 1; }