Skip to content

Commit

Permalink
Update styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
majiday authored Jun 10, 2024
1 parent a89bacb commit 0d2a481
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,58 @@ img:hover {
.publications ul {
list-style-type: none;
padding: 0
}

/* Contact Section */
.contact {
max-width: 600px;
margin: 20px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: #f9f9f9;
}
.contact h3 {
margin-bottom: 20px;
}
.contact-info {
margin-bottom: 20px;
}
.contact-info p {
margin: 5px 0;
}
.form-container {
padding: 20px;
border-top: 1px solid #ccc;
}
form {
display: flex;
flex-direction: column;
}
label {
margin-bottom: 5px;
font-weight: bold;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
button[type="submit"] {
padding: 10px 15px;
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button[type="submit"]:hover {
background-color: #0056b3;
}

0 comments on commit 0d2a481

Please sign in to comment.