Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎨 App Design: Sign up Page #391

Merged
merged 11 commits into from
Apr 17, 2023
Prev Previous commit
Next Next commit
💄add styles
  • Loading branch information
Michael-Otieno committed Mar 31, 2023
commit 62b795988428ab433ba89dfdc93d5f0dcfd53f7b
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,42 @@ $primary-icon-color: #919698;
$primary-color: #ffc200;
$secondary-elements-color: white;
.uppercase-txt {
text-transform: uppercase;
}

#googleBtn {
background-color: #de5246;
color: $secondary-elements-color;
font-weight: bold;
}

#msBtn {
background-color: #29487D;
color: $secondary-elements-color;
}

.mat-form-field-appearance-outline .mat-form-field-infix {
padding: 0 !important;

.special-input ::ng-deep .mdc-text-field--no-label:not(.mdc-text-field--textarea) .mat-mdc-form-field-input-control.mdc-text-field__input, .mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control {
margin-top: .3rem;
}


.special-input ::ng-deep .mdc-text-field--filled:not(.mat-form-field-disabled) {
background-color: white;
}
.special-input ::ng-deep .mdc-line-ripple {
background-color: white;
}

.special-input ::ng-deep .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
padding-top: 0px;
padding-bottom: 0px;
background: white;
}
.special-input ::ng-deep .mdc-text-field {
padding: 0;
}

.mat-form-field-appearance-outline .mat-form-field-wrapper {
background-color: #000000 !important;
.special-input ::ng-deep .mat-mdc-form-field:hover .mat-mdc-form-field-focus-overlay {
opacity: 0;
}

label{
margin-bottom: 1rem;
}

.small-txt {
Expand All @@ -47,30 +64,31 @@ $secondary-elements-color: white;
#forgot-btn {
padding-right: 0;
}

.icon-box {
padding: 15px;
// border: 1px solid #FDFDFD;
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
margin-right: -2px;
&.form-field-icon {
padding-top: 10px;
padding-bottom: 10px;
color: $primary-icon-color;
background-color: #70739D0D;
max-height: 35px;
}
&.google-icon {
color: $secondary-elements-color;
background-color: #de5246;
}
&.fb-icon {
color: $secondary-elements-color;
background-color: #29487D;
}
.spinner{
position: relative;
.spinner-box{
position: absolute;
left: 6%;
z-index: 9999;
top: 26%;
bottom: 0;
}
}
.googleBtn{
color: $secondary-elements-color;
background-color: #de5246;
border-radius: 11px;
.googleBtnTxt {
padding-left: 35px;
padding-right: 60px;
font-weight: 600;
font-size: 1.125rem;
}
}

.special-input ::ng-deep .mat-mdc-unelevated-button>.mat-icon, .mat-mdc-raised-button>.mat-icon, .mat-mdc-outlined-button>.mat-icon {
height: 1.2rem;
}
.special-input {
min-height: 40px;
}
Expand All @@ -84,11 +102,12 @@ input {
#register-button {
width: 100%;
background-color: $primary-color;
font-size: 12px;
height: 30px;
font-size: 1.125rem;
font-weight: 600;
color: white;
display: inline-block;
border-radius: 11px;

}

.form-body {
align-self: center;
width: 80%;
}