I'm having some trouble creating a standard button. I can't seem to figure out why the text won't convert to uppercase when using text-transform: uppercase;
. Additionally, I want to disable the text underline after the button is clicked.
$btCol: #ff6600;
.Btn {
background-color: #fff;
border: 1px solid $btCol;
display: inline-block;
cursor: pointer;
color: #000;
font-size: 12px;
padding:5px 5px;
text-decoration: none;
text-transform: uppercase; //why does this not work?
}
.Btn:hover {
background-color: lighten($btCol, 50%);
text-decoration: none;
}
.Btn:active {
position: relative;
top: 1px;
}
.Btn:disabled {
background-color: #eb675e;
color: #999;
}
EDIT:
html:
<a href="#" class="Btn">light red</a>