ChangeStyle

by abhijeetkarve

HTML

<body class="theme-statement">
  <input name="Login1$UserName" type="text" id="Login1_UserName" class="input-field mb-3" placeholder="Email Address">
  <input name="Login1$Password" id="Login1_Password" type="password" class="input-field mb-3" placeholder="Password">
  <input type="submit" name="Login1$btnLogin" value="login" id="Login1_btnLogin" class="btnn primary-bg">
</body>

CSS

.theme-statement .primary-bg{
	background-color: #f56e4e;
}

.theme-statement .primary-color {
color: #f56e4e;
}
.theme-statement .primary-type, .theme-statement .primary-type:hover{
	color: #f56e4e;
}
.theme-statement .primary-border{
	border-color: #f56e4e;
}
.theme-statement a {
	color: #f56e4e;
}

JavaScript

$(document).ready(function () {
	$('.theme-statement .primary-bg').css('background-color','#055593');
});