I need help with a field that is supposed to have a black outline, similar to the one shown below:
However, here is what I currently have in my code:
.r{
height: 40px;
font-size: 30px;
width: 100px;
font-family: 'proxima_novalight';
outline: none;
background: none;
outline: 3px solid black;
}
Oddly enough, when I select the field, it appears smaller. Additionally, upon initial load, there's a grayish shadow-like outline around it. You can view a demo Here. Any suggestions on how to fix this issue?