Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
trahulprabhu38 committed Oct 2, 2024
1 parent 75dcb3d commit f12744f
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
36 changes: 36 additions & 0 deletions Css-files/content.css
Original file line number Diff line number Diff line change
Expand Up @@ -482,3 +482,39 @@ textarea {
.menu_items .items {
position: relative;
}
#contactForm {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 20rem;
height: max-content;
}

#contactForm input,
#contactForm textarea {
width: 100%;
padding: 20px;
margin: 5px;
border-radius: 10px;
border: none;
}

#contactForm h3 {
height: 30px;
color: #141414;
}
#contactForm textarea {
height: 100px;
resize: none;
}

#contactForm button {
padding: 10px 20px;
background-color:rgb(196, 74, 74);
color:rgb(15, 14, 14);
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 5px;
}
2 changes: 0 additions & 2 deletions Html-files/cart.html
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,6 @@ <h1 style="color: black;font-family: var(--ff-philosopher);">C A R T</h1>
<h3 style="font-family: var(--ff-philosopher);">Contact Us!</h3>
<input type="email" id="email" name="email" placeholder="Your Email" required="" style="font-family: var(--ff-poppins);">
<textarea id="message" name="message" placeholder="Your Message" required="" style="font-family: var(--ff-poppins);"></textarea>


<button id="butt" type="submit" style="font-family: var(--ff-poppins);">Send Message</button>
</form>
</div>
Expand Down

0 comments on commit f12744f

Please sign in to comment.