Looking to get rid of the box shadow and change the border color:
Tried this CSS code, but no luck so far:
.selector.noshadow {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
Any tips on how to remove the shadow and switch the border color from blue to red? Appreciate it!
Edit - Here's the HTML snippet:
<div class="form-group col-sm-3 col-sm-offset-3" style="background-color:#dcdcdc; padding:1em;">
<div>
<label for="createPassword">Create Password:</label>
<input type="password" class="form-control" id="inputCreatePassword" placeholder="Enter a password" ng-model="createPassword">
</div>
</div>