Skip to content

Commit

Permalink
Merge pull request #153 from sayanp607/main
Browse files Browse the repository at this point in the history
change in comment section styling with more spaces and button design
  • Loading branch information
GarimaSingh0109 authored Oct 2, 2024
2 parents e8cb344 + 9e5d36c commit 66cdb35
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
9 changes: 5 additions & 4 deletions comment.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Comment Page</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="comment-section">
<h2>Comments</h2>
<h1 >Comments</h1>
<div id="comments"></div>
<form id="comment-form">
<textarea id="comment-input" placeholder="Leave a comment..." required></textarea>
<button type="submit">Submit</button>
<textarea id="comment-input" placeholder="Leave a comment here..." required></textarea>

</form>
<button class="btn" type="submit">Submit</button>
</div>
<script src="script.js"></script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ <h3>Build Your Resume in Seconds from LinkedIn</h3>
<a href="resume.html">Build Resume</a>
<a href="signup.html">Sign Up</a>
<a href="login.html">Login</a>
<a href="comment.html">Login</a>
<a href="comment.html">Comment</a>
</nav>

<div class="icons">
Expand Down
8 changes: 7 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -178,16 +178,22 @@ body {
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
align-items: center;
justify-content: center;
}

textarea {
width: 100%;
height: 100px;
margin-bottom: 10px;
justify-content: center;
align-items: center;
}

button {
.btn{
padding: 10px 15px;
background-color: #00c6ff;
border-radius: 15px;
}


Expand Down

0 comments on commit 66cdb35

Please sign in to comment.