-
Notifications
You must be signed in to change notification settings - Fork 5
Signup #7
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
Open
Ogenyi25
wants to merge
3
commits into
DevCAbuja:dev
Choose a base branch
from
Ogenyi25:Signup
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Signup #7
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,136 @@ | ||
| .login { | ||
| margin: 0; | ||
| display: flex; | ||
| min-height: 100vh; | ||
| justify-content: center; | ||
| align-items: center; | ||
| background: #E5E5E5; | ||
| font-family: "Poppins", sans-serif, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; | ||
| .carousel { | ||
| background-color: white; | ||
| background-size: cover; | ||
| width: 300px; | ||
| height: 300px; | ||
| align-content: center; | ||
| padding: 40px; | ||
| border-radius: 50%; | ||
| left: 90px; | ||
| z-index: 5; | ||
| } | ||
|
|
||
| .carousel div img { | ||
| width: 250px; | ||
| height: 220px; | ||
| border-radius: 50%; | ||
|
|
||
| } | ||
| .carousel-indicators li { | ||
| width: 10px; | ||
| height: 10px; | ||
| border-radius: 100%; | ||
| } | ||
| .carousel-indicators { | ||
| bottom: -80px; | ||
| } | ||
| .box { | ||
| padding: 50px; | ||
| background: #ffffff; | ||
| box-shadow: 0px 116.543px 327.368px rgba(0, 0, 0, 0.25); | ||
| border-radius: 20px; | ||
| min-width: 80%; | ||
| } | ||
|
|
||
| .column1 { | ||
| width: 100%; | ||
| background-color: transparent; | ||
| height: 100%; | ||
| position: absolute; | ||
| top: 0; | ||
| left: 0; | ||
| background-image: url("../asset/imgs/transparent.png"); | ||
| background-position: center; | ||
| background-repeat: no-repeat; | ||
| background-size: cover; | ||
| // z-index: 3; | ||
| } | ||
|
|
||
| .column2 { | ||
| flex: 1; | ||
| } | ||
|
|
||
| h1 { | ||
| font-weight: 600; | ||
| font-size: 30px; | ||
| text-align: center; | ||
| } | ||
|
|
||
| .login-form { | ||
| text-align: center; | ||
| .icon { | ||
| margin: 20px; | ||
| } | ||
| .input-group { | ||
| display: flex; | ||
| width: 100%; | ||
| height: 60px; | ||
| background: #e8f0fe; | ||
| opacity: 0.99; | ||
| border: 2px solid rgb(91, 116, 227); | ||
| box-sizing: border-box; | ||
| box-shadow: 0px 13.524px 27.048px rgba(0, 0, 0, 0.15); | ||
| border-radius: 56.3917px; | ||
| margin: 10px 0px 10px 0px; | ||
| align-content: center; | ||
| padding: 20px; | ||
| .input { | ||
| flex: 1; | ||
| padding-left: 10px; | ||
| border: none; | ||
| background-color: transparent !important; | ||
| } | ||
| input:focus, | ||
| textarea:focus, | ||
| select:focus { | ||
| outline: none; | ||
| background-color: transparent !important; | ||
| } | ||
| img { | ||
| height: 30px; | ||
| } | ||
| } | ||
| } | ||
|
|
||
| .button { | ||
| width: 100%; | ||
| background-color: rgba(83, 66, 235, 0.97); | ||
| color: white; | ||
| opacity: 0.99; | ||
| backdrop-filter: blur(210.981px); | ||
| border: 3.381px solid rgb(66, 88, 211); | ||
| box-sizing: border-box; | ||
| border-radius: 56.3917px; | ||
| margin: 10px 0px 10px 0px; | ||
| align-content: center; | ||
|
|
||
| padding: 20px; | ||
| } | ||
|
|
||
| .pass { | ||
| color: black; | ||
| } | ||
|
|
||
| .regain { | ||
| color: rgb(65, 44, 255); | ||
| } | ||
|
|
||
| .p1 { | ||
| float: inline-end; | ||
| color: black; | ||
| } | ||
|
|
||
| .p2 { | ||
| float: inline-end; | ||
| color: black; | ||
| } | ||
| } | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| @import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700|Poppins:400,600,700,800&display=swap'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| @import url('https://fonts.googleapis.com/css?family=Pacifico'); | ||
| @import url('https://fonts.googleapis.com/css?family=Kaushan+Script'); | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,83 @@ | ||
| .nav { | ||
| width: 100%; | ||
| float: right; | ||
| padding: 0; | ||
| list-style: none; | ||
| padding: 0px 35px 0px 0px; | ||
| margin: 0px 30px 0px 0px; | ||
|
|
||
| } | ||
| #skin { | ||
| font-family: Source Sans Pro; | ||
| padding: 0px 0px 0px 70px; | ||
| margin: 0px 0px 0px 20px; | ||
| } | ||
| .nav li { | ||
| float: right; | ||
| text-align:right; | ||
| padding: 0px 0px 0px 5px; | ||
| margin: 0px 0px 0px 5px; | ||
| } | ||
| .nav li a { | ||
| display: block; | ||
| padding: 0px 0px 0px 5px; | ||
| margin: 0px 0px 0px 5px; | ||
| text-decoration: none; | ||
| text-align: right; | ||
| float: right; | ||
| } | ||
| .style { | ||
| font-family: Kaushan Script; | ||
| } | ||
| .polygon { | ||
| position: absolute; | ||
| width: 390px; | ||
| height: 517px; | ||
| left: 860px; | ||
| top: 80px; | ||
| background: rgb(96, 118, 192); | ||
| border-radius: 20px; | ||
| transform: rotate(-90deg); | ||
| } | ||
|
|
||
| .out { | ||
| padding: 50px; | ||
| font-style: normal; | ||
| font-weight: normal; | ||
| font-family: Kaushan Script; | ||
| font-size: 60px; | ||
| line-height: 116px; | ||
| color: #1A348D; | ||
| } | ||
|
|
||
| .text { | ||
| position: absolute; | ||
| width: 624px; | ||
| height: 100px; | ||
| left: 57px; | ||
| top: 508px; | ||
| font-family: Pacifico; | ||
| font-style: normal; | ||
| font-weight: normal; | ||
| font-size: 38px; | ||
| line-height: 146.28%; | ||
| color: #1A348D; | ||
| } | ||
| .button { | ||
| position: absolute; | ||
| width: 242px; | ||
| height: 86px; | ||
| left: 823px; | ||
| top: 613px; | ||
| background: #1A348D; | ||
| border-radius: 30px; | ||
| } | ||
|
|
||
| .practice { | ||
| color: red; | ||
| } | ||
| .mynav { | ||
| position: sticky; | ||
| top: 0; | ||
| background-color: #1A348D; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,135 @@ | ||
| .signup { | ||
| margin: 0; | ||
| display: flex; | ||
| min-height: 100vh; | ||
| justify-content: center; | ||
| align-items: center; | ||
| background: #E5E5E5; | ||
| font-family: "Poppins", sans-serif, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; | ||
| .carousel { | ||
| background-color: white; | ||
| background-size: cover; | ||
| width: 300px; | ||
| height: 300px; | ||
| align-content: center; | ||
| padding: 40px; | ||
| border-radius: 50%; | ||
| left: 90px; | ||
| z-index: 5; | ||
| } | ||
|
|
||
| .carousel div img { | ||
| width: 250px; | ||
| height: 220px; | ||
| border-radius: 50%; | ||
|
|
||
| } | ||
| .carousel-indicators li { | ||
| width: 10px; | ||
| height: 10px; | ||
| border-radius: 100%; | ||
| } | ||
| .carousel-indicators { | ||
| bottom: -80px; | ||
| } | ||
| .box { | ||
| padding: 50px; | ||
| background: #ffffff; | ||
| box-shadow: 0px 116.543px 327.368px rgba(0, 0, 0, 0.25); | ||
| border-radius: 20px; | ||
| min-width: 80%; | ||
| } | ||
|
|
||
| .column1 { | ||
| width: 100%; | ||
| background-color: transparent; | ||
| height: 100%; | ||
| position: absolute; | ||
| top: 0; | ||
| left: 0; | ||
| background-image: url("../asset/imgs/transparent.png"); | ||
| background-position: center; | ||
| background-repeat: no-repeat; | ||
| background-size: cover; | ||
| // z-index: 3; | ||
| } | ||
|
|
||
| .column2 { | ||
| flex: 1; | ||
| } | ||
|
|
||
| h1 { | ||
| font-weight: 600; | ||
| font-size: 30px; | ||
| text-align: center; | ||
| } | ||
|
|
||
| .signup-form { | ||
| text-align: center; | ||
| .icon { | ||
| margin: 20px; | ||
| } | ||
| .input-group { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is also a kind of repetition, don't you think it's possible to move this common style definition into its own |
||
| display: flex; | ||
| width: 100%; | ||
| height: 60px; | ||
| background: #e8f0fe; | ||
| opacity: 0.99; | ||
| border: 2px solid rgb(91, 116, 227); | ||
| box-sizing: border-box; | ||
| box-shadow: 0px 13.524px 27.048px rgba(0, 0, 0, 0.15); | ||
| border-radius: 56.3917px; | ||
| margin: 10px 0px 10px 0px; | ||
| align-content: center; | ||
| padding: 20px; | ||
| .input { | ||
| flex: 1; | ||
| padding-left: 10px; | ||
| border: none; | ||
| background-color: transparent !important; | ||
| } | ||
| input:focus, | ||
| textarea:focus, | ||
| select:focus { | ||
| outline: none; | ||
| background-color: transparent !important; | ||
| } | ||
| img { | ||
| height: 30px; | ||
| } | ||
| } | ||
| } | ||
|
|
||
| .button { | ||
| width: 100%; | ||
| background-color: rgba(83, 66, 235, 0.97); | ||
| color: white; | ||
| opacity: 0.99; | ||
| backdrop-filter: blur(210.981px); | ||
| border: 3.381px solid rgb(66, 88, 211); | ||
| box-sizing: border-box; | ||
| border-radius: 56.3917px; | ||
| margin: 10px 0px 10px 0px; | ||
| align-content: center; | ||
|
|
||
| padding: 20px; | ||
| } | ||
|
|
||
| .pass { | ||
| color: black; | ||
| } | ||
|
|
||
| .regain { | ||
| color: rgb(65, 44, 255); | ||
| } | ||
|
|
||
| .p1 { | ||
| float: inline-end; | ||
| color: black; | ||
| } | ||
|
|
||
| .p2 { | ||
| float: inline-end; | ||
| color: black; | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.