Skip to content

Commit

Permalink
Merge pull request #472 from Avidiptab17/main
Browse files Browse the repository at this point in the history
Fixed some issues and color grading
  • Loading branch information
PriyaGhosal authored Oct 11, 2024
2 parents da8840c + 8e4e1fe commit 4c90404
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 11 deletions.
5 changes: 5 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/BuddyTrail.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions auth.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ input {
left: 0;
}

.signin-signup {
.sign-in-signup {
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
Expand All @@ -44,7 +44,7 @@ form {
align-items: center;
justify-content: center;
flex-direction: column;
padding: 0rem 5rem;
padding: 5rem;
transition: all 0.2s 0.7s;
overflow: hidden;
grid-column: 1 / 2;
Expand Down Expand Up @@ -246,7 +246,7 @@ form.sign-in-form {
transform: translateX(-800px);
}

.container.sign-up-mode .signin-signup {
.container.sign-up-mode .sign-in-signup {
left: 25%;
}

Expand Down Expand Up @@ -316,15 +316,15 @@ form.sign-in-form {
min-height: 800px;
height: 100vh;
}
.signin-signup {
.sign-in-signup {
width: 100%;
top: 95%;
transform: translate(-50%, -100%);
transition: 1s 0.8s ease-in-out;
}

.signin-signup,
.container.sign-up-mode .signin-signup {
.sign-in-signup,
.container.sign-up-mode .sign-in-signup {
left: 50%;
}

Expand Down Expand Up @@ -408,7 +408,7 @@ form.sign-in-form {
transform: translateY(300px);
}

.container.sign-up-mode .signin-signup {
.container.sign-up-mode .sign-in-signup {
top: 5%;
transform: translate(-50%, 0);
}
Expand Down
6 changes: 3 additions & 3 deletions auth.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<body>
<div class="container">
<div class="forms-container">
<div class="signin-signup">
<div class="sign-in-signup">
<form action="#" class="sign-in-form">
<h2 class="title">Sign in</h2>
<div class="input-field">
Expand All @@ -19,8 +19,8 @@ <h2 class="title">Sign in</h2>
</div>
<div class="input-field">
<i class="fas fa-lock"></i>
<input type="password" placeholder="Password" id="signin-password" />
<i class="fas fa-eye password-toggle" onclick="togglePassword('signin-password', this)"></i>
<input type="password" placeholder="Password" id="sign-in-password" />
<i class="fas fa-eye password-toggle" onclick="togglePassword('sign-in-password', this)"></i>
</div>
<input type="submit" value="Login" class="btn solid" />
<p class="social-text">Or Sign in with social platforms</p>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
right: 50%;
transform: translateX(50%);
background-color: #333; /* Background color for tooltip */
color: #fff; /* Tooltip text color */
color: #f3f1f1; /* Tooltip text color */
padding: 5px;
border-radius: 5px;
white-space: nowrap; /* Prevent text from wrapping */
Expand Down

0 comments on commit 4c90404

Please sign in to comment.