Skip to content

Instantly share code, notes, and snippets.

@mishunov
Created April 23, 2012 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mishunov/2470353 to your computer and use it in GitHub Desktop.
Save mishunov/2470353 to your computer and use it in GitHub Desktop.
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body, html {
height: 100%;
padding: 0
}
body {
padding: 0;
}
form {
float: left;
width: 50%;
background: Olive;
}
fieldset {padding: 1em; border: none}
label {display: block}
aside {
float: right;
width: 45%;
margin-left: 5%;
background: Orange;
}
ol, li {
list-style-position: inside;
margin: 0;
padding:0
}
<!-- content to be placed inside <body>…</body> -->
<form method="POST" action="#" id="join-form">
<fieldset>
<label for="username">Real name</label>
<input type="text" name="username" placeholder="John Johnson"
id="username" required="required" />
<label for="password">Password</label>
<input type="password" name="password" id="password" required="required" />
<label for="confirmation">Confirm password</label>
<input type="password" name="confirmation" id="confirmation" required="required" />
<div id="form-actions">
<button type="submit" class="btn btn-primary" name="submit">Join Denys</button>
</div>
</fieldset>
</form>
<aside>
<h1>What is XXX?</h1>
<ol>
<li>The fastest</li>
<li>The easiest</li>
<li>The coolest</li>
</ol>
<aside>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment