A Pen by A Non Ymous on CodePen.
Created
April 22, 2014 01:00
-
-
Save anonymous/11161889 to your computer and use it in GitHub Desktop.
A Pen by Captain Anonymous.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="form"> | |
| <div class="field_content"> | |
| <p>subscribe for further updates </p> | |
| <p> | |
| <input class="field" type="text" value="Enter Your Email Address" onfocus="if(this.value=='Enter Your Email Address') this.value='';" onblur="if(this.value=='' || this.value==' ') this.value='Enter Your Email Address';" /> | |
| </p> | |
| </div> | |
| <input class="submit" type="button" value="submit" /> | |
| </div> | |
| </div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .field{ | |
| width: 340px; | |
| border: none; | |
| background: none; | |
| font-size: 18px; | |
| font-family: Helvetica Neue, Helvetica, Arial; | |
| font-weight: bold; | |
| color: #535343; | |
| text-transform: uppercase; | |
| margin-top: 5px; | |
| } | |
| .submit{ | |
| width: 142px; | |
| height: 37px; | |
| margin: 13px 0 0 10px; | |
| border: none; | |
| background: url(../images/submit.png) left top no-repeat; | |
| font-size: 16px; | |
| font-weight: normal; | |
| font-family: Helvetica Neue, Helvetica, Arial; | |
| text-transform: uppercase; | |
| color: #fff; | |
| cursor: pointer;} | |
| .submit:hover{ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment