Skip to content

Commit

Permalink
updated form styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Tandem Young authored and Tandem Young committed Jun 30, 2024
1 parent 972ce98 commit 0a6ac78
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,32 @@ footer {
height: 40px;
margin: 0 10px;
}

form {
display: flex;
flex-direction: column;
max-width: 600px;
margin: 0 auto;
}
form label {
margin-top: 10px;
}
form input, form textarea {
padding: 10px;
margin-top: 5px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 4px;
}
form button {
padding: 10px;
border: none;
border-radius: 4px;
background-color: #333;
color: white;
font-size: 16px;
cursor: pointer;
}
form button:hover {
background-color: #555;
}

0 comments on commit 0a6ac78

Please sign in to comment.