Skip to content

Commit

Permalink
sign up button fix & page Responsive fix
Browse files Browse the repository at this point in the history
  • Loading branch information
4F24L committed Oct 9, 2024
1 parent 4f2e137 commit 18b9699
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 8 deletions.
42 changes: 37 additions & 5 deletions SignUp/signup.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
* {
box-sizing: border-box;
margin: 0;
padding:5px;
padding:0;
}

body {
background: url('https://images.pexels.com/photos/7135057/pexels-photo-7135057.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center fixed;
background-size: cover;
font-family: 'Trebuchet MS', Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
justify-content: start;
align-items: start;
height: 100vh;
color: white;
text-shadow: 1px 1px 2px #000;
Expand All @@ -20,7 +21,7 @@ body {

opacity: 0.75;
background-color: rgba(0, 0, 0, 0);
padding: 5rem;
padding:3rem 5rem;
border-radius: 20px;
box-shadow: 0 0px 0px rgba(0, 0, 0, 0.5);
text-align: center;
Expand All @@ -44,7 +45,7 @@ body {
}

h1 {
margin-bottom: 2rem;
margin-bottom: 1.5rem;
font-size: 1.5rem;
color: #fb5283;
}
Expand Down Expand Up @@ -151,3 +152,34 @@ input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focu
color: #ff80ab;
text-decoration: underline;
}

#link-home{
border: 1px solid rgb(255, 255, 255);
box-shadow: 0 0 5px white;
border-radius: 15px;
padding: 8px 15px;

margin-left: 1rem;
margin-top: 1rem;

}

#link-home:hover{
border: 1px solid rgb(202, 202, 202);
box-shadow: 0 0 5px #424242;
background-color: #42424222;
border-radius: 15px;
padding: 8px 15px;

margin-left: 1rem;
margin-top: 1rem;
}

#link-home a{
text-decoration: none;
color: #fff;
font-size: 1.4rem;
text-shadow: none;
font-family: 'Trebuchet MS', Arial, sans-serif;

}
6 changes: 3 additions & 3 deletions SignUp/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<link rel="shortcut icon" href="../images/logo.png" type="image/x-icon">
</head>
<body>
<div class="linksHome">
<a href="../index.html">home</a>
</div>
<span id="link-home" class="linksHome">
<a href="">Home</a>
</span>
<div class="signup-container">
<h1>Create Your Account</h1>
<form action="#" method="post">
Expand Down

0 comments on commit 18b9699

Please sign in to comment.