// Declaring variables @background-color:transparent; @border:#a32f24; @color:#a32f24; @background-color-hover:#c0392b; @border-hover:#c0392b; @color-hover:#ffffff; // Using variables a.btn-attention{ 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-attention:visited{ background: @background-color; color: @color; border: 2px solid @border; text-decoration: none; } a.btn-attention:active{ background: @background-color-hover; color: @color-hover; border: 2px solid @border-hover; text-decoration: none; } a.btn-attention:hover{ background: @background-color-hover; color: @color-hover; border: 2px solid @border-hover; text-decoration: none; opacity: 1; }