-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Styling added to signUp and login pages
- Loading branch information
Showing
13 changed files
with
152 additions
and
26 deletions.
There are no files selected for viewing
This file contains 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
Binary file not shown.
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains 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 |
---|---|---|
@@ -1,35 +1,152 @@ | ||
* { | ||
margin: 0px; | ||
padding: 0px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.image-container{ | ||
display: flex; | ||
align-items:flex-end; | ||
|
||
} | ||
.container{ | ||
text-align: center; | ||
border:2px solid black; | ||
padding: 10px; | ||
display: flex; | ||
flex-direction: row-reverse; | ||
|
||
} | ||
.form-container{ | ||
background-color: #B7E0FF; | ||
justify-content: center; | ||
display: flex; | ||
align-items: center; | ||
width:100vw; | ||
height:100vh; | ||
|
||
|
||
} | ||
.signinform-container{ | ||
|
||
background-color: #D3E2FA; | ||
justify-content: center; | ||
display: flex; | ||
align-items: center; | ||
width:100vw; | ||
height:100vh; | ||
|
||
|
||
} | ||
|
||
.form-fields{ | ||
display: flex; | ||
flex-direction: column; | ||
width:100%; | ||
gap:5px; | ||
|
||
} | ||
.buttons{ | ||
margin-top: 10px; | ||
} | ||
h1{ | ||
font-size: 1.2rem; | ||
font-size: 2rem; | ||
color:#091057; | ||
} | ||
label{ | ||
font-size: 1rem; | ||
} | ||
.form{ | ||
display: flex; | ||
background-color:white; | ||
display: flex; | ||
flex-direction: column; | ||
gap:2px; | ||
gap:20px; | ||
align-items: center; | ||
|
||
|
||
justify-content: center; | ||
border-radius: 10px; | ||
width:30vw; | ||
height:80vh; | ||
padding-inline:30px; | ||
box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px; | ||
} | ||
.signinform{ | ||
background-color:white; | ||
display: flex; | ||
flex-direction: column; | ||
gap:30px; | ||
align-items: center; | ||
justify-content: center; | ||
width:30vw; | ||
height:80vh; | ||
padding-inline:30px; | ||
box-shadow: rgba(255, 116, 143, 0.4) 5px 5px, rgba(255, 116, 143, 0.3) 10px 10px, rgba(255, 116, 143, 0.2) 15px 15px, rgba(255, 116, 143, 0.1) 20px 20px, rgba(255, 116, 143, 0.05) 25px 25px; | ||
|
||
} | ||
input{ | ||
padding:2px; | ||
margin-block: 5px; | ||
padding:12px; | ||
width:100%; | ||
margin-bottom:20px; | ||
border-radius: 8px; | ||
border:2px solid #9bd1fa | ||
|
||
} | ||
label{ | ||
color:#093d82; | ||
} | ||
button{ | ||
padding-block:8px; | ||
padding-inline: 15px; | ||
padding:10px; | ||
background: #fff; | ||
border-radius: 20px; | ||
} | ||
width:9vw; | ||
border-radius: 10px; | ||
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; | ||
border-style:none; | ||
|
||
} | ||
|
||
.cancelbtn{ | ||
background-color: rgb(249, 89, 89); | ||
border:2px solid rgb(249, 89, 89); | ||
color:white; | ||
|
||
} | ||
.cancelbtn:hover{ | ||
background-color: red; | ||
border:2px solid red; | ||
cursor: pointer; | ||
font-weight: bold; | ||
} | ||
.buttons{ | ||
display: flex; | ||
gap:12px; | ||
} | ||
|
||
.signupbtn{ | ||
background-color:#091057; | ||
border:2px solid #091057; | ||
color:white; | ||
} | ||
.signupbtn:hover{ | ||
cursor: pointer; | ||
background-color: white; | ||
border:2px solid #091057; | ||
color:#091057; | ||
font-weight: bold; | ||
} | ||
|
||
.signinimage-container{ | ||
background: #fff; | ||
width:50%; | ||
|
||
} | ||
.sign-in-img{ | ||
width:100%; | ||
height: 100%; | ||
} | ||
.signinbtn{ | ||
background-color: #4F6BFC; | ||
color:white; | ||
} | ||
.signinbtn:hover{ | ||
color: #4F6BFC; | ||
background-color:white; | ||
border:2px solid #4F6BFC ; | ||
font-weight: bold; | ||
cursor:pointer; | ||
} |
This file contains 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
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.
Binary file not shown.