3
0

styled for buyersform
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Mike Sutton 2023-08-21 17:27:01 +02:00
parent 0afaba271b
commit da172c0ac3
2 changed files with 78 additions and 0 deletions

View File

@ -0,0 +1,72 @@
.login-pf body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
transition: background-image 0.5s ease-in-out;
background-color: #f4f4f4;
}
.login-pf-page .card-pf {
max-width: 440px !important;
margin: auto !important;
}
.login-pf-page .login-pf-header h1 {
background: #0559FA !important;
}
.pf-c-button.pf-m-primary {
background: #0559FA !important;
}
div#kc-registration span a:hover {
background: #83b451;
}
#kc-header {
background: #ffffff;
display: none !important;
}
.app-logo {
display: none !important;
}
.login-pf-page .login-pf-page-header p::before {
display: none !important;;
}
.login-main-title::before {
content: "Buyersform";
}
.login-sub-heading::before {
content: "Sign in to have unresistricted access.";
}
#new-to-app::before {
content: "";
}
.register-main-title::before {
content: "Create your account";
}
.register-sub-heading::before {
content: "";
}
.pf-c-form-control {
font-size: 14px;
border: none !important;
background-color: #F4f4f4 !important;
height: auto !important;
padding: 15px 25px !important;
border-radius: 5px;
}

View File

@ -0,0 +1,6 @@
const privacyPolicy = document.getElementById('privacy-policy');
if (privacyPolicy) {
privacyPolicy.innerHTML = '<span>By signing up you agree to the BuyersForm Policy <a href="https://buyersform.com/privacy/">Privacy Policy</a></span>'
}