forked from nishant0708/IIPS_EXAM_STUDENT_PORTAL
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request nishant0708#5 from TanishqMehrunkarIIPSDAVV/Tanishq
Tanishq
- Loading branch information
Showing
2 changed files
with
147 additions
and
159 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,118 +1,103 @@ | ||
body ::placeholder | ||
{ | ||
body ::placeholder { | ||
color: white; | ||
} | ||
body { | ||
height: 100vh; | ||
margin: 0; | ||
} | ||
.password-eye-container | ||
{ | ||
position: relative; | ||
} | ||
.display-flex | ||
{ | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
.display-flex div | ||
{ | ||
width: 225px; | ||
} | ||
.display-flex div:nth-child(even) | ||
{ | ||
margin-right: 13px; | ||
} | ||
.eyes-login | ||
{ | ||
position: absolute; | ||
right: 7px; | ||
top:12px; | ||
} | ||
.eyes-login:hover | ||
{ | ||
cursor: pointer; | ||
} | ||
.eyes-login:nth-child(2) | ||
{ | ||
display: none; | ||
} | ||
height: 100vh; | ||
margin: 0; | ||
} | ||
.password-eye-container { | ||
position: relative; | ||
} | ||
.display-flex { | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
.display-flex div { | ||
width: 225px; | ||
} | ||
.display-flex div:nth-child(even) { | ||
margin-right: 13px; | ||
} | ||
.eyes-login { | ||
position: absolute; | ||
right: 10px; | ||
top: 12px; | ||
} | ||
.eyes-login:hover { | ||
cursor: pointer; | ||
} | ||
.login-container { | ||
width: 100%; | ||
max-width: 500px; | ||
padding: 20px; | ||
border: 1px solid #ccc; | ||
border-radius: 8px; | ||
background-color: #282828; | ||
box-shadow: 0 0 10px 0 white; | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
.login-container img { | ||
width: 100px; | ||
height: 100px; | ||
margin-bottom: 20px; | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
.login-container h2 { | ||
text-align: center; | ||
margin-bottom: 20px; | ||
color: #fffcfc; | ||
} | ||
|
||
.login-container form { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.login-container label { | ||
margin-bottom: 8px; | ||
color: #fffcfc; | ||
} | ||
|
||
.login-container input { | ||
padding: 10px; | ||
margin-bottom: 20px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
font-size: 16px; | ||
width: 95%; | ||
background-color: #6e6e6e; | ||
color: white; | ||
} | ||
|
||
.login-container button { | ||
padding: 10px; | ||
border: none; | ||
border-radius: 4px; | ||
background-color: #4caf50; | ||
color: white; | ||
font-size: 16px; | ||
cursor: pointer; | ||
} | ||
|
||
.login-container button:hover { | ||
background-color: #45a049; | ||
} | ||
|
||
@media (max-width: 720px) { | ||
.login-container { | ||
width: 100%; | ||
max-width: 500px; | ||
padding: 20px; | ||
border: 1px solid #ccc; | ||
border-radius: 8px; | ||
background-color: #282828; | ||
box-shadow: 0 0 10px 0 white; | ||
position:absolute; | ||
top:50%; | ||
left:50%; | ||
transform: translate(-50%,-50%); | ||
} | ||
|
||
.login-container img { | ||
width: 100px; | ||
height: 100px; | ||
margin-bottom: 20px; | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
.login-container h2 { | ||
text-align: center; | ||
margin-bottom: 20px; | ||
color: #fffcfc; | ||
} | ||
|
||
.login-container form { | ||
display: flex; | ||
flex-direction: column; | ||
width: 275px; | ||
} | ||
|
||
.login-container label { | ||
margin-bottom: 8px; | ||
color: #fffcfc; | ||
.display-flex div { | ||
width: 120px; | ||
} | ||
|
||
.login-container input { | ||
padding: 10px; | ||
margin-bottom: 20px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
font-size: 16px; | ||
width: 95%; | ||
background-color: #6e6e6e; | ||
color: white; | ||
.display-flex div:nth-child(even) { | ||
margin-right: 9px; | ||
} | ||
|
||
.login-container button { | ||
padding: 10px; | ||
border: none; | ||
border-radius: 4px; | ||
background-color: #4CAF50; | ||
color: white; | ||
font-size: 16px; | ||
cursor: pointer; | ||
} | ||
|
||
.login-container button:hover { | ||
background-color: #45a049; | ||
} | ||
|
||
@media(max-width: 720px) | ||
{ | ||
.login-container | ||
{ | ||
width: 275px; | ||
} | ||
.display-flex div | ||
{ | ||
width: 120px; | ||
} | ||
.display-flex div:nth-child(even) | ||
{ | ||
margin-right: 9px; | ||
} | ||
} | ||
} |
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