Skip to content

Commit

Permalink
Create styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
harsh23049 authored Aug 23, 2024
1 parent 556c6cc commit e8e0a42
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
/* styles.css */

/* Existing styles remain unchanged */

#login-form, #report-form {
max-width: 600px;
margin: 0 auto;
}

#login-form label, #report-form label {
display: block;
margin: 10px 0 5px;
}

#login-form input, #report-form input, #report-form textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
}

#login-form button, #report-form button {
background: #00796b;
color: #fff;
padding: 10px 15px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}

#login-form button:hover, #report-form button:hover {
background: #004d40;
}

/* Additional styles for the logout link */
#nav-logout {
color: #00796b;
text-decoration: none;
font-weight: bold;
}

#nav-logout:hover {
text-decoration: underline;
}

0 comments on commit e8e0a42

Please sign in to comment.