Skip to content

Commit

Permalink
New Login/Register Page Style
Browse files Browse the repository at this point in the history
Updated the style of the login and register page
  • Loading branch information
meziyum committed Mar 12, 2024
1 parent 64160c2 commit b2cc025
Showing 1 changed file with 88 additions and 1 deletion.
89 changes: 88 additions & 1 deletion src/sass/login/login.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,93 @@

@import "../main.scss";

@mixin white-bold() {
color: white;
font-weight: bold;
}

body {

background: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%);
background-attachment: fixed;
display: flex;

#login {

h1 {
display: none;
}

.message {
display: none;
}

#login_error {
margin: 0 13px 0 13px;
text-align: center;
color: white;
background: red;
border: none;
border-radius: 12px;
}

#loginform, #registerform {
margin: 12px 12px 12px 12px;
border-radius: 12px;

label{
font-weight: 600;
}

input {
font-weight: 500;
font-size: 14px;
background-color: #def0fa;
border-color: $theme-primary;

&:focus {
border-color: $theme-primary;
}
}

.submit{
#wp-submit{
margin-top: 24px;
width: 100%;
background-color: $theme-primary;
border-radius: 24px;
}
}

.forgetmenot {
}
}

#registerform {
#reg_passmail {
font-weight: 500;
font-size: 14px;
}
}

#nav {
text-align: center;
@include white-bold;

a {
@include white-bold;
}
}

#backtoblog{
text-align: center;

a {
@include white-bold;
}
}

.privacy-policy-page-link {
display: none;
}
}
}

0 comments on commit b2cc025

Please sign in to comment.