Skip to content

Commit

Permalink
Modify the login style according to the requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Dachrono committed Nov 7, 2023
1 parent 5403bf0 commit 0f8b206
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions src/Style/Login.css
Original file line number Diff line number Diff line change
@@ -1,21 +1,37 @@
.loginPage {
width: 100%;
height: 50vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}

.loginPage h1 {
margin: 50px 0 25px 0;
color: #9dc320;
}

.loginPage h3 {
margin: 50px 0 25px 0;
color: gray;
}

.loginPage img {
max-width: 250px;
height: auto;
border-radius: 50%;
margin-bottom: 20px;
}

.loginForm {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
background-color: #c1f6fd8e;
background-color: #9dc3205b;
border-radius: 10px;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
padding: 20px;
Expand All @@ -25,7 +41,7 @@
.loginForm input {
width: 50%;
height: 40px;
border: 1px solid #1e90ff;
border: 1px solid grey;
border-radius: 5px;
padding: 0 10px;
font-size: 16px;
Expand All @@ -47,7 +63,7 @@
width: 30%;
height: 40px;
margin-top: 15px;
background-color: #1e90ff;
background-color: #9dc320;
border: none;
border-radius: 5px;
color: #fff;
Expand Down

0 comments on commit 0f8b206

Please sign in to comment.