// Declaring variables @background-color:transparent; @border:#2980b9; @color:#2980b9; @background-color-hover:#3498db; @border-hover:#3498db; @color-hover:#ffffff; // Using variables a.btn-primary{ display: inline-block; background: @background-color; color: @color; border: 2px solid @border; border-radius: 6px; min-width: 4em; max-width: 100%; font-size: 100%; line-height: 1.8; text-align: center; text-decoration: none; cursor:pointer; padding: 1em; transition: all 0.2s; } a.btn-primary:visited{ background: @background-color; color: @color; border: 2px solid @border; text-decoration: none; } a.btn-primary:active{ background: @background-color-hover; color: @color-hover; border: 2px solid @border-hover; text-decoration: none; } a.btn-primary:hover{ background: @background-color-hover; color: @color-hover; border: 2px solid @border-hover; text-decoration: none; opacity: 1; }