Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
LRPerzus committed Feb 10, 2023
2 parents b0097e2 + a70133d commit a57591d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
6 changes: 3 additions & 3 deletions signin.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ <h1>Sign In</h1>
<input type="text" id="signin-password" class="form-control" required>
</div>
<input type="submit" value="Send" class="btn btn-primary" id="signin-submit">
<div id="signuppos"><button id="signup">Create an Account</button></div>
</form>

</div>
</div>

<button id="signup">
<span>Create an Account</span>
</button>




Expand Down
24 changes: 24 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,30 @@ footer .copyright {
padding: 10%;
font-size: 2000%;
}
#signup{
background-color: plum;
border: none;
color: black;
padding: 10px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 15px;
font-weight: 700;
cursor: pointer;
transition: 0.3s ease;
border-radius: 4px;
}
#signup:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
transform: translateY(-3px);
background-color: black;
color: white;
transition: 0.3s ease;
}
#signuppos {
padding-top: 10px;
}


/* Media */
Expand Down

0 comments on commit a57591d

Please sign in to comment.