-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* major mobile/tablet progress * Minor CSS touch-ups * Clean up CSS * Update VSR message content * Implement tablet & mobile versions of VSR page * Implement tablet & mobile versions of VSR table page * Implement tablet and mobile versions of VSR view page * Fix children label on VSR --------- Co-authored-by: sydneyzhang18 <[email protected]> Co-authored-by: benjaminjohnson2204 <[email protected]>
- Loading branch information
1 parent
2839704
commit 488de7d
Showing
37 changed files
with
1,194 additions
and
698 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,181 @@ | ||
/* Login.css */ | ||
|
||
.loginContainer { | ||
position: relative; | ||
height: 100vh; | ||
margin: 0; | ||
} | ||
|
||
.loginBox { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
padding: 15px; | ||
border-radius: 12px; | ||
background: #fff; | ||
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); | ||
width: 70%; | ||
max-width: 580px; | ||
} | ||
|
||
.logoContainer { | ||
position: absolute; | ||
top: -65px; | ||
display: inline-flex; | ||
padding: 15px; | ||
align-items: flex-start; | ||
gap: 10px; | ||
border-radius: 12px; | ||
background: #fff; | ||
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); | ||
} | ||
|
||
.logoImage { | ||
background: lightgray no-repeat; | ||
width: 190px; | ||
height: 90px; | ||
} | ||
|
||
.image { | ||
width: 190px; | ||
height: 90px; | ||
} | ||
|
||
.welcomeText { | ||
color: #000; | ||
text-align: center; | ||
font-family: Lora; | ||
font-size: 40px; | ||
font-style: normal; | ||
font-weight: 700; | ||
line-height: normal; | ||
margin-top: 65px; /* Gap between Welcome and Name field */ | ||
} | ||
|
||
.loginForm { | ||
width: 80%; | ||
margin-top: 54px; /* Gap between Name and Password */ | ||
} | ||
|
||
.inputGroup { | ||
margin-bottom: 16px; /* Gap between Password and Forgot Password */ | ||
padding-top: 6px; | ||
} | ||
|
||
.label { | ||
display: block; | ||
margin-bottom: 5px; | ||
color: gray; | ||
font-size: 16px; | ||
} | ||
|
||
.input { | ||
width: 100%; | ||
padding: 8px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
} | ||
|
||
.forgotPassword { | ||
color: #4274f4; | ||
|
||
font-size: 16px; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: normal; | ||
text-align: center; | ||
padding-top: 30px; | ||
margin-bottom: 48px; /* Gap between Forgot password and Log In */ | ||
} | ||
|
||
.loginButton { | ||
width: 100%; | ||
height: 50px; | ||
flex-shrink: 0; | ||
border-radius: 4px; | ||
background: var(--Secondary-1, #102d5f); | ||
color: #fff; | ||
cursor: pointer; | ||
text-align: center; | ||
font-family: Lora; | ||
font-size: 24px; | ||
font-style: normal; | ||
font-weight: 700; | ||
line-height: normal; | ||
margin-bottom: 49px; | ||
} | ||
|
||
/* tablet version */ | ||
@media screen and (max-width: 850px) { | ||
.backgroundImage { | ||
object-fit: cover; | ||
object-position: 35% 10%; | ||
} | ||
|
||
.loginBox { | ||
width: 90%; | ||
max-width: 500px; | ||
} | ||
|
||
.loginForm { | ||
margin-top: 32px; /* Gap between Name and Password */ | ||
} | ||
|
||
.forgotPassword { | ||
font-size: 12px; | ||
margin-bottom: 38px; /* Gap between Forgot password and Log In */ | ||
} | ||
|
||
.loginButton { | ||
font-size: 18px; | ||
font-weight: 600; | ||
} | ||
} | ||
|
||
/* mobile version */ | ||
@media screen and (max-width: 550px) { | ||
.backgroundImage { | ||
object-fit: cover; | ||
object-position: 35% 10%; | ||
} | ||
|
||
.logoContainer { | ||
padding: 10px; | ||
} | ||
|
||
.logoImage { | ||
width: 130px; | ||
height: 60px; | ||
} | ||
|
||
.image { | ||
width: 130px; | ||
height: 60px; | ||
} | ||
|
||
.welcomeText { | ||
font-size: 28px; | ||
margin-top: 17px; /* Gap between Welcome and Name field */ | ||
} | ||
|
||
.loginForm { | ||
width: 100%; | ||
} | ||
|
||
.inputGroup { | ||
padding-top: 0; | ||
} | ||
|
||
.forgotPassword { | ||
padding-top: 16px; | ||
margin-bottom: 32px; /* Gap between Forgot password and Log In */ | ||
} | ||
|
||
.loginButton { | ||
margin-bottom: 17px; | ||
} | ||
} |
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
Oops, something went wrong.