Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The "Send" Button in the Footer Section Should Be Centered #464 #558 #674

Closed
wants to merge 7 commits into from
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,9 @@ <h2>Feedback Form</h2>
<input type="email" name="email" class="text-input contact-input"
placeholder="Your email address...">
<textarea name="message" class="text-input contact-input" placeholder="Your message..."></textarea>
<button type="submit" class="btn btn-big contact-btn">

<button type="submit" class="btn btn-big contact-btn ">

<i class="fas fa-envelope"></i>
Send
</button>
Expand Down
5 changes: 5 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,10 @@ button {
.contact-form .contact-btn {
float: right;
font-size: 1.1em;


left: -60px;
position: relative;
font-family: "Arial", sans-serif;
background: #4caf50;
color: white;
Expand All @@ -914,6 +918,7 @@ button {
border-radius: 5px;
cursor: pointer;
transition: all 0.3s;

}

.contact-form .contact-btn:hover {
Expand Down
Loading