Optimize images

This commit is contained in:
mathias 2015-06-21 18:54:49 +03:00
parent 2358089c6c
commit b19e0b8fea

View file

@ -429,6 +429,11 @@ margin-bottom: 4px;
font-size: 11px; font-size: 11px;
} }
label input, label textarea {
width: 100%;
box-sizing: border-box;
}
#second { #second {
margin-top: 15px; margin-top: 15px;
display: block; display: block;
@ -599,11 +604,11 @@ margin: 25px 0 0 0;
<form action="//formspree.io/hello@flame.ga" method="POST"> <form action="//formspree.io/hello@flame.ga" method="POST">
<label> <label>
<span>Email</span> <span>Email</span>
<input type="email" name="_replyto" placeholder="Please enter your email" style="width:100%;box-sizing: border-box;" required> <input type="email" name="_replyto" placeholder="Please enter your email" required>
</label> </label>
<label id="second"> <label id="second">
<span>Message</span> <span>Message</span>
<textarea name="body" rows="10" placeholder="Please enter your message" style="width:100%;box-sizing: border-box;" required></textarea> <textarea name="body" rows="10" placeholder="Please enter your message" required></textarea>
</label> </label>
<input type="hidden" name="_next" value="/sent" /> <input type="hidden" name="_next" value="/sent" />
<button type="submit">Send</button> <button type="submit">Send</button>